Commit 3fbe291ac9eb2670d731a81ead808e6e67c88cda
1 parent
075fe6ce
Exists in
master
Adicionado novo flag NENHUM, para ser usado no novo cadastro de alunos
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
ieducar/modules/Transporte/Model/Responsavel.php
... | ... | @@ -44,10 +44,12 @@ require_once 'CoreExt/Enum.php'; |
44 | 44 | */ |
45 | 45 | class Transporte_Model_Responsavel extends CoreExt_Enum |
46 | 46 | { |
47 | + const NENHUM = 0; | |
47 | 48 | const ESTADUAL = 1; |
48 | 49 | const MUNICIPAL = 2; |
49 | 50 | |
50 | 51 | protected $_data = array( |
52 | + self::NENHUM => 'Não utiliza', | |
51 | 53 | self::ESTADUAL => 'Estadual', |
52 | 54 | self::MUNICIPAL => 'Municipal' |
53 | 55 | ); | ... | ... |