* Instance provides a convenient way of calling static methods on a class
* that calling code may not be able to identify.
* @var McafeeUltimoProcesoCreacionPeer
*/
protectedstatic$peer;
/**
* The flag var to prevent infinite loop in deep copy
* @var boolean
*/
protected$startCopy=false;
/**
* The value for the muc_id field.
* @var int
*/
protected$muc_id;
/**
* The value for the ultimo_umn_id field.
* @var int
*/
protected$ultimo_umn_id;
/**
* The value for the muc_cantidad_procesados field.
* @var int
*/
protected$muc_cantidad_procesados;
/**
* The value for the muc_cantidad_pendientes field.
* @var int
*/
protected$muc_cantidad_pendientes;
/**
* The value for the created_at field.
* @var string
*/
protected$created_at;
/**
* The value for the updated_at field.
* @var string
*/
protected$updated_at;
/**
* @var UsuariosMcafeeMovistarNuevos
*/
protected$aUsuariosMcafeeMovistarNuevos;
/**
* Flag to prevent endless save loop, if this object is referenced
* by another object which falls in this transaction.
* @var boolean
*/
protected$alreadyInSave=false;
/**
* Flag to prevent endless validation loop, if this object is referenced
* by another object which falls in this transaction.
* @var boolean
*/
protected$alreadyInValidation=false;
/**
* Flag to prevent endless clearAllReferences($deep=true) loop, if this object is referenced
* @var boolean
*/
protected$alreadyInClearAllReferencesDeep=false;
/**
* Get the [muc_id] column value.
*
* @return int
*/
publicfunctiongetMucId()
{
return$this->muc_id;
}
/**
* Get the [ultimo_umn_id] column value.
*
* @return int
*/
publicfunctiongetUltimoUmnId()
{
return$this->ultimo_umn_id;
}
/**
* Get the [muc_cantidad_procesados] column value.
*
* @return int
*/
publicfunctiongetMucCantidadProcesados()
{
return$this->muc_cantidad_procesados;
}
/**
* Get the [muc_cantidad_pendientes] column value.
*
* @return int
*/
publicfunctiongetMucCantidadPendientes()
{
return$this->muc_cantidad_pendientes;
}
/**
* Get the [optionally formatted] temporal [created_at] column value.
*
*
* @param string $format The date/time format string (either date()-style or strftime()-style).
* If format is null, then the raw DateTime object will be returned.
* @return mixed Formatted date/time value as string or DateTime object (if format is null), null if column is null, and 0 if column value is 0000-00-00 00:00:00
* @throws PropelException - if unable to parse/validate the date/time value.
*/
publicfunctiongetCreatedAt($format=null)
{
if($this->created_at===null){
returnnull;
}
if($this->created_at==='0000-00-00 00:00:00'){
// while technically this is not a default value of null,
// this seems to be closest in meaning.
returnnull;
}
try{
$dt=newDateTime($this->created_at);
}catch(Exception$x){
thrownewPropelException("Internally stored date/time/timestamp value could not be converted to DateTime: ".var_export($this->created_at,true),$x);
}
if($format===null){
// Because propel.useDateTimeClass is true, we return a DateTime object.
return$dt;
}
if(strpos($format,'%')!==false){
returnstrftime($format,$dt->format('U'));
}
return$dt->format($format);
}
/**
* Get the [optionally formatted] temporal [updated_at] column value.
*
*
* @param string $format The date/time format string (either date()-style or strftime()-style).
* If format is null, then the raw DateTime object will be returned.
* @return mixed Formatted date/time value as string or DateTime object (if format is null), null if column is null, and 0 if column value is 0000-00-00 00:00:00
* @throws PropelException - if unable to parse/validate the date/time value.
*/
publicfunctiongetUpdatedAt($format=null)
{
if($this->updated_at===null){
returnnull;
}
if($this->updated_at==='0000-00-00 00:00:00'){
// while technically this is not a default value of null,
// this seems to be closest in meaning.
returnnull;
}
try{
$dt=newDateTime($this->updated_at);
}catch(Exception$x){
thrownewPropelException("Internally stored date/time/timestamp value could not be converted to DateTime: ".var_export($this->updated_at,true),$x);
}
if($format===null){
// Because propel.useDateTimeClass is true, we return a DateTime object.
return$dt;
}
if(strpos($format,'%')!==false){
returnstrftime($format,$dt->format('U'));
}
return$dt->format($format);
}
/**
* Set the value of [muc_id] column.
*
* @param int $v new value
* @return McafeeUltimoProcesoCreacion The current object (for fluent API support)
thrownewPropelException("'$name' could not be found in the field names of type '$fromType'. These are: ".print_r(McafeeUltimoProcesoCreacionPeer::$fieldKeys[$fromType],true));
}
return$toNames[$key];
}
/**
* Returns an array of field names.
*
* @param string $type The type of fieldnames to return:
* One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
thrownewPropelException('Method getFieldNames() expects the parameter $type to be one of the class constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. '.$type.' was given.');
$e=newPropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or McafeeUltimoProcesoCreacion object; got ".(is_object($value)?get_class($value).' object.':var_export($value,true)));
* @method McafeeUltimoProcesoCreacionQuery orderByMucId($order = Criteria::ASC) Order by the muc_id column
* @method McafeeUltimoProcesoCreacionQuery orderByUltimoUmnId($order = Criteria::ASC) Order by the ultimo_umn_id column
* @method McafeeUltimoProcesoCreacionQuery orderByMucCantidadProcesados($order = Criteria::ASC) Order by the muc_cantidad_procesados column
* @method McafeeUltimoProcesoCreacionQuery orderByMucCantidadPendientes($order = Criteria::ASC) Order by the muc_cantidad_pendientes column
* @method McafeeUltimoProcesoCreacionQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
* @method McafeeUltimoProcesoCreacionQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
*
* @method McafeeUltimoProcesoCreacionQuery groupByMucId() Group by the muc_id column
* @method McafeeUltimoProcesoCreacionQuery groupByUltimoUmnId() Group by the ultimo_umn_id column
* @method McafeeUltimoProcesoCreacionQuery groupByMucCantidadProcesados() Group by the muc_cantidad_procesados column
* @method McafeeUltimoProcesoCreacionQuery groupByMucCantidadPendientes() Group by the muc_cantidad_pendientes column
* @method McafeeUltimoProcesoCreacionQuery groupByCreatedAt() Group by the created_at column
* @method McafeeUltimoProcesoCreacionQuery groupByUpdatedAt() Group by the updated_at column
*
* @method McafeeUltimoProcesoCreacionQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method McafeeUltimoProcesoCreacionQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method McafeeUltimoProcesoCreacionQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method McafeeUltimoProcesoCreacionQuery leftJoinUsuariosMcafeeMovistarNuevos($relationAlias = null) Adds a LEFT JOIN clause to the query using the UsuariosMcafeeMovistarNuevos relation
* @method McafeeUltimoProcesoCreacionQuery rightJoinUsuariosMcafeeMovistarNuevos($relationAlias = null) Adds a RIGHT JOIN clause to the query using the UsuariosMcafeeMovistarNuevos relation
* @method McafeeUltimoProcesoCreacionQuery innerJoinUsuariosMcafeeMovistarNuevos($relationAlias = null) Adds a INNER JOIN clause to the query using the UsuariosMcafeeMovistarNuevos relation
*
* @method McafeeUltimoProcesoCreacion findOne(PropelPDO $con = null) Return the first McafeeUltimoProcesoCreacion matching the query
* @method McafeeUltimoProcesoCreacion findOneOrCreate(PropelPDO $con = null) Return the first McafeeUltimoProcesoCreacion matching the query, or a new McafeeUltimoProcesoCreacion object populated from the query conditions when no match is found
*
* @method McafeeUltimoProcesoCreacion findOneByUltimoUmnId(int $ultimo_umn_id) Return the first McafeeUltimoProcesoCreacion filtered by the ultimo_umn_id column
* @method McafeeUltimoProcesoCreacion findOneByMucCantidadProcesados(int $muc_cantidad_procesados) Return the first McafeeUltimoProcesoCreacion filtered by the muc_cantidad_procesados column
* @method McafeeUltimoProcesoCreacion findOneByMucCantidadPendientes(int $muc_cantidad_pendientes) Return the first McafeeUltimoProcesoCreacion filtered by the muc_cantidad_pendientes column
* @method McafeeUltimoProcesoCreacion findOneByCreatedAt(string $created_at) Return the first McafeeUltimoProcesoCreacion filtered by the created_at column
* @method McafeeUltimoProcesoCreacion findOneByUpdatedAt(string $updated_at) Return the first McafeeUltimoProcesoCreacion filtered by the updated_at column
*
* @method array findByMucId(int $muc_id) Return McafeeUltimoProcesoCreacion objects filtered by the muc_id column
* @method array findByUltimoUmnId(int $ultimo_umn_id) Return McafeeUltimoProcesoCreacion objects filtered by the ultimo_umn_id column
* @method array findByMucCantidadProcesados(int $muc_cantidad_procesados) Return McafeeUltimoProcesoCreacion objects filtered by the muc_cantidad_procesados column
* @method array findByMucCantidadPendientes(int $muc_cantidad_pendientes) Return McafeeUltimoProcesoCreacion objects filtered by the muc_cantidad_pendientes column
* @method array findByCreatedAt(string $created_at) Return McafeeUltimoProcesoCreacion objects filtered by the created_at column
* @method array findByUpdatedAt(string $updated_at) Return McafeeUltimoProcesoCreacion objects filtered by the updated_at column
thrownewPropelException("'$name' could not be found in the field names of type '$fromType'. These are: ".print_r(UsuariosMcafeeMovistarNuevosPeer::$fieldKeys[$fromType],true));
}
return$toNames[$key];
}
/**
* Returns an array of field names.
*
* @param string $type The type of fieldnames to return:
* One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
thrownewPropelException('Method getFieldNames() expects the parameter $type to be one of the class constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. '.$type.' was given.');
$e=newPropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or UsuariosMcafeeMovistarNuevos object; got ".(is_object($value)?get_class($value).' object.':var_export($value,true)));
* @method UsuariosMcafeeMovistarNuevosQuery orderById($order = Criteria::ASC) Order by the id column
* @method UsuariosMcafeeMovistarNuevosQuery orderByIdMov($order = Criteria::ASC) Order by the id_mov column
* @method UsuariosMcafeeMovistarNuevosQuery orderByAreaTel($order = Criteria::ASC) Order by the area_tel column
* @method UsuariosMcafeeMovistarNuevosQuery orderByRut($order = Criteria::ASC) Order by the rut column
* @method UsuariosMcafeeMovistarNuevosQuery orderByNombres($order = Criteria::ASC) Order by the nombres column
* @method UsuariosMcafeeMovistarNuevosQuery orderByCorreo($order = Criteria::ASC) Order by the correo column
* @method UsuariosMcafeeMovistarNuevosQuery orderByFonoContactoFijo1($order = Criteria::ASC) Order by the fono_contacto_fijo_1 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByFonoContactoFijo2($order = Criteria::ASC) Order by the fono_contacto_fijo_2 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByFonoContactoMovil1($order = Criteria::ASC) Order by the fono_contacto_movil_1 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByFonoContactoMovil2($order = Criteria::ASC) Order by the fono_contacto_movil_2 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByPs6094($order = Criteria::ASC) Order by the ps_6094 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByPs5679($order = Criteria::ASC) Order by the ps_5679 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByPs2989($order = Criteria::ASC) Order by the ps_2989 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByPs6753($order = Criteria::ASC) Order by the ps_6753 column
* @method UsuariosMcafeeMovistarNuevosQuery orderByPs6759($order = Criteria::ASC) Order by the ps_6759 column
*
* @method UsuariosMcafeeMovistarNuevosQuery groupById() Group by the id column
* @method UsuariosMcafeeMovistarNuevosQuery groupByIdMov() Group by the id_mov column
* @method UsuariosMcafeeMovistarNuevosQuery groupByAreaTel() Group by the area_tel column
* @method UsuariosMcafeeMovistarNuevosQuery groupByRut() Group by the rut column
* @method UsuariosMcafeeMovistarNuevosQuery groupByNombres() Group by the nombres column
* @method UsuariosMcafeeMovistarNuevosQuery groupByCorreo() Group by the correo column
* @method UsuariosMcafeeMovistarNuevosQuery groupByFonoContactoFijo1() Group by the fono_contacto_fijo_1 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByFonoContactoFijo2() Group by the fono_contacto_fijo_2 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByFonoContactoMovil1() Group by the fono_contacto_movil_1 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByFonoContactoMovil2() Group by the fono_contacto_movil_2 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByPs6094() Group by the ps_6094 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByPs5679() Group by the ps_5679 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByPs2989() Group by the ps_2989 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByPs6753() Group by the ps_6753 column
* @method UsuariosMcafeeMovistarNuevosQuery groupByPs6759() Group by the ps_6759 column
*
* @method UsuariosMcafeeMovistarNuevosQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method UsuariosMcafeeMovistarNuevosQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method UsuariosMcafeeMovistarNuevosQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method UsuariosMcafeeMovistarNuevosQuery leftJoinMcafeeUltimoProcesoCreacion($relationAlias = null) Adds a LEFT JOIN clause to the query using the McafeeUltimoProcesoCreacion relation
* @method UsuariosMcafeeMovistarNuevosQuery rightJoinMcafeeUltimoProcesoCreacion($relationAlias = null) Adds a RIGHT JOIN clause to the query using the McafeeUltimoProcesoCreacion relation
* @method UsuariosMcafeeMovistarNuevosQuery innerJoinMcafeeUltimoProcesoCreacion($relationAlias = null) Adds a INNER JOIN clause to the query using the McafeeUltimoProcesoCreacion relation
*
* @method UsuariosMcafeeMovistarNuevos findOne(PropelPDO $con = null) Return the first UsuariosMcafeeMovistarNuevos matching the query
* @method UsuariosMcafeeMovistarNuevos findOneOrCreate(PropelPDO $con = null) Return the first UsuariosMcafeeMovistarNuevos matching the query, or a new UsuariosMcafeeMovistarNuevos object populated from the query conditions when no match is found
*
* @method UsuariosMcafeeMovistarNuevos findOneByIdMov(int $id_mov) Return the first UsuariosMcafeeMovistarNuevos filtered by the id_mov column
* @method UsuariosMcafeeMovistarNuevos findOneByAreaTel(int $area_tel) Return the first UsuariosMcafeeMovistarNuevos filtered by the area_tel column
* @method UsuariosMcafeeMovistarNuevos findOneByRut(int $rut) Return the first UsuariosMcafeeMovistarNuevos filtered by the rut column
* @method UsuariosMcafeeMovistarNuevos findOneByNombres(string $nombres) Return the first UsuariosMcafeeMovistarNuevos filtered by the nombres column
* @method UsuariosMcafeeMovistarNuevos findOneByCorreo(string $correo) Return the first UsuariosMcafeeMovistarNuevos filtered by the correo column
* @method UsuariosMcafeeMovistarNuevos findOneByFonoContactoFijo1(int $fono_contacto_fijo_1) Return the first UsuariosMcafeeMovistarNuevos filtered by the fono_contacto_fijo_1 column
* @method UsuariosMcafeeMovistarNuevos findOneByFonoContactoFijo2(int $fono_contacto_fijo_2) Return the first UsuariosMcafeeMovistarNuevos filtered by the fono_contacto_fijo_2 column
* @method UsuariosMcafeeMovistarNuevos findOneByFonoContactoMovil1(int $fono_contacto_movil_1) Return the first UsuariosMcafeeMovistarNuevos filtered by the fono_contacto_movil_1 column
* @method UsuariosMcafeeMovistarNuevos findOneByFonoContactoMovil2(int $fono_contacto_movil_2) Return the first UsuariosMcafeeMovistarNuevos filtered by the fono_contacto_movil_2 column
* @method UsuariosMcafeeMovistarNuevos findOneByPs6094(int $ps_6094) Return the first UsuariosMcafeeMovistarNuevos filtered by the ps_6094 column
* @method UsuariosMcafeeMovistarNuevos findOneByPs5679(int $ps_5679) Return the first UsuariosMcafeeMovistarNuevos filtered by the ps_5679 column
* @method UsuariosMcafeeMovistarNuevos findOneByPs2989(int $ps_2989) Return the first UsuariosMcafeeMovistarNuevos filtered by the ps_2989 column
* @method UsuariosMcafeeMovistarNuevos findOneByPs6753(int $ps_6753) Return the first UsuariosMcafeeMovistarNuevos filtered by the ps_6753 column
* @method UsuariosMcafeeMovistarNuevos findOneByPs6759(int $ps_6759) Return the first UsuariosMcafeeMovistarNuevos filtered by the ps_6759 column
*
* @method array findById(int $id) Return UsuariosMcafeeMovistarNuevos objects filtered by the id column
* @method array findByIdMov(int $id_mov) Return UsuariosMcafeeMovistarNuevos objects filtered by the id_mov column
* @method array findByAreaTel(int $area_tel) Return UsuariosMcafeeMovistarNuevos objects filtered by the area_tel column
* @method array findByRut(int $rut) Return UsuariosMcafeeMovistarNuevos objects filtered by the rut column
* @method array findByNombres(string $nombres) Return UsuariosMcafeeMovistarNuevos objects filtered by the nombres column
* @method array findByCorreo(string $correo) Return UsuariosMcafeeMovistarNuevos objects filtered by the correo column
* @method array findByFonoContactoFijo1(int $fono_contacto_fijo_1) Return UsuariosMcafeeMovistarNuevos objects filtered by the fono_contacto_fijo_1 column
* @method array findByFonoContactoFijo2(int $fono_contacto_fijo_2) Return UsuariosMcafeeMovistarNuevos objects filtered by the fono_contacto_fijo_2 column
* @method array findByFonoContactoMovil1(int $fono_contacto_movil_1) Return UsuariosMcafeeMovistarNuevos objects filtered by the fono_contacto_movil_1 column
* @method array findByFonoContactoMovil2(int $fono_contacto_movil_2) Return UsuariosMcafeeMovistarNuevos objects filtered by the fono_contacto_movil_2 column
* @method array findByPs6094(int $ps_6094) Return UsuariosMcafeeMovistarNuevos objects filtered by the ps_6094 column
* @method array findByPs5679(int $ps_5679) Return UsuariosMcafeeMovistarNuevos objects filtered by the ps_5679 column
* @method array findByPs2989(int $ps_2989) Return UsuariosMcafeeMovistarNuevos objects filtered by the ps_2989 column
* @method array findByPs6753(int $ps_6753) Return UsuariosMcafeeMovistarNuevos objects filtered by the ps_6753 column
* @method array findByPs6759(int $ps_6759) Return UsuariosMcafeeMovistarNuevos objects filtered by the ps_6759 column
$xObjRespuesta=simplexml_load_string($xmlRespuesta->ProcessRequestWSResult,'SimpleXMLElement',LIBXML_NOCDATA);//LIBXML_NOCDATA atributos dentro de tags
$xObjRespuesta=simplexml_load_string($xmlRespuesta->ProcessRequestWSResult,'SimpleXMLElement',LIBXML_NOCDATA);//LIBXML_NOCDATA atributos dentro de tags