本文整理汇总了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;
}
示例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;
}
}
示例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));
}
示例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;
}
示例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);
}
}