當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Persona::setId方法代碼示例

本文整理匯總了PHP中Persona::setId方法的典型用法代碼示例。如果您正苦於以下問題:PHP Persona::setId方法的具體用法?PHP Persona::setId怎麽用?PHP Persona::setId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Persona的用法示例。


在下文中一共展示了Persona::setId方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: rowToDto

 function rowToDto($row)
 {
     $objPersona = new Persona();
     $objPersona->setId($row["id"]);
     $objPersona->setNombres($row["nombres"]);
     $objPersona->setApellidos($row["apellidos"]);
     $objPersona->setEdad($row["edad"]);
     return $objPersona;
 }
開發者ID:jmacboy,項目名稱:electiva-programacion-2-2015-nur,代碼行數:9,代碼來源:ClasePersonaBLL.php

示例2: consultar

 function consultar($id)
 {
     $consulta = "SELECT * FROM `persona` WHERE `id` = " . $id;
     $resultado = $this->conexion->consultar_servidor($consulta);
     $daop = new DAOPuestoVotacion();
     $puesto = new PuestoVotacion("", "", "", "", "");
     //        $puesto = $daop->muestraPuestoVotacion($id);
     if (empty($resultado)) {
         return FALSE;
     } else {
         $lista = mysql_fetch_array($resultado);
         $persona = new Persona($lista["cedula"], $lista["nombre"], $lista["apellido"], $lista["telefono"], $lista["celular"], $lista["direccion"], $lista["email"], $puesto);
         $persona->setId($lista["id"]);
         return $persona;
     }
 }
開發者ID:Cromeror,項目名稱:puyaOjo,代碼行數:16,代碼來源:DAOPersona.php

示例3: listResponsablesByResponsablePersonaId

 /**
  * Listar algunos Responsable dado el $responsablePersonaId
  * 
  * @param $responsablePersonaId
  * @param $performSize
  * @param $firstResultNumber
  * @param $numResults
  */
 public function listResponsablesByResponsablePersonaId($responsablePersonaId, $performSize = false, $firstResultNumber = null, $numResults = null, $orderBy = null, $orderPriority = SQL_ASCENDING_ORDER)
 {
     $objBean = new PersonaBean($this->persistenceManager);
     $obj = new Persona();
     $obj->setId($responsablePersonaId);
     # Validamos los campos
     if ($firstResultNumber !== null && !EntityValidator::validatePositiveNumber($firstResultNumber)) {
         throw new Exception(SALAS_COMP_ALERT_E_VALIDATION_FAIL, $this->ID + 95);
     }
     if (!EntityValidator::validateGlobalOrderPriority($orderPriority)) {
         throw new Exception(SALAS_COMP_ALERT_E_VALIDATION_FAIL, $this->ID + 97);
     }
     if (!EntityValidator::validateId($responsablePersonaId)) {
         throw new Exception(SALAS_COMP_ALERT_E_VALIDATION_FAIL, $this->ID + 99);
     }
     # Verificamos que la entidad exista
     if (!$objBean->getPersona($obj)) {
         throw new Exception(SALAS_COMP_ALERT_E_ENTITY_NOT_FOUND_FAIL, $this->ID + 101);
     }
     # Listamos las entidades
     if ($performSize) {
         $this->lastRequestSize = $this->responsableBean->countGetResponsablesByResponsablePersona($obj);
     }
     return ResponsableDTO::loadFromEntities($this->responsableBean->listResponsablesByResponsablePersona($obj, $firstResultNumber, $numResults, $orderBy, $orderPriority));
 }
開發者ID:AtsumiK,項目名稱:ClasesComputadoras,代碼行數:33,代碼來源:ResponsableController.php

示例4: toEntity

 public static function toEntity(PersonaDTO $personaDTO)
 {
     $persona = new Persona();
     $persona->setId($personaDTO->getId());
     $persona->setPersonaDocumentoIdentidad($personaDTO->getPersonaDocumentoIdentidad());
     $persona->setPersonaNombres($personaDTO->getPersonaNombres());
     $persona->setPersonaApellidos($personaDTO->getPersonaApellidos());
     return $persona;
 }
開發者ID:AtsumiK,項目名稱:ClasesComputadoras,代碼行數:9,代碼來源:PersonaDTO.php

示例5: removePersona

 /**
  * Eliminar un Persona Dado el $personaId
  * 
  * @param $personaId
  */
 public function removePersona($personaId)
 {
     $responsableBean = new ResponsableBean($this->persistenceManager);
     $estudianteBean = new EstudianteBean($this->persistenceManager);
     $persona = new Persona();
     $persona->setId($personaId);
     # Validamos los campos
     if (!EntityValidator::validateId($personaId)) {
         throw new Exception(SALAS_COMP_ALERT_E_VALIDATION_FAIL, $this->ID + 136);
     }
     # Verificamos que la entidad exista.
     if (!$this->personaBean->getPersona($persona)) {
         throw new Exception(SALAS_COMP_ALERT_E_ENTITY_NOT_FOUND_FAIL, $this->ID + 137);
     }
     # Verificamos que la entidad no esté siendo utilziada en alguna otra.
     # Verificamos que la entidad no esté siendo utilziada en Responsable->responsablePersona
     $responsables = $responsableBean->getResponsablesByResponsablePersona($persona);
     if (count($responsables) > 0) {
         throw new Exception(SALAS_COMP_ALERT_E_PERSISTENCE_REMOVE_LINKED_FAIL, $this->ID + 134);
     }
     # Verificamos que la entidad no esté siendo utilziada en Estudiante->estudiantePersona
     $estudiantes = $estudianteBean->getEstudiantesByEstudiantePersona($persona);
     if (count($estudiantes) > 0) {
         throw new Exception(SALAS_COMP_ALERT_E_PERSISTENCE_REMOVE_LINKED_FAIL, $this->ID + 135);
     }
     # Eliminamos la entidad
     if (!$this->personaBean->removePersona($persona)) {
         throw new Exception(SALAS_COMP_ALERT_E_PERSISTENCE_REMOVE_FAIL, $this->ID + 138);
     }
 }
開發者ID:AtsumiK,項目名稱:ClasesComputadoras,代碼行數:35,代碼來源:PersonaController.php


注:本文中的Persona::setId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。