当前位置: 首页>>代码示例>>PHP>>正文


PHP clsPmieducarEscola::existe方法代码示例

本文整理汇总了PHP中clsPmieducarEscola::existe方法的典型用法代码示例。如果您正苦于以下问题:PHP clsPmieducarEscola::existe方法的具体用法?PHP clsPmieducarEscola::existe怎么用?PHP clsPmieducarEscola::existe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在clsPmieducarEscola的用法示例。


在下文中一共展示了clsPmieducarEscola::existe方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: clsPmieducarServidorAlocacao

 /**
  * Construtor.
  */
 function clsPmieducarServidorAlocacao($cod_servidor_alocacao = NULL, $ref_ref_cod_instituicao = NULL, $ref_usuario_exc = NULL, $ref_usuario_cad = NULL, $ref_cod_escola = NULL, $ref_cod_servidor = NULL, $data_cadastro = NULL, $data_exclusao = NULL, $ativo = NULL, $carga_horaria = NULL, $periodo = NULL)
 {
     $db = new clsBanco();
     $this->_schema = 'pmieducar.';
     $this->_tabela = $this->_schema . 'servidor_alocacao';
     $this->_campos_lista = $this->_todos_campos = 'cod_servidor_alocacao, ref_ref_cod_instituicao, ref_usuario_exc, ref_usuario_cad, ref_cod_escola, ref_cod_servidor, data_cadastro, data_exclusao, ativo, carga_horaria, periodo';
     if (is_numeric($ref_usuario_cad)) {
         $usuario = new clsPmieducarUsuario($ref_usuario_cad);
         if ($usuario->existe()) {
             $this->ref_usuario_cad = $ref_usuario_cad;
         }
     }
     if (is_numeric($ref_usuario_exc)) {
         $usuario = new clsPmieducarUsuario($ref_usuario_exc);
         if ($usuario->existe()) {
             $this->ref_usuario_exc = $ref_usuario_exc;
         }
     }
     if (is_numeric($ref_cod_escola)) {
         $escola = new clsPmieducarEscola($ref_cod_escola);
         if ($escola->existe()) {
             $this->ref_cod_escola = $ref_cod_escola;
         }
     }
     if (is_numeric($ref_cod_servidor) && is_numeric($ref_ref_cod_instituicao)) {
         $servidor = new clsPmieducarServidor($ref_cod_servidor, NULL, NULL, NULL, NULL, NULL, NULL, $ref_ref_cod_instituicao);
         if ($servidor->existe()) {
             $this->ref_cod_servidor = $ref_cod_servidor;
             $this->ref_ref_cod_instituicao = $ref_ref_cod_instituicao;
         }
     }
     if (is_numeric($cod_servidor_alocacao)) {
         $this->cod_servidor_alocacao = $cod_servidor_alocacao;
     }
     if (is_string($data_cadastro)) {
         $this->data_cadastro = $data_cadastro;
     }
     if (is_string($data_exclusao)) {
         $this->data_exclusao = $data_exclusao;
     }
     if (is_numeric($ativo)) {
         $this->ativo = $ativo;
     }
     // Valida a carga horária
     if (is_string($carga_horaria)) {
         $datetime = explode(':', $carga_horaria);
         $minutos = (int) $datetime[0] * 60 + (int) $datetime[1];
         if (self::$cargaHorariaMax * 60 >= $minutos) {
             $this->carga_horaria = $carga_horaria;
         }
     }
     if (is_numeric($periodo)) {
         $this->periodo = $periodo;
     }
 }
开发者ID:secteofilandia,项目名称:ieducar,代码行数:58,代码来源:clsPmieducarServidorAlocacao.inc.php


注:本文中的clsPmieducarEscola::existe方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。