Commit 3fbe291ac9eb2670d731a81ead808e6e67c88cda

Authored by Lucas D'Avila
1 parent 075fe6ce
Exists in master

Adicionado novo flag NENHUM, para ser usado no novo cadastro de alunos

ieducar/modules/Transporte/Model/Responsavel.php
@@ -44,10 +44,12 @@ require_once 'CoreExt/Enum.php'; @@ -44,10 +44,12 @@ require_once 'CoreExt/Enum.php';
44 */ 44 */
45 class Transporte_Model_Responsavel extends CoreExt_Enum 45 class Transporte_Model_Responsavel extends CoreExt_Enum
46 { 46 {
  47 + const NENHUM = 0;
47 const ESTADUAL = 1; 48 const ESTADUAL = 1;
48 const MUNICIPAL = 2; 49 const MUNICIPAL = 2;
49 50
50 protected $_data = array( 51 protected $_data = array(
  52 + self::NENHUM => 'Não utiliza',
51 self::ESTADUAL => 'Estadual', 53 self::ESTADUAL => 'Estadual',
52 self::MUNICIPAL => 'Municipal' 54 self::MUNICIPAL => 'Municipal'
53 ); 55 );