Modelos

parent cba7c918
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseEnvioCorreoUsuario;
class EnvioCorreoUsuario extends BaseEnvioCorreoUsuario
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseEnvioCorreoUsuarioPeer;
class EnvioCorreoUsuarioPeer extends BaseEnvioCorreoUsuarioPeer
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseEnvioCorreoUsuarioQuery;
class EnvioCorreoUsuarioQuery extends BaseEnvioCorreoUsuarioQuery
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseParametroConfiguracion;
class ParametroConfiguracion extends BaseParametroConfiguracion
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseParametroConfiguracionPeer;
class ParametroConfiguracionPeer extends BaseParametroConfiguracionPeer
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseParametroConfiguracionQuery;
class ParametroConfiguracionQuery extends BaseParametroConfiguracionQuery
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseUsuarioNutrapharm;
class UsuarioNutrapharm extends BaseUsuarioNutrapharm
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseUsuarioNutrapharmPeer;
class UsuarioNutrapharmPeer extends BaseUsuarioNutrapharmPeer
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseUsuarioNutrapharmQuery;
class UsuarioNutrapharmQuery extends BaseUsuarioNutrapharmQuery
{
}
<?php
namespace AppBundle\Model\map;
use \RelationMap;
use \TableMap;
/**
* This class defines the structure of the 'envio_correo_usuario' table.
*
*
*
* This map class is used by Propel to do runtime db structure discovery.
* For example, the createSelectSql() method checks the type of a given column used in an
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type).
*
* @package propel.generator.src.AppBundle.Model.map
*/
class EnvioCorreoUsuarioTableMap extends TableMap
{
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'src.AppBundle.Model.map.EnvioCorreoUsuarioTableMap';
/**
* Initialize the table attributes, columns and validators
* Relations are not initialized by this method since they are lazy loaded
*
* @return void
* @throws PropelException
*/
public function initialize()
{
// attributes
$this->setName('envio_correo_usuario');
$this->setPhpName('EnvioCorreoUsuario');
$this->setClassname('AppBundle\\Model\\EnvioCorreoUsuario');
$this->setPackage('src.AppBundle.Model');
$this->setUseIdGenerator(false);
// columns
$this->addPrimaryKey('ecu_id', 'EcuId', 'INTEGER', true, null, null);
$this->addForeignKey('unu_id', 'UnuId', 'INTEGER', 'usuario_nutrapharm', 'unu_id', true, null, null);
$this->addColumn('ecu_estado', 'EcuEstado', 'INTEGER', false, 6, null);
$this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
$this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
// validators
} // initialize()
/**
* Build the RelationMap objects for this table relationships
*/
public function buildRelations()
{
$this->addRelation('UsuarioNutrapharm', 'AppBundle\\Model\\UsuarioNutrapharm', RelationMap::MANY_TO_ONE, array('unu_id' => 'unu_id', ), null, null);
} // buildRelations()
/**
*
* Gets the list of behaviors registered for this table
*
* @return array Associative array (name => parameters) of behaviors
*/
public function getBehaviors()
{
return array(
'timestampable' => array (
'create_column' => 'created_at',
'update_column' => 'updated_at',
'disable_updated_at' => 'false',
),
);
} // getBehaviors()
} // EnvioCorreoUsuarioTableMap
<?php
namespace AppBundle\Model\map;
use \RelationMap;
use \TableMap;
/**
* This class defines the structure of the 'parametro_configuracion' table.
*
*
*
* This map class is used by Propel to do runtime db structure discovery.
* For example, the createSelectSql() method checks the type of a given column used in an
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type).
*
* @package propel.generator.src.AppBundle.Model.map
*/
class ParametroConfiguracionTableMap extends TableMap
{
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'src.AppBundle.Model.map.ParametroConfiguracionTableMap';
/**
* Initialize the table attributes, columns and validators
* Relations are not initialized by this method since they are lazy loaded
*
* @return void
* @throws PropelException
*/
public function initialize()
{
// attributes
$this->setName('parametro_configuracion');
$this->setPhpName('ParametroConfiguracion');
$this->setClassname('AppBundle\\Model\\ParametroConfiguracion');
$this->setPackage('src.AppBundle.Model');
$this->setUseIdGenerator(true);
// columns
$this->addPrimaryKey('pco_id', 'PcoId', 'INTEGER', true, null, null);
$this->addColumn('pco_nombre', 'PcoNombre', 'VARCHAR', false, 250, null);
$this->addColumn('pco_valor', 'PcoValor', 'VARCHAR', false, 1000, null);
$this->addColumn('pco_descripcion', 'PcoDescripcion', 'VARCHAR', false, 1000, null);
// validators
} // initialize()
/**
* Build the RelationMap objects for this table relationships
*/
public function buildRelations()
{
} // buildRelations()
} // ParametroConfiguracionTableMap
<?php
namespace AppBundle\Model\map;
use \RelationMap;
use \TableMap;
/**
* This class defines the structure of the 'usuario_nutrapharm' table.
*
*
*
* This map class is used by Propel to do runtime db structure discovery.
* For example, the createSelectSql() method checks the type of a given column used in an
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type).
*
* @package propel.generator.src.AppBundle.Model.map
*/
class UsuarioNutrapharmTableMap extends TableMap
{
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'src.AppBundle.Model.map.UsuarioNutrapharmTableMap';
/**
* Initialize the table attributes, columns and validators
* Relations are not initialized by this method since they are lazy loaded
*
* @return void
* @throws PropelException
*/
public function initialize()
{
// attributes
$this->setName('usuario_nutrapharm');
$this->setPhpName('UsuarioNutrapharm');
$this->setClassname('AppBundle\\Model\\UsuarioNutrapharm');
$this->setPackage('src.AppBundle.Model');
$this->setUseIdGenerator(true);
// columns
$this->addPrimaryKey('unu_id', 'UnuId', 'INTEGER', true, null, null);
$this->addColumn('unu_ua', 'UnuUa', 'VARCHAR', false, 1000, null);
$this->addColumn('unu_ip', 'UnuIp', 'VARCHAR', false, 1000, null);
$this->addColumn('unu_id_nutrapharm', 'UnuIdNutrapharm', 'VARCHAR', false, 1000, null);
$this->addColumn('unu_nombre', 'UnuNombre', 'VARCHAR', false, 250, null);
$this->addColumn('unu_correo', 'UnuCorreo', 'VARCHAR', false, 250, null);
$this->addColumn('unu_path_foto_inicial', 'UnuPathFotoInicial', 'VARCHAR', false, 1000, null);
$this->addColumn('unu_comentario_inicial', 'UnuComentarioInicial', 'VARCHAR', false, 1000, null);
$this->addColumn('unu_path_foto_final', 'UnuPathFotoFinal', 'VARCHAR', false, 1000, null);
$this->addColumn('unu_comentario_final', 'UnuComentarioFinal', 'VARCHAR', false, 1000, null);
$this->addColumn('unu_estado', 'UnuEstado', 'INTEGER', false, null, null);
$this->addColumn('unu_eliminado', 'UnuEliminado', 'INTEGER', false, null, null);
$this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
$this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
// validators
} // initialize()
/**
* Build the RelationMap objects for this table relationships
*/
public function buildRelations()
{
$this->addRelation('EnvioCorreoUsuario', 'AppBundle\\Model\\EnvioCorreoUsuario', RelationMap::ONE_TO_MANY, array('unu_id' => 'unu_id', ), null, null, 'EnvioCorreoUsuarios');
} // buildRelations()
/**
*
* Gets the list of behaviors registered for this table
*
* @return array Associative array (name => parameters) of behaviors
*/
public function getBehaviors()
{
return array(
'timestampable' => array (
'create_column' => 'created_at',
'update_column' => 'updated_at',
'disable_updated_at' => 'false',
),
);
} // getBehaviors()
} // UsuarioNutrapharmTableMap
<?php
namespace AppBundle\Model\om;
use \BaseObject;
use \BasePeer;
use \Criteria;
use \DateTime;
use \Exception;
use \PDO;
use \Persistent;
use \Propel;
use \PropelDateTime;
use \PropelException;
use \PropelPDO;
use AppBundle\Model\EnvioCorreoUsuario;
use AppBundle\Model\EnvioCorreoUsuarioPeer;
use AppBundle\Model\EnvioCorreoUsuarioQuery;
use AppBundle\Model\UsuarioNutrapharm;
use AppBundle\Model\UsuarioNutrapharmQuery;
abstract class BaseEnvioCorreoUsuario extends BaseObject implements Persistent
{
/**
* Peer class name
*/
const PEER = 'AppBundle\\Model\\EnvioCorreoUsuarioPeer';
/**
* The Peer class.
* Instance provides a convenient way of calling static methods on a class
* that calling code may not be able to identify.
* @var EnvioCorreoUsuarioPeer
*/
protected static $peer;
/**
* The flag var to prevent infinite loop in deep copy
* @var boolean
*/
protected $startCopy = false;
/**
* The value for the ecu_id field.
* @var int
*/
protected $ecu_id;
/**
* The value for the unu_id field.
* @var int
*/
protected $unu_id;
/**
* The value for the ecu_estado field.
* @var int
*/
protected $ecu_estado;
/**
* 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 UsuarioNutrapharm
*/
protected $aUsuarioNutrapharm;
/**
* 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 [ecu_id] column value.
*
* @return int
*/
public function getEcuId()
{
return $this->ecu_id;
}
/**
* Get the [unu_id] column value.
*
* @return int
*/
public function getUnuId()
{
return $this->unu_id;
}
/**
* Get the [ecu_estado] column value.
*
* @return int
*/
public function getEcuEstado()
{
return $this->ecu_estado;
}
/**
* 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.
*/
public function getCreatedAt($format = null)
{
if ($this->created_at === null) {
return null;
}
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.
return null;
}
try {
$dt = new DateTime($this->created_at);
} catch (Exception $x) {
throw new PropelException("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) {
return strftime($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.
*/
public function getUpdatedAt($format = null)
{
if ($this->updated_at === null) {
return null;
}
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.
return null;
}
try {
$dt = new DateTime($this->updated_at);
} catch (Exception $x) {
throw new PropelException("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) {
return strftime($format, $dt->format('U'));
}
return $dt->format($format);
}
/**
* Set the value of [ecu_id] column.
*
* @param int $v new value
* @return EnvioCorreoUsuario The current object (for fluent API support)
*/
public function setEcuId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->ecu_id !== $v) {
$this->ecu_id = $v;
$this->modifiedColumns[] = EnvioCorreoUsuarioPeer::ECU_ID;
}
return $this;
} // setEcuId()
/**
* Set the value of [unu_id] column.
*
* @param int $v new value
* @return EnvioCorreoUsuario The current object (for fluent API support)
*/
public function setUnuId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->unu_id !== $v) {
$this->unu_id = $v;
$this->modifiedColumns[] = EnvioCorreoUsuarioPeer::UNU_ID;
}
if ($this->aUsuarioNutrapharm !== null && $this->aUsuarioNutrapharm->getUnuId() !== $v) {
$this->aUsuarioNutrapharm = null;
}
return $this;
} // setUnuId()
/**
* Set the value of [ecu_estado] column.
*
* @param int $v new value
* @return EnvioCorreoUsuario The current object (for fluent API support)
*/
public function setEcuEstado($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->ecu_estado !== $v) {
$this->ecu_estado = $v;
$this->modifiedColumns[] = EnvioCorreoUsuarioPeer::ECU_ESTADO;
}
return $this;
} // setEcuEstado()
/**
* Sets the value of [created_at] column to a normalized version of the date/time value specified.
*
* @param mixed $v string, integer (timestamp), or DateTime value.
* Empty strings are treated as null.
* @return EnvioCorreoUsuario The current object (for fluent API support)
*/
public function setCreatedAt($v)
{
$dt = PropelDateTime::newInstance($v, null, 'DateTime');
if ($this->created_at !== null || $dt !== null) {
$currentDateAsString = ($this->created_at !== null && $tmpDt = new DateTime($this->created_at)) ? $tmpDt->format('Y-m-d H:i:s') : null;
$newDateAsString = $dt ? $dt->format('Y-m-d H:i:s') : null;
if ($currentDateAsString !== $newDateAsString) {
$this->created_at = $newDateAsString;
$this->modifiedColumns[] = EnvioCorreoUsuarioPeer::CREATED_AT;
}
} // if either are not null
return $this;
} // setCreatedAt()
/**
* Sets the value of [updated_at] column to a normalized version of the date/time value specified.
*
* @param mixed $v string, integer (timestamp), or DateTime value.
* Empty strings are treated as null.
* @return EnvioCorreoUsuario The current object (for fluent API support)
*/
public function setUpdatedAt($v)
{
$dt = PropelDateTime::newInstance($v, null, 'DateTime');
if ($this->updated_at !== null || $dt !== null) {
$currentDateAsString = ($this->updated_at !== null && $tmpDt = new DateTime($this->updated_at)) ? $tmpDt->format('Y-m-d H:i:s') : null;
$newDateAsString = $dt ? $dt->format('Y-m-d H:i:s') : null;
if ($currentDateAsString !== $newDateAsString) {
$this->updated_at = $newDateAsString;
$this->modifiedColumns[] = EnvioCorreoUsuarioPeer::UPDATED_AT;
}
} // if either are not null
return $this;
} // setUpdatedAt()
/**
* Indicates whether the columns in this object are only set to default values.
*
* This method can be used in conjunction with isModified() to indicate whether an object is both
* modified _and_ has some values set which are non-default.
*
* @return boolean Whether the columns in this object are only been set with default values.
*/
public function hasOnlyDefaultValues()
{
// otherwise, everything was equal, so return true
return true;
} // hasOnlyDefaultValues()
/**
* Hydrates (populates) the object variables with values from the database resultset.
*
* An offset (0-based "start column") is specified so that objects can be hydrated
* with a subset of the columns in the resultset rows. This is needed, for example,
* for results of JOIN queries where the resultset row includes columns from two or
* more tables.
*
* @param array $row The row returned by PDOStatement->fetch(PDO::FETCH_NUM)
* @param int $startcol 0-based offset column which indicates which resultset column to start with.
* @param boolean $rehydrate Whether this object is being re-hydrated from the database.
* @return int next starting column
* @throws PropelException - Any caught Exception will be rewrapped as a PropelException.
*/
public function hydrate($row, $startcol = 0, $rehydrate = false)
{
try {
$this->ecu_id = ($row[$startcol + 0] !== null) ? (int) $row[$startcol + 0] : null;
$this->unu_id = ($row[$startcol + 1] !== null) ? (int) $row[$startcol + 1] : null;
$this->ecu_estado = ($row[$startcol + 2] !== null) ? (int) $row[$startcol + 2] : null;
$this->created_at = ($row[$startcol + 3] !== null) ? (string) $row[$startcol + 3] : null;
$this->updated_at = ($row[$startcol + 4] !== null) ? (string) $row[$startcol + 4] : null;
$this->resetModified();
$this->setNew(false);
if ($rehydrate) {
$this->ensureConsistency();
}
$this->postHydrate($row, $startcol, $rehydrate);
return $startcol + 5; // 5 = EnvioCorreoUsuarioPeer::NUM_HYDRATE_COLUMNS.
} catch (Exception $e) {
throw new PropelException("Error populating EnvioCorreoUsuario object", $e);
}
}
/**
* Checks and repairs the internal consistency of the object.
*
* This method is executed after an already-instantiated object is re-hydrated
* from the database. It exists to check any foreign keys to make sure that
* the objects related to the current object are correct based on foreign key.
*
* You can override this method in the stub class, but you should always invoke
* the base method from the overridden method (i.e. parent::ensureConsistency()),
* in case your model changes.
*
* @throws PropelException
*/
public function ensureConsistency()
{
if ($this->aUsuarioNutrapharm !== null && $this->unu_id !== $this->aUsuarioNutrapharm->getUnuId()) {
$this->aUsuarioNutrapharm = null;
}
} // ensureConsistency
/**
* Reloads this object from datastore based on primary key and (optionally) resets all associated objects.
*
* This will only work if the object has been saved and has a valid primary key set.
*
* @param boolean $deep (optional) Whether to also de-associated any related objects.
* @param PropelPDO $con (optional) The PropelPDO connection to use.
* @return void
* @throws PropelException - if this object is deleted, unsaved or doesn't have pk match in db
*/
public function reload($deep = false, PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("Cannot reload a deleted object.");
}
if ($this->isNew()) {
throw new PropelException("Cannot reload an unsaved object.");
}
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// We don't need to alter the object instance pool; we're just modifying this instance
// already in the pool.
$stmt = EnvioCorreoUsuarioPeer::doSelectStmt($this->buildPkeyCriteria(), $con);
$row = $stmt->fetch(PDO::FETCH_NUM);
$stmt->closeCursor();
if (!$row) {
throw new PropelException('Cannot find matching row in the database to reload object values.');
}
$this->hydrate($row, 0, true); // rehydrate
if ($deep) { // also de-associate any related objects?
$this->aUsuarioNutrapharm = null;
} // if (deep)
}
/**
* Removes this object from datastore and sets delete attribute.
*
* @param PropelPDO $con
* @return void
* @throws PropelException
* @throws Exception
* @see BaseObject::setDeleted()
* @see BaseObject::isDeleted()
*/
public function delete(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("This object has already been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
try {
$deleteQuery = EnvioCorreoUsuarioQuery::create()
->filterByPrimaryKey($this->getPrimaryKey());
$ret = $this->preDelete($con);
if ($ret) {
$deleteQuery->delete($con);
$this->postDelete($con);
$con->commit();
$this->setDeleted(true);
} else {
$con->commit();
}
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Persists this object to the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All modified related objects will also be persisted in the doSave()
* method. This method wraps all precipitate database operations in a
* single transaction.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @throws Exception
* @see doSave()
*/
public function save(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("You cannot save an object that has been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
$isInsert = $this->isNew();
try {
$ret = $this->preSave($con);
if ($isInsert) {
$ret = $ret && $this->preInsert($con);
// timestampable behavior
if (!$this->isColumnModified(EnvioCorreoUsuarioPeer::CREATED_AT)) {
$this->setCreatedAt(time());
}
if (!$this->isColumnModified(EnvioCorreoUsuarioPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
} else {
$ret = $ret && $this->preUpdate($con);
// timestampable behavior
if ($this->isModified() && !$this->isColumnModified(EnvioCorreoUsuarioPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
}
if ($ret) {
$affectedRows = $this->doSave($con);
if ($isInsert) {
$this->postInsert($con);
} else {
$this->postUpdate($con);
}
$this->postSave($con);
EnvioCorreoUsuarioPeer::addInstanceToPool($this);
} else {
$affectedRows = 0;
}
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs the work of inserting or updating the row in the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All related objects are also updated in this method.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @see save()
*/
protected function doSave(PropelPDO $con)
{
$affectedRows = 0; // initialize var to track total num of affected rows
if (!$this->alreadyInSave) {
$this->alreadyInSave = true;
// We call the save method on the following object(s) if they
// were passed to this object by their corresponding set
// method. This object relates to these object(s) by a
// foreign key reference.
if ($this->aUsuarioNutrapharm !== null) {
if ($this->aUsuarioNutrapharm->isModified() || $this->aUsuarioNutrapharm->isNew()) {
$affectedRows += $this->aUsuarioNutrapharm->save($con);
}
$this->setUsuarioNutrapharm($this->aUsuarioNutrapharm);
}
if ($this->isNew() || $this->isModified()) {
// persist changes
if ($this->isNew()) {
$this->doInsert($con);
} else {
$this->doUpdate($con);
}
$affectedRows += 1;
$this->resetModified();
}
$this->alreadyInSave = false;
}
return $affectedRows;
} // doSave()
/**
* Insert the row in the database.
*
* @param PropelPDO $con
*
* @throws PropelException
* @see doSave()
*/
protected function doInsert(PropelPDO $con)
{
$modifiedColumns = array();
$index = 0;
// check the columns in natural order for more readable SQL queries
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::ECU_ID)) {
$modifiedColumns[':p' . $index++] = '`ecu_id`';
}
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::UNU_ID)) {
$modifiedColumns[':p' . $index++] = '`unu_id`';
}
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::ECU_ESTADO)) {
$modifiedColumns[':p' . $index++] = '`ecu_estado`';
}
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::CREATED_AT)) {
$modifiedColumns[':p' . $index++] = '`created_at`';
}
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::UPDATED_AT)) {
$modifiedColumns[':p' . $index++] = '`updated_at`';
}
$sql = sprintf(
'INSERT INTO `envio_correo_usuario` (%s) VALUES (%s)',
implode(', ', $modifiedColumns),
implode(', ', array_keys($modifiedColumns))
);
try {
$stmt = $con->prepare($sql);
foreach ($modifiedColumns as $identifier => $columnName) {
switch ($columnName) {
case '`ecu_id`':
$stmt->bindValue($identifier, $this->ecu_id, PDO::PARAM_INT);
break;
case '`unu_id`':
$stmt->bindValue($identifier, $this->unu_id, PDO::PARAM_INT);
break;
case '`ecu_estado`':
$stmt->bindValue($identifier, $this->ecu_estado, PDO::PARAM_INT);
break;
case '`created_at`':
$stmt->bindValue($identifier, $this->created_at, PDO::PARAM_STR);
break;
case '`updated_at`':
$stmt->bindValue($identifier, $this->updated_at, PDO::PARAM_STR);
break;
}
}
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute INSERT statement [%s]', $sql), $e);
}
$this->setNew(false);
}
/**
* Update the row in the database.
*
* @param PropelPDO $con
*
* @see doSave()
*/
protected function doUpdate(PropelPDO $con)
{
$selectCriteria = $this->buildPkeyCriteria();
$valuesCriteria = $this->buildCriteria();
BasePeer::doUpdate($selectCriteria, $valuesCriteria, $con);
}
/**
* Array of ValidationFailed objects.
* @var array ValidationFailed[]
*/
protected $validationFailures = array();
/**
* Gets any ValidationFailed objects that resulted from last call to validate().
*
*
* @return array ValidationFailed[]
* @see validate()
*/
public function getValidationFailures()
{
return $this->validationFailures;
}
/**
* Validates the objects modified field values and all objects related to this table.
*
* If $columns is either a column name or an array of column names
* only those columns are validated.
*
* @param mixed $columns Column name or an array of column names.
* @return boolean Whether all columns pass validation.
* @see doValidate()
* @see getValidationFailures()
*/
public function validate($columns = null)
{
$res = $this->doValidate($columns);
if ($res === true) {
$this->validationFailures = array();
return true;
}
$this->validationFailures = $res;
return false;
}
/**
* This function performs the validation work for complex object models.
*
* In addition to checking the current object, all related objects will
* also be validated. If all pass then <code>true</code> is returned; otherwise
* an aggregated array of ValidationFailed objects will be returned.
*
* @param array $columns Array of column names to validate.
* @return mixed <code>true</code> if all validations pass; array of <code>ValidationFailed</code> objects otherwise.
*/
protected function doValidate($columns = null)
{
if (!$this->alreadyInValidation) {
$this->alreadyInValidation = true;
$retval = null;
$failureMap = array();
// We call the validate method on the following object(s) if they
// were passed to this object by their corresponding set
// method. This object relates to these object(s) by a
// foreign key reference.
if ($this->aUsuarioNutrapharm !== null) {
if (!$this->aUsuarioNutrapharm->validate($columns)) {
$failureMap = array_merge($failureMap, $this->aUsuarioNutrapharm->getValidationFailures());
}
}
if (($retval = EnvioCorreoUsuarioPeer::doValidate($this, $columns)) !== true) {
$failureMap = array_merge($failureMap, $retval);
}
$this->alreadyInValidation = false;
}
return (!empty($failureMap) ? $failureMap : true);
}
/**
* Retrieves a field from the object by name passed in as a string.
*
* @param string $name name
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return mixed Value of field.
*/
public function getByName($name, $type = BasePeer::TYPE_PHPNAME)
{
$pos = EnvioCorreoUsuarioPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$field = $this->getByPosition($pos);
return $field;
}
/**
* Retrieves a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @return mixed Value of field at $pos
*/
public function getByPosition($pos)
{
switch ($pos) {
case 0:
return $this->getEcuId();
break;
case 1:
return $this->getUnuId();
break;
case 2:
return $this->getEcuEstado();
break;
case 3:
return $this->getCreatedAt();
break;
case 4:
return $this->getUpdatedAt();
break;
default:
return null;
break;
} // switch()
}
/**
* Exports the object as an array.
*
* You can specify the key type of the array by passing one of the class
* type constants.
*
* @param string $keyType (optional) One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME.
* @param boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to true.
* @param array $alreadyDumpedObjects List of objects to skip to avoid recursion
* @param boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
*
* @return array an associative array containing the field names (as keys) and field values
*/
public function toArray($keyType = BasePeer::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
{
if (isset($alreadyDumpedObjects['EnvioCorreoUsuario'][$this->getPrimaryKey()])) {
return '*RECURSION*';
}
$alreadyDumpedObjects['EnvioCorreoUsuario'][$this->getPrimaryKey()] = true;
$keys = EnvioCorreoUsuarioPeer::getFieldNames($keyType);
$result = array(
$keys[0] => $this->getEcuId(),
$keys[1] => $this->getUnuId(),
$keys[2] => $this->getEcuEstado(),
$keys[3] => $this->getCreatedAt(),
$keys[4] => $this->getUpdatedAt(),
);
$virtualColumns = $this->virtualColumns;
foreach ($virtualColumns as $key => $virtualColumn) {
$result[$key] = $virtualColumn;
}
if ($includeForeignObjects) {
if (null !== $this->aUsuarioNutrapharm) {
$result['UsuarioNutrapharm'] = $this->aUsuarioNutrapharm->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
}
}
return $result;
}
/**
* Sets a field from the object by name passed in as a string.
*
* @param string $name peer name
* @param mixed $value field value
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return void
*/
public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME)
{
$pos = EnvioCorreoUsuarioPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$this->setByPosition($pos, $value);
}
/**
* Sets a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @param mixed $value field value
* @return void
*/
public function setByPosition($pos, $value)
{
switch ($pos) {
case 0:
$this->setEcuId($value);
break;
case 1:
$this->setUnuId($value);
break;
case 2:
$this->setEcuEstado($value);
break;
case 3:
$this->setCreatedAt($value);
break;
case 4:
$this->setUpdatedAt($value);
break;
} // switch()
}
/**
* Populates the object using an array.
*
* This is particularly useful when populating an object from one of the
* request arrays (e.g. $_POST). This method goes through the column
* names, checking to see whether a matching key exists in populated
* array. If so the setByName() method is called for that column.
*
* You can specify the key type of the array by additionally passing one
* of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* The default key type is the column's BasePeer::TYPE_PHPNAME
*
* @param array $arr An array to populate the object from.
* @param string $keyType The type of keys the array uses.
* @return void
*/
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
{
$keys = EnvioCorreoUsuarioPeer::getFieldNames($keyType);
if (array_key_exists($keys[0], $arr)) $this->setEcuId($arr[$keys[0]]);
if (array_key_exists($keys[1], $arr)) $this->setUnuId($arr[$keys[1]]);
if (array_key_exists($keys[2], $arr)) $this->setEcuEstado($arr[$keys[2]]);
if (array_key_exists($keys[3], $arr)) $this->setCreatedAt($arr[$keys[3]]);
if (array_key_exists($keys[4], $arr)) $this->setUpdatedAt($arr[$keys[4]]);
}
/**
* Build a Criteria object containing the values of all modified columns in this object.
*
* @return Criteria The Criteria object containing all modified values.
*/
public function buildCriteria()
{
$criteria = new Criteria(EnvioCorreoUsuarioPeer::DATABASE_NAME);
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::ECU_ID)) $criteria->add(EnvioCorreoUsuarioPeer::ECU_ID, $this->ecu_id);
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::UNU_ID)) $criteria->add(EnvioCorreoUsuarioPeer::UNU_ID, $this->unu_id);
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::ECU_ESTADO)) $criteria->add(EnvioCorreoUsuarioPeer::ECU_ESTADO, $this->ecu_estado);
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::CREATED_AT)) $criteria->add(EnvioCorreoUsuarioPeer::CREATED_AT, $this->created_at);
if ($this->isColumnModified(EnvioCorreoUsuarioPeer::UPDATED_AT)) $criteria->add(EnvioCorreoUsuarioPeer::UPDATED_AT, $this->updated_at);
return $criteria;
}
/**
* Builds a Criteria object containing the primary key for this object.
*
* Unlike buildCriteria() this method includes the primary key values regardless
* of whether or not they have been modified.
*
* @return Criteria The Criteria object containing value(s) for primary key(s).
*/
public function buildPkeyCriteria()
{
$criteria = new Criteria(EnvioCorreoUsuarioPeer::DATABASE_NAME);
$criteria->add(EnvioCorreoUsuarioPeer::ECU_ID, $this->ecu_id);
return $criteria;
}
/**
* Returns the primary key for this object (row).
* @return int
*/
public function getPrimaryKey()
{
return $this->getEcuId();
}
/**
* Generic method to set the primary key (ecu_id column).
*
* @param int $key Primary key.
* @return void
*/
public function setPrimaryKey($key)
{
$this->setEcuId($key);
}
/**
* Returns true if the primary key for this object is null.
* @return boolean
*/
public function isPrimaryKeyNull()
{
return null === $this->getEcuId();
}
/**
* Sets contents of passed object to values from current object.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param object $copyObj An object of EnvioCorreoUsuario (or compatible) type.
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @param boolean $makeNew Whether to reset autoincrement PKs and make the object new.
* @throws PropelException
*/
public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
{
$copyObj->setUnuId($this->getUnuId());
$copyObj->setEcuEstado($this->getEcuEstado());
$copyObj->setCreatedAt($this->getCreatedAt());
$copyObj->setUpdatedAt($this->getUpdatedAt());
if ($deepCopy && !$this->startCopy) {
// important: temporarily setNew(false) because this affects the behavior of
// the getter/setter methods for fkey referrer objects.
$copyObj->setNew(false);
// store object hash to prevent cycle
$this->startCopy = true;
//unflag object copy
$this->startCopy = false;
} // if ($deepCopy)
if ($makeNew) {
$copyObj->setNew(true);
$copyObj->setEcuId(NULL); // this is a auto-increment column, so set to default value
}
}
/**
* Makes a copy of this object that will be inserted as a new row in table when saved.
* It creates a new object filling in the simple attributes, but skipping any primary
* keys that are defined for the table.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @return EnvioCorreoUsuario Clone of current object.
* @throws PropelException
*/
public function copy($deepCopy = false)
{
// we use get_class(), because this might be a subclass
$clazz = get_class($this);
$copyObj = new $clazz();
$this->copyInto($copyObj, $deepCopy);
return $copyObj;
}
/**
* Returns a peer instance associated with this om.
*
* Since Peer classes are not to have any instance attributes, this method returns the
* same instance for all member of this class. The method could therefore
* be static, but this would prevent one from overriding the behavior.
*
* @return EnvioCorreoUsuarioPeer
*/
public function getPeer()
{
if (self::$peer === null) {
self::$peer = new EnvioCorreoUsuarioPeer();
}
return self::$peer;
}
/**
* Declares an association between this object and a UsuarioNutrapharm object.
*
* @param UsuarioNutrapharm $v
* @return EnvioCorreoUsuario The current object (for fluent API support)
* @throws PropelException
*/
public function setUsuarioNutrapharm(UsuarioNutrapharm $v = null)
{
if ($v === null) {
$this->setUnuId(NULL);
} else {
$this->setUnuId($v->getUnuId());
}
$this->aUsuarioNutrapharm = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the UsuarioNutrapharm object, it will not be re-added.
if ($v !== null) {
$v->addEnvioCorreoUsuario($this);
}
return $this;
}
/**
* Get the associated UsuarioNutrapharm object
*
* @param PropelPDO $con Optional Connection object.
* @param $doQuery Executes a query to get the object if required
* @return UsuarioNutrapharm The associated UsuarioNutrapharm object.
* @throws PropelException
*/
public function getUsuarioNutrapharm(PropelPDO $con = null, $doQuery = true)
{
if ($this->aUsuarioNutrapharm === null && ($this->unu_id !== null) && $doQuery) {
$this->aUsuarioNutrapharm = UsuarioNutrapharmQuery::create()->findPk($this->unu_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aUsuarioNutrapharm->addEnvioCorreoUsuarios($this);
*/
}
return $this->aUsuarioNutrapharm;
}
/**
* Clears the current object and sets all attributes to their default values
*/
public function clear()
{
$this->ecu_id = null;
$this->unu_id = null;
$this->ecu_estado = null;
$this->created_at = null;
$this->updated_at = null;
$this->alreadyInSave = false;
$this->alreadyInValidation = false;
$this->alreadyInClearAllReferencesDeep = false;
$this->clearAllReferences();
$this->resetModified();
$this->setNew(true);
$this->setDeleted(false);
}
/**
* Resets all references to other model objects or collections of model objects.
*
* This method is a user-space workaround for PHP's inability to garbage collect
* objects with circular references (even in PHP 5.3). This is currently necessary
* when using Propel in certain daemon or large-volume/high-memory operations.
*
* @param boolean $deep Whether to also clear the references on all referrer objects.
*/
public function clearAllReferences($deep = false)
{
if ($deep && !$this->alreadyInClearAllReferencesDeep) {
$this->alreadyInClearAllReferencesDeep = true;
if ($this->aUsuarioNutrapharm instanceof Persistent) {
$this->aUsuarioNutrapharm->clearAllReferences($deep);
}
$this->alreadyInClearAllReferencesDeep = false;
} // if ($deep)
$this->aUsuarioNutrapharm = null;
}
/**
* return the string representation of this object
*
* @return string
*/
public function __toString()
{
return (string) $this->exportTo(EnvioCorreoUsuarioPeer::DEFAULT_STRING_FORMAT);
}
/**
* return true is the object is in saving state
*
* @return boolean
*/
public function isAlreadyInSave()
{
return $this->alreadyInSave;
}
// timestampable behavior
/**
* Mark the current object so that the update date doesn't get updated during next save
*
* @return EnvioCorreoUsuario The current object (for fluent API support)
*/
public function keepUpdateDateUnchanged()
{
$this->modifiedColumns[] = EnvioCorreoUsuarioPeer::UPDATED_AT;
return $this;
}
}
<?php
namespace AppBundle\Model\om;
use \BasePeer;
use \Criteria;
use \PDO;
use \PDOStatement;
use \Propel;
use \PropelException;
use \PropelPDO;
use AppBundle\Model\EnvioCorreoUsuario;
use AppBundle\Model\EnvioCorreoUsuarioPeer;
use AppBundle\Model\UsuarioNutrapharmPeer;
use AppBundle\Model\map\EnvioCorreoUsuarioTableMap;
abstract class BaseEnvioCorreoUsuarioPeer
{
/** the default database name for this class */
const DATABASE_NAME = 'conn1';
/** the table name for this class */
const TABLE_NAME = 'envio_correo_usuario';
/** the related Propel class for this table */
const OM_CLASS = 'AppBundle\\Model\\EnvioCorreoUsuario';
/** the related TableMap class for this table */
const TM_CLASS = 'AppBundle\\Model\\map\\EnvioCorreoUsuarioTableMap';
/** The total number of columns. */
const NUM_COLUMNS = 5;
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS) */
const NUM_HYDRATE_COLUMNS = 5;
/** the column name for the ecu_id field */
const ECU_ID = 'envio_correo_usuario.ecu_id';
/** the column name for the unu_id field */
const UNU_ID = 'envio_correo_usuario.unu_id';
/** the column name for the ecu_estado field */
const ECU_ESTADO = 'envio_correo_usuario.ecu_estado';
/** the column name for the created_at field */
const CREATED_AT = 'envio_correo_usuario.created_at';
/** the column name for the updated_at field */
const UPDATED_AT = 'envio_correo_usuario.updated_at';
/** The default string format for model objects of the related table **/
const DEFAULT_STRING_FORMAT = 'YAML';
/**
* An identity map to hold any loaded instances of EnvioCorreoUsuario objects.
* This must be public so that other peer classes can access this when hydrating from JOIN
* queries.
* @var array EnvioCorreoUsuario[]
*/
public static $instances = array();
/**
* holds an array of fieldnames
*
* first dimension keys are the type constants
* e.g. EnvioCorreoUsuarioPeer::$fieldNames[EnvioCorreoUsuarioPeer::TYPE_PHPNAME][0] = 'Id'
*/
protected static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('EcuId', 'UnuId', 'EcuEstado', 'CreatedAt', 'UpdatedAt', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('ecuId', 'unuId', 'ecuEstado', 'createdAt', 'updatedAt', ),
BasePeer::TYPE_COLNAME => array (EnvioCorreoUsuarioPeer::ECU_ID, EnvioCorreoUsuarioPeer::UNU_ID, EnvioCorreoUsuarioPeer::ECU_ESTADO, EnvioCorreoUsuarioPeer::CREATED_AT, EnvioCorreoUsuarioPeer::UPDATED_AT, ),
BasePeer::TYPE_RAW_COLNAME => array ('ECU_ID', 'UNU_ID', 'ECU_ESTADO', 'CREATED_AT', 'UPDATED_AT', ),
BasePeer::TYPE_FIELDNAME => array ('ecu_id', 'unu_id', 'ecu_estado', 'created_at', 'updated_at', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
);
/**
* holds an array of keys for quick access to the fieldnames array
*
* first dimension keys are the type constants
* e.g. EnvioCorreoUsuarioPeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/
protected static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('EcuId' => 0, 'UnuId' => 1, 'EcuEstado' => 2, 'CreatedAt' => 3, 'UpdatedAt' => 4, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('ecuId' => 0, 'unuId' => 1, 'ecuEstado' => 2, 'createdAt' => 3, 'updatedAt' => 4, ),
BasePeer::TYPE_COLNAME => array (EnvioCorreoUsuarioPeer::ECU_ID => 0, EnvioCorreoUsuarioPeer::UNU_ID => 1, EnvioCorreoUsuarioPeer::ECU_ESTADO => 2, EnvioCorreoUsuarioPeer::CREATED_AT => 3, EnvioCorreoUsuarioPeer::UPDATED_AT => 4, ),
BasePeer::TYPE_RAW_COLNAME => array ('ECU_ID' => 0, 'UNU_ID' => 1, 'ECU_ESTADO' => 2, 'CREATED_AT' => 3, 'UPDATED_AT' => 4, ),
BasePeer::TYPE_FIELDNAME => array ('ecu_id' => 0, 'unu_id' => 1, 'ecu_estado' => 2, 'created_at' => 3, 'updated_at' => 4, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
);
/**
* Translates a fieldname to another type
*
* @param string $name field name
* @param string $fromType One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @param string $toType One of the class type constants
* @return string translated name of the field.
* @throws PropelException - if the specified name could not be found in the fieldname mappings.
*/
public static function translateFieldName($name, $fromType, $toType)
{
$toNames = EnvioCorreoUsuarioPeer::getFieldNames($toType);
$key = isset(EnvioCorreoUsuarioPeer::$fieldKeys[$fromType][$name]) ? EnvioCorreoUsuarioPeer::$fieldKeys[$fromType][$name] : null;
if ($key === null) {
throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(EnvioCorreoUsuarioPeer::$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
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @return array A list of field names
* @throws PropelException - if the type is not valid.
*/
public static function getFieldNames($type = BasePeer::TYPE_PHPNAME)
{
if (!array_key_exists($type, EnvioCorreoUsuarioPeer::$fieldNames)) {
throw new PropelException('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.');
}
return EnvioCorreoUsuarioPeer::$fieldNames[$type];
}
/**
* Convenience method which changes table.column to alias.column.
*
* Using this method you can maintain SQL abstraction while using column aliases.
* <code>
* $c->addAlias("alias1", TablePeer::TABLE_NAME);
* $c->addJoin(TablePeer::alias("alias1", TablePeer::PRIMARY_KEY_COLUMN), TablePeer::PRIMARY_KEY_COLUMN);
* </code>
* @param string $alias The alias for the current table.
* @param string $column The column name for current table. (i.e. EnvioCorreoUsuarioPeer::COLUMN_NAME).
* @return string
*/
public static function alias($alias, $column)
{
return str_replace(EnvioCorreoUsuarioPeer::TABLE_NAME.'.', $alias.'.', $column);
}
/**
* Add all the columns needed to create a new object.
*
* Note: any columns that were marked with lazyLoad="true" in the
* XML schema will not be added to the select list and only loaded
* on demand.
*
* @param Criteria $criteria object containing the columns to add.
* @param string $alias optional table alias
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function addSelectColumns(Criteria $criteria, $alias = null)
{
if (null === $alias) {
$criteria->addSelectColumn(EnvioCorreoUsuarioPeer::ECU_ID);
$criteria->addSelectColumn(EnvioCorreoUsuarioPeer::UNU_ID);
$criteria->addSelectColumn(EnvioCorreoUsuarioPeer::ECU_ESTADO);
$criteria->addSelectColumn(EnvioCorreoUsuarioPeer::CREATED_AT);
$criteria->addSelectColumn(EnvioCorreoUsuarioPeer::UPDATED_AT);
} else {
$criteria->addSelectColumn($alias . '.ecu_id');
$criteria->addSelectColumn($alias . '.unu_id');
$criteria->addSelectColumn($alias . '.ecu_estado');
$criteria->addSelectColumn($alias . '.created_at');
$criteria->addSelectColumn($alias . '.updated_at');
}
}
/**
* Returns the number of rows matching criteria.
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @return int Number of matching rows.
*/
public static function doCount(Criteria $criteria, $distinct = false, PropelPDO $con = null)
{
// we may modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(EnvioCorreoUsuarioPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
EnvioCorreoUsuarioPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME); // Set the correct dbName
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// BasePeer returns a PDOStatement
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects one object from the DB.
*
* @param Criteria $criteria object used to create the SELECT statement.
* @param PropelPDO $con
* @return EnvioCorreoUsuario
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectOne(Criteria $criteria, PropelPDO $con = null)
{
$critcopy = clone $criteria;
$critcopy->setLimit(1);
$objects = EnvioCorreoUsuarioPeer::doSelect($critcopy, $con);
if ($objects) {
return $objects[0];
}
return null;
}
/**
* Selects several row from the DB.
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con
* @return array Array of selected Objects
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelect(Criteria $criteria, PropelPDO $con = null)
{
return EnvioCorreoUsuarioPeer::populateObjects(EnvioCorreoUsuarioPeer::doSelectStmt($criteria, $con));
}
/**
* Prepares the Criteria object and uses the parent doSelect() method to execute a PDOStatement.
*
* Use this method directly if you want to work with an executed statement directly (for example
* to perform your own object hydration).
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con The connection to use
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return PDOStatement The executed PDOStatement object.
* @see BasePeer::doSelect()
*/
public static function doSelectStmt(Criteria $criteria, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
if (!$criteria->hasSelectClause()) {
$criteria = clone $criteria;
EnvioCorreoUsuarioPeer::addSelectColumns($criteria);
}
// Set the correct dbName
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
// BasePeer returns a PDOStatement
return BasePeer::doSelect($criteria, $con);
}
/**
* Adds an object to the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doSelect*()
* methods in your stub classes -- you may need to explicitly add objects
* to the cache in order to ensure that the same objects are always returned by doSelect*()
* and retrieveByPK*() calls.
*
* @param EnvioCorreoUsuario $obj A EnvioCorreoUsuario object.
* @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
*/
public static function addInstanceToPool($obj, $key = null)
{
if (Propel::isInstancePoolingEnabled()) {
if ($key === null) {
$key = (string) $obj->getEcuId();
} // if key === null
EnvioCorreoUsuarioPeer::$instances[$key] = $obj;
}
}
/**
* Removes an object from the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doDelete
* methods in your stub classes -- you may need to explicitly remove objects
* from the cache in order to prevent returning objects that no longer exist.
*
* @param mixed $value A EnvioCorreoUsuario object or a primary key value.
*
* @return void
* @throws PropelException - if the value is invalid.
*/
public static function removeInstanceFromPool($value)
{
if (Propel::isInstancePoolingEnabled() && $value !== null) {
if (is_object($value) && $value instanceof EnvioCorreoUsuario) {
$key = (string) $value->getEcuId();
} elseif (is_scalar($value)) {
// assume we've been passed a primary key
$key = (string) $value;
} else {
$e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or EnvioCorreoUsuario object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
throw $e;
}
unset(EnvioCorreoUsuarioPeer::$instances[$key]);
}
} // removeInstanceFromPool()
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param string $key The key (@see getPrimaryKeyHash()) for this instance.
* @return EnvioCorreoUsuario Found object or null if 1) no instance exists for specified key or 2) instance pooling has been disabled.
* @see getPrimaryKeyHash()
*/
public static function getInstanceFromPool($key)
{
if (Propel::isInstancePoolingEnabled()) {
if (isset(EnvioCorreoUsuarioPeer::$instances[$key])) {
return EnvioCorreoUsuarioPeer::$instances[$key];
}
}
return null; // just to be explicit
}
/**
* Clear the instance pool.
*
* @return void
*/
public static function clearInstancePool($and_clear_all_references = false)
{
if ($and_clear_all_references) {
foreach (EnvioCorreoUsuarioPeer::$instances as $instance) {
$instance->clearAllReferences(true);
}
}
EnvioCorreoUsuarioPeer::$instances = array();
}
/**
* Method to invalidate the instance pool of all tables related to envio_correo_usuario
* by a foreign key with ON DELETE CASCADE
*/
public static function clearRelatedInstancePool()
{
}
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return string A string version of PK or null if the components of primary key in result array are all null.
*/
public static function getPrimaryKeyHashFromRow($row, $startcol = 0)
{
// If the PK cannot be derived from the row, return null.
if ($row[$startcol] === null) {
return null;
}
return (string) $row[$startcol];
}
/**
* Retrieves the primary key from the DB resultset row
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, an array of the primary key columns will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return mixed The primary key of the row
*/
public static function getPrimaryKeyFromRow($row, $startcol = 0)
{
return (int) $row[$startcol];
}
/**
* The returned array will contain objects of the default type or
* objects that inherit from the default.
*
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function populateObjects(PDOStatement $stmt)
{
$results = array();
// set the class once to avoid overhead in the loop
$cls = EnvioCorreoUsuarioPeer::getOMClass();
// populate the object(s)
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key = EnvioCorreoUsuarioPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj = EnvioCorreoUsuarioPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, 0, true); // rehydrate
$results[] = $obj;
} else {
$obj = new $cls();
$obj->hydrate($row);
$results[] = $obj;
EnvioCorreoUsuarioPeer::addInstanceToPool($obj, $key);
} // if key exists
}
$stmt->closeCursor();
return $results;
}
/**
* Populates an object of the default type or an object that inherit from the default.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return array (EnvioCorreoUsuario object, last column rank)
*/
public static function populateObject($row, $startcol = 0)
{
$key = EnvioCorreoUsuarioPeer::getPrimaryKeyHashFromRow($row, $startcol);
if (null !== ($obj = EnvioCorreoUsuarioPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, $startcol, true); // rehydrate
$col = $startcol + EnvioCorreoUsuarioPeer::NUM_HYDRATE_COLUMNS;
} else {
$cls = EnvioCorreoUsuarioPeer::OM_CLASS;
$obj = new $cls();
$col = $obj->hydrate($row, $startcol);
EnvioCorreoUsuarioPeer::addInstanceToPool($obj, $key);
}
return array($obj, $col);
}
/**
* Returns the number of rows matching criteria, joining the related UsuarioNutrapharm table
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return int Number of matching rows.
*/
public static function doCountJoinUsuarioNutrapharm(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
// we're going to modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(EnvioCorreoUsuarioPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
EnvioCorreoUsuarioPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria->addJoin(EnvioCorreoUsuarioPeer::UNU_ID, UsuarioNutrapharmPeer::UNU_ID, $join_behavior);
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects a collection of EnvioCorreoUsuario objects pre-filled with their UsuarioNutrapharm objects.
* @param Criteria $criteria
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of EnvioCorreoUsuario objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinUsuarioNutrapharm(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$criteria = clone $criteria;
// Set the correct dbName if it has not been overridden
if ($criteria->getDbName() == Propel::getDefaultDB()) {
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
}
EnvioCorreoUsuarioPeer::addSelectColumns($criteria);
$startcol = EnvioCorreoUsuarioPeer::NUM_HYDRATE_COLUMNS;
UsuarioNutrapharmPeer::addSelectColumns($criteria);
$criteria->addJoin(EnvioCorreoUsuarioPeer::UNU_ID, UsuarioNutrapharmPeer::UNU_ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = EnvioCorreoUsuarioPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = EnvioCorreoUsuarioPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$cls = EnvioCorreoUsuarioPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
EnvioCorreoUsuarioPeer::addInstanceToPool($obj1, $key1);
} // if $obj1 already loaded
$key2 = UsuarioNutrapharmPeer::getPrimaryKeyHashFromRow($row, $startcol);
if ($key2 !== null) {
$obj2 = UsuarioNutrapharmPeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = UsuarioNutrapharmPeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol);
UsuarioNutrapharmPeer::addInstanceToPool($obj2, $key2);
} // if obj2 already loaded
// Add the $obj1 (EnvioCorreoUsuario) to $obj2 (UsuarioNutrapharm)
$obj2->addEnvioCorreoUsuario($obj1);
} // if joined row was not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
/**
* Returns the number of rows matching criteria, joining all related tables
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return int Number of matching rows.
*/
public static function doCountJoinAll(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
// we're going to modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(EnvioCorreoUsuarioPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
EnvioCorreoUsuarioPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria->addJoin(EnvioCorreoUsuarioPeer::UNU_ID, UsuarioNutrapharmPeer::UNU_ID, $join_behavior);
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects a collection of EnvioCorreoUsuario objects pre-filled with all related objects.
*
* @param Criteria $criteria
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of EnvioCorreoUsuario objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$criteria = clone $criteria;
// Set the correct dbName if it has not been overridden
if ($criteria->getDbName() == Propel::getDefaultDB()) {
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
}
EnvioCorreoUsuarioPeer::addSelectColumns($criteria);
$startcol2 = EnvioCorreoUsuarioPeer::NUM_HYDRATE_COLUMNS;
UsuarioNutrapharmPeer::addSelectColumns($criteria);
$startcol3 = $startcol2 + UsuarioNutrapharmPeer::NUM_HYDRATE_COLUMNS;
$criteria->addJoin(EnvioCorreoUsuarioPeer::UNU_ID, UsuarioNutrapharmPeer::UNU_ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = EnvioCorreoUsuarioPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = EnvioCorreoUsuarioPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$cls = EnvioCorreoUsuarioPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
EnvioCorreoUsuarioPeer::addInstanceToPool($obj1, $key1);
} // if obj1 already loaded
// Add objects for joined UsuarioNutrapharm rows
$key2 = UsuarioNutrapharmPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = UsuarioNutrapharmPeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = UsuarioNutrapharmPeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
UsuarioNutrapharmPeer::addInstanceToPool($obj2, $key2);
} // if obj2 loaded
// Add the $obj1 (EnvioCorreoUsuario) to the collection in $obj2 (UsuarioNutrapharm)
$obj2->addEnvioCorreoUsuario($obj1);
} // if joined row not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
/**
* Returns the TableMap related to this peer.
* This method is not needed for general use but a specific application could have a need.
* @return TableMap
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function getTableMap()
{
return Propel::getDatabaseMap(EnvioCorreoUsuarioPeer::DATABASE_NAME)->getTable(EnvioCorreoUsuarioPeer::TABLE_NAME);
}
/**
* Add a TableMap instance to the database for this peer class.
*/
public static function buildTableMap()
{
$dbMap = Propel::getDatabaseMap(BaseEnvioCorreoUsuarioPeer::DATABASE_NAME);
if (!$dbMap->hasTable(BaseEnvioCorreoUsuarioPeer::TABLE_NAME)) {
$dbMap->addTableObject(new \AppBundle\Model\map\EnvioCorreoUsuarioTableMap());
}
}
/**
* The class that the Peer will make instances of.
*
*
* @return string ClassName
*/
public static function getOMClass($row = 0, $colnum = 0)
{
return EnvioCorreoUsuarioPeer::OM_CLASS;
}
/**
* Performs an INSERT on the database, given a EnvioCorreoUsuario or Criteria object.
*
* @param mixed $values Criteria or EnvioCorreoUsuario object containing data that is used to create the INSERT statement.
* @param PropelPDO $con the PropelPDO connection to use
* @return mixed The new primary key.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doInsert($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
} else {
$criteria = $values->buildCriteria(); // build Criteria from EnvioCorreoUsuario object
}
// Set the correct dbName
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
try {
// use transaction because $criteria could contain info
// for more than one table (I guess, conceivably)
$con->beginTransaction();
$pk = BasePeer::doInsert($criteria, $con);
$con->commit();
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
return $pk;
}
/**
* Performs an UPDATE on the database, given a EnvioCorreoUsuario or Criteria object.
*
* @param mixed $values Criteria or EnvioCorreoUsuario object containing data that is used to create the UPDATE statement.
* @param PropelPDO $con The connection to use (specify PropelPDO connection object to exert more control over transactions).
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doUpdate($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$selectCriteria = new Criteria(EnvioCorreoUsuarioPeer::DATABASE_NAME);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$comparison = $criteria->getComparison(EnvioCorreoUsuarioPeer::ECU_ID);
$value = $criteria->remove(EnvioCorreoUsuarioPeer::ECU_ID);
if ($value) {
$selectCriteria->add(EnvioCorreoUsuarioPeer::ECU_ID, $value, $comparison);
} else {
$selectCriteria->setPrimaryTableName(EnvioCorreoUsuarioPeer::TABLE_NAME);
}
} else { // $values is EnvioCorreoUsuario object
$criteria = $values->buildCriteria(); // gets full criteria
$selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s)
}
// set the correct dbName
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
return BasePeer::doUpdate($selectCriteria, $criteria, $con);
}
/**
* Deletes all rows from the envio_correo_usuario table.
*
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException
*/
public static function doDeleteAll(PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDeleteAll(EnvioCorreoUsuarioPeer::TABLE_NAME, $con, EnvioCorreoUsuarioPeer::DATABASE_NAME);
// Because this db requires some delete cascade/set null emulation, we have to
// clear the cached instance *after* the emulation has happened (since
// instances get re-added by the select statement contained therein).
EnvioCorreoUsuarioPeer::clearInstancePool();
EnvioCorreoUsuarioPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs a DELETE on the database, given a EnvioCorreoUsuario or Criteria object OR a primary key value.
*
* @param mixed $values Criteria or EnvioCorreoUsuario object or primary key or array of primary keys
* which is used to create the DELETE statement
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
* if supported by native driver or if emulated using Propel.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doDelete($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
// invalidate the cache for all objects of this type, since we have no
// way of knowing (without running a query) what objects should be invalidated
// from the cache based on this Criteria.
EnvioCorreoUsuarioPeer::clearInstancePool();
// rename for clarity
$criteria = clone $values;
} elseif ($values instanceof EnvioCorreoUsuario) { // it's a model object
// invalidate the cache for this single object
EnvioCorreoUsuarioPeer::removeInstanceFromPool($values);
// create criteria based on pk values
$criteria = $values->buildPkeyCriteria();
} else { // it's a primary key, or an array of pks
$criteria = new Criteria(EnvioCorreoUsuarioPeer::DATABASE_NAME);
$criteria->add(EnvioCorreoUsuarioPeer::ECU_ID, (array) $values, Criteria::IN);
// invalidate the cache for this object(s)
foreach ((array) $values as $singleval) {
EnvioCorreoUsuarioPeer::removeInstanceFromPool($singleval);
}
}
// Set the correct dbName
$criteria->setDbName(EnvioCorreoUsuarioPeer::DATABASE_NAME);
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDelete($criteria, $con);
EnvioCorreoUsuarioPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Validates all modified columns of given EnvioCorreoUsuario object.
* If parameter $columns is either a single column name or an array of column names
* than only those columns are validated.
*
* NOTICE: This does not apply to primary or foreign keys for now.
*
* @param EnvioCorreoUsuario $obj The object to validate.
* @param mixed $cols Column name or array of column names.
*
* @return mixed TRUE if all columns are valid or the error message of the first invalid column.
*/
public static function doValidate($obj, $cols = null)
{
$columns = array();
if ($cols) {
$dbMap = Propel::getDatabaseMap(EnvioCorreoUsuarioPeer::DATABASE_NAME);
$tableMap = $dbMap->getTable(EnvioCorreoUsuarioPeer::TABLE_NAME);
if (! is_array($cols)) {
$cols = array($cols);
}
foreach ($cols as $colName) {
if ($tableMap->hasColumn($colName)) {
$get = 'get' . $tableMap->getColumn($colName)->getPhpName();
$columns[$colName] = $obj->$get();
}
}
} else {
}
return BasePeer::doValidate(EnvioCorreoUsuarioPeer::DATABASE_NAME, EnvioCorreoUsuarioPeer::TABLE_NAME, $columns);
}
/**
* Retrieve a single object by pkey.
*
* @param int $pk the primary key.
* @param PropelPDO $con the connection to use
* @return EnvioCorreoUsuario
*/
public static function retrieveByPK($pk, PropelPDO $con = null)
{
if (null !== ($obj = EnvioCorreoUsuarioPeer::getInstanceFromPool((string) $pk))) {
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria = new Criteria(EnvioCorreoUsuarioPeer::DATABASE_NAME);
$criteria->add(EnvioCorreoUsuarioPeer::ECU_ID, $pk);
$v = EnvioCorreoUsuarioPeer::doSelect($criteria, $con);
return !empty($v) > 0 ? $v[0] : null;
}
/**
* Retrieve multiple objects by pkey.
*
* @param array $pks List of primary keys
* @param PropelPDO $con the connection to use
* @return EnvioCorreoUsuario[]
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function retrieveByPKs($pks, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$objs = null;
if (empty($pks)) {
$objs = array();
} else {
$criteria = new Criteria(EnvioCorreoUsuarioPeer::DATABASE_NAME);
$criteria->add(EnvioCorreoUsuarioPeer::ECU_ID, $pks, Criteria::IN);
$objs = EnvioCorreoUsuarioPeer::doSelect($criteria, $con);
}
return $objs;
}
} // BaseEnvioCorreoUsuarioPeer
// This is the static code needed to register the TableMap for this table with the main Propel class.
//
BaseEnvioCorreoUsuarioPeer::buildTableMap();
<?php
namespace AppBundle\Model\om;
use \Criteria;
use \Exception;
use \ModelCriteria;
use \ModelJoin;
use \PDO;
use \Propel;
use \PropelCollection;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use AppBundle\Model\EnvioCorreoUsuario;
use AppBundle\Model\EnvioCorreoUsuarioPeer;
use AppBundle\Model\EnvioCorreoUsuarioQuery;
use AppBundle\Model\UsuarioNutrapharm;
/**
* @method EnvioCorreoUsuarioQuery orderByEcuId($order = Criteria::ASC) Order by the ecu_id column
* @method EnvioCorreoUsuarioQuery orderByUnuId($order = Criteria::ASC) Order by the unu_id column
* @method EnvioCorreoUsuarioQuery orderByEcuEstado($order = Criteria::ASC) Order by the ecu_estado column
* @method EnvioCorreoUsuarioQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
* @method EnvioCorreoUsuarioQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
*
* @method EnvioCorreoUsuarioQuery groupByEcuId() Group by the ecu_id column
* @method EnvioCorreoUsuarioQuery groupByUnuId() Group by the unu_id column
* @method EnvioCorreoUsuarioQuery groupByEcuEstado() Group by the ecu_estado column
* @method EnvioCorreoUsuarioQuery groupByCreatedAt() Group by the created_at column
* @method EnvioCorreoUsuarioQuery groupByUpdatedAt() Group by the updated_at column
*
* @method EnvioCorreoUsuarioQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method EnvioCorreoUsuarioQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method EnvioCorreoUsuarioQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method EnvioCorreoUsuarioQuery leftJoinUsuarioNutrapharm($relationAlias = null) Adds a LEFT JOIN clause to the query using the UsuarioNutrapharm relation
* @method EnvioCorreoUsuarioQuery rightJoinUsuarioNutrapharm($relationAlias = null) Adds a RIGHT JOIN clause to the query using the UsuarioNutrapharm relation
* @method EnvioCorreoUsuarioQuery innerJoinUsuarioNutrapharm($relationAlias = null) Adds a INNER JOIN clause to the query using the UsuarioNutrapharm relation
*
* @method EnvioCorreoUsuario findOne(PropelPDO $con = null) Return the first EnvioCorreoUsuario matching the query
* @method EnvioCorreoUsuario findOneOrCreate(PropelPDO $con = null) Return the first EnvioCorreoUsuario matching the query, or a new EnvioCorreoUsuario object populated from the query conditions when no match is found
*
* @method EnvioCorreoUsuario findOneByUnuId(int $unu_id) Return the first EnvioCorreoUsuario filtered by the unu_id column
* @method EnvioCorreoUsuario findOneByEcuEstado(int $ecu_estado) Return the first EnvioCorreoUsuario filtered by the ecu_estado column
* @method EnvioCorreoUsuario findOneByCreatedAt(string $created_at) Return the first EnvioCorreoUsuario filtered by the created_at column
* @method EnvioCorreoUsuario findOneByUpdatedAt(string $updated_at) Return the first EnvioCorreoUsuario filtered by the updated_at column
*
* @method array findByEcuId(int $ecu_id) Return EnvioCorreoUsuario objects filtered by the ecu_id column
* @method array findByUnuId(int $unu_id) Return EnvioCorreoUsuario objects filtered by the unu_id column
* @method array findByEcuEstado(int $ecu_estado) Return EnvioCorreoUsuario objects filtered by the ecu_estado column
* @method array findByCreatedAt(string $created_at) Return EnvioCorreoUsuario objects filtered by the created_at column
* @method array findByUpdatedAt(string $updated_at) Return EnvioCorreoUsuario objects filtered by the updated_at column
*/
abstract class BaseEnvioCorreoUsuarioQuery extends ModelCriteria
{
/**
* Initializes internal state of BaseEnvioCorreoUsuarioQuery object.
*
* @param string $dbName The dabase name
* @param string $modelName The phpName of a model, e.g. 'Book'
* @param string $modelAlias The alias for the model in this query, e.g. 'b'
*/
public function __construct($dbName = null, $modelName = null, $modelAlias = null)
{
if (null === $dbName) {
$dbName = 'conn1';
}
if (null === $modelName) {
$modelName = 'AppBundle\\Model\\EnvioCorreoUsuario';
}
parent::__construct($dbName, $modelName, $modelAlias);
}
/**
* Returns a new EnvioCorreoUsuarioQuery object.
*
* @param string $modelAlias The alias of a model in the query
* @param EnvioCorreoUsuarioQuery|Criteria $criteria Optional Criteria to build the query from
*
* @return EnvioCorreoUsuarioQuery
*/
public static function create($modelAlias = null, $criteria = null)
{
if ($criteria instanceof EnvioCorreoUsuarioQuery) {
return $criteria;
}
$query = new EnvioCorreoUsuarioQuery(null, null, $modelAlias);
if ($criteria instanceof Criteria) {
$query->mergeWith($criteria);
}
return $query;
}
/**
* Find object by primary key.
* Propel uses the instance pool to skip the database if the object exists.
* Go fast if the query is untouched.
*
* <code>
* $obj = $c->findPk(12, $con);
* </code>
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return EnvioCorreoUsuario|EnvioCorreoUsuario[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if ((null !== ($obj = EnvioCorreoUsuarioPeer::getInstanceFromPool((string) $key))) && !$this->formatter) {
// the object is already in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(EnvioCorreoUsuarioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
if ($this->formatter || $this->modelAlias || $this->with || $this->select
|| $this->selectColumns || $this->asColumns || $this->selectModifiers
|| $this->map || $this->having || $this->joins) {
return $this->findPkComplex($key, $con);
} else {
return $this->findPkSimple($key, $con);
}
}
/**
* Alias of findPk to use instance pooling
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return EnvioCorreoUsuario A model object, or null if the key is not found
* @throws PropelException
*/
public function findOneByEcuId($key, $con = null)
{
return $this->findPk($key, $con);
}
/**
* Find object by primary key using raw SQL to go fast.
* Bypass doSelect() and the object formatter by using generated code.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return EnvioCorreoUsuario A model object, or null if the key is not found
* @throws PropelException
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `ecu_id`, `unu_id`, `ecu_estado`, `created_at`, `updated_at` FROM `envio_correo_usuario` WHERE `ecu_id` = :p0';
try {
$stmt = $con->prepare($sql);
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
}
$obj = null;
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$obj = new EnvioCorreoUsuario();
$obj->hydrate($row);
EnvioCorreoUsuarioPeer::addInstanceToPool($obj, (string) $key);
}
$stmt->closeCursor();
return $obj;
}
/**
* Find object by primary key.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return EnvioCorreoUsuario|EnvioCorreoUsuario[]|mixed the result, formatted by the current formatter
*/
protected function findPkComplex($key, $con)
{
// As the query uses a PK condition, no limit(1) is necessary.
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKey($key)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
}
/**
* Find objects by primary key
* <code>
* $objs = $c->findPks(array(12, 56, 832), $con);
* </code>
* @param array $keys Primary keys to use for the query
* @param PropelPDO $con an optional connection object
*
* @return PropelObjectCollection|EnvioCorreoUsuario[]|mixed the list of results, formatted by the current formatter
*/
public function findPks($keys, $con = null)
{
if ($con === null) {
$con = Propel::getConnection($this->getDbName(), Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKeys($keys)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->format($stmt);
}
/**
* Filter the query by primary key
*
* @param mixed $key Primary key to use for the query
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function filterByPrimaryKey($key)
{
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ID, $key, Criteria::EQUAL);
}
/**
* Filter the query by a list of primary keys
*
* @param array $keys The list of primary key to use for the query
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function filterByPrimaryKeys($keys)
{
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ID, $keys, Criteria::IN);
}
/**
* Filter the query on the ecu_id column
*
* Example usage:
* <code>
* $query->filterByEcuId(1234); // WHERE ecu_id = 1234
* $query->filterByEcuId(array(12, 34)); // WHERE ecu_id IN (12, 34)
* $query->filterByEcuId(array('min' => 12)); // WHERE ecu_id >= 12
* $query->filterByEcuId(array('max' => 12)); // WHERE ecu_id <= 12
* </code>
*
* @param mixed $ecuId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function filterByEcuId($ecuId = null, $comparison = null)
{
if (is_array($ecuId)) {
$useMinMax = false;
if (isset($ecuId['min'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ID, $ecuId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($ecuId['max'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ID, $ecuId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ID, $ecuId, $comparison);
}
/**
* Filter the query on the unu_id column
*
* Example usage:
* <code>
* $query->filterByUnuId(1234); // WHERE unu_id = 1234
* $query->filterByUnuId(array(12, 34)); // WHERE unu_id IN (12, 34)
* $query->filterByUnuId(array('min' => 12)); // WHERE unu_id >= 12
* $query->filterByUnuId(array('max' => 12)); // WHERE unu_id <= 12
* </code>
*
* @see filterByUsuarioNutrapharm()
*
* @param mixed $unuId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function filterByUnuId($unuId = null, $comparison = null)
{
if (is_array($unuId)) {
$useMinMax = false;
if (isset($unuId['min'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::UNU_ID, $unuId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($unuId['max'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::UNU_ID, $unuId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::UNU_ID, $unuId, $comparison);
}
/**
* Filter the query on the ecu_estado column
*
* Example usage:
* <code>
* $query->filterByEcuEstado(1234); // WHERE ecu_estado = 1234
* $query->filterByEcuEstado(array(12, 34)); // WHERE ecu_estado IN (12, 34)
* $query->filterByEcuEstado(array('min' => 12)); // WHERE ecu_estado >= 12
* $query->filterByEcuEstado(array('max' => 12)); // WHERE ecu_estado <= 12
* </code>
*
* @param mixed $ecuEstado The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function filterByEcuEstado($ecuEstado = null, $comparison = null)
{
if (is_array($ecuEstado)) {
$useMinMax = false;
if (isset($ecuEstado['min'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ESTADO, $ecuEstado['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($ecuEstado['max'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ESTADO, $ecuEstado['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ESTADO, $ecuEstado, $comparison);
}
/**
* Filter the query on the created_at column
*
* Example usage:
* <code>
* $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt('now'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at < '2011-03-13'
* </code>
*
* @param mixed $createdAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function filterByCreatedAt($createdAt = null, $comparison = null)
{
if (is_array($createdAt)) {
$useMinMax = false;
if (isset($createdAt['min'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::CREATED_AT, $createdAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($createdAt['max'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::CREATED_AT, $createdAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::CREATED_AT, $createdAt, $comparison);
}
/**
* Filter the query on the updated_at column
*
* Example usage:
* <code>
* $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt('now'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at < '2011-03-13'
* </code>
*
* @param mixed $updatedAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function filterByUpdatedAt($updatedAt = null, $comparison = null)
{
if (is_array($updatedAt)) {
$useMinMax = false;
if (isset($updatedAt['min'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::UPDATED_AT, $updatedAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($updatedAt['max'])) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::UPDATED_AT, $updatedAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::UPDATED_AT, $updatedAt, $comparison);
}
/**
* Filter the query by a related UsuarioNutrapharm object
*
* @param UsuarioNutrapharm|PropelObjectCollection $usuarioNutrapharm The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByUsuarioNutrapharm($usuarioNutrapharm, $comparison = null)
{
if ($usuarioNutrapharm instanceof UsuarioNutrapharm) {
return $this
->addUsingAlias(EnvioCorreoUsuarioPeer::UNU_ID, $usuarioNutrapharm->getUnuId(), $comparison);
} elseif ($usuarioNutrapharm instanceof PropelObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this
->addUsingAlias(EnvioCorreoUsuarioPeer::UNU_ID, $usuarioNutrapharm->toKeyValue('PrimaryKey', 'UnuId'), $comparison);
} else {
throw new PropelException('filterByUsuarioNutrapharm() only accepts arguments of type UsuarioNutrapharm or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the UsuarioNutrapharm relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function joinUsuarioNutrapharm($relationAlias = null, $joinType = Criteria::INNER_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('UsuarioNutrapharm');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'UsuarioNutrapharm');
}
return $this;
}
/**
* Use the UsuarioNutrapharm relation UsuarioNutrapharm object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \AppBundle\Model\UsuarioNutrapharmQuery A secondary query class using the current class as primary query
*/
public function useUsuarioNutrapharmQuery($relationAlias = null, $joinType = Criteria::INNER_JOIN)
{
return $this
->joinUsuarioNutrapharm($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'UsuarioNutrapharm', '\AppBundle\Model\UsuarioNutrapharmQuery');
}
/**
* Exclude object from result
*
* @param EnvioCorreoUsuario $envioCorreoUsuario Object to remove from the list of results
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function prune($envioCorreoUsuario = null)
{
if ($envioCorreoUsuario) {
$this->addUsingAlias(EnvioCorreoUsuarioPeer::ECU_ID, $envioCorreoUsuario->getEcuId(), Criteria::NOT_EQUAL);
}
return $this;
}
// timestampable behavior
/**
* Filter by the latest updated
*
* @param int $nbDays Maximum age of the latest update in days
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function recentlyUpdated($nbDays = 7)
{
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::UPDATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by update date desc
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function lastUpdatedFirst()
{
return $this->addDescendingOrderByColumn(EnvioCorreoUsuarioPeer::UPDATED_AT);
}
/**
* Order by update date asc
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function firstUpdatedFirst()
{
return $this->addAscendingOrderByColumn(EnvioCorreoUsuarioPeer::UPDATED_AT);
}
/**
* Filter by the latest created
*
* @param int $nbDays Maximum age of in days
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function recentlyCreated($nbDays = 7)
{
return $this->addUsingAlias(EnvioCorreoUsuarioPeer::CREATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by create date desc
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function lastCreatedFirst()
{
return $this->addDescendingOrderByColumn(EnvioCorreoUsuarioPeer::CREATED_AT);
}
/**
* Order by create date asc
*
* @return EnvioCorreoUsuarioQuery The current query, for fluid interface
*/
public function firstCreatedFirst()
{
return $this->addAscendingOrderByColumn(EnvioCorreoUsuarioPeer::CREATED_AT);
}
}
<?php
namespace AppBundle\Model\om;
use \BaseObject;
use \BasePeer;
use \Criteria;
use \Exception;
use \PDO;
use \Persistent;
use \Propel;
use \PropelException;
use \PropelPDO;
use AppBundle\Model\ParametroConfiguracion;
use AppBundle\Model\ParametroConfiguracionPeer;
use AppBundle\Model\ParametroConfiguracionQuery;
abstract class BaseParametroConfiguracion extends BaseObject implements Persistent
{
/**
* Peer class name
*/
const PEER = 'AppBundle\\Model\\ParametroConfiguracionPeer';
/**
* The Peer class.
* Instance provides a convenient way of calling static methods on a class
* that calling code may not be able to identify.
* @var ParametroConfiguracionPeer
*/
protected static $peer;
/**
* The flag var to prevent infinite loop in deep copy
* @var boolean
*/
protected $startCopy = false;
/**
* The value for the pco_id field.
* @var int
*/
protected $pco_id;
/**
* The value for the pco_nombre field.
* @var string
*/
protected $pco_nombre;
/**
* The value for the pco_valor field.
* @var string
*/
protected $pco_valor;
/**
* The value for the pco_descripcion field.
* @var string
*/
protected $pco_descripcion;
/**
* 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 [pco_id] column value.
*
* @return int
*/
public function getPcoId()
{
return $this->pco_id;
}
/**
* Get the [pco_nombre] column value.
*
* @return string
*/
public function getPcoNombre()
{
return $this->pco_nombre;
}
/**
* Get the [pco_valor] column value.
*
* @return string
*/
public function getPcoValor()
{
return $this->pco_valor;
}
/**
* Get the [pco_descripcion] column value.
*
* @return string
*/
public function getPcoDescripcion()
{
return $this->pco_descripcion;
}
/**
* Set the value of [pco_id] column.
*
* @param int $v new value
* @return ParametroConfiguracion The current object (for fluent API support)
*/
public function setPcoId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->pco_id !== $v) {
$this->pco_id = $v;
$this->modifiedColumns[] = ParametroConfiguracionPeer::PCO_ID;
}
return $this;
} // setPcoId()
/**
* Set the value of [pco_nombre] column.
*
* @param string $v new value
* @return ParametroConfiguracion The current object (for fluent API support)
*/
public function setPcoNombre($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->pco_nombre !== $v) {
$this->pco_nombre = $v;
$this->modifiedColumns[] = ParametroConfiguracionPeer::PCO_NOMBRE;
}
return $this;
} // setPcoNombre()
/**
* Set the value of [pco_valor] column.
*
* @param string $v new value
* @return ParametroConfiguracion The current object (for fluent API support)
*/
public function setPcoValor($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->pco_valor !== $v) {
$this->pco_valor = $v;
$this->modifiedColumns[] = ParametroConfiguracionPeer::PCO_VALOR;
}
return $this;
} // setPcoValor()
/**
* Set the value of [pco_descripcion] column.
*
* @param string $v new value
* @return ParametroConfiguracion The current object (for fluent API support)
*/
public function setPcoDescripcion($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->pco_descripcion !== $v) {
$this->pco_descripcion = $v;
$this->modifiedColumns[] = ParametroConfiguracionPeer::PCO_DESCRIPCION;
}
return $this;
} // setPcoDescripcion()
/**
* Indicates whether the columns in this object are only set to default values.
*
* This method can be used in conjunction with isModified() to indicate whether an object is both
* modified _and_ has some values set which are non-default.
*
* @return boolean Whether the columns in this object are only been set with default values.
*/
public function hasOnlyDefaultValues()
{
// otherwise, everything was equal, so return true
return true;
} // hasOnlyDefaultValues()
/**
* Hydrates (populates) the object variables with values from the database resultset.
*
* An offset (0-based "start column") is specified so that objects can be hydrated
* with a subset of the columns in the resultset rows. This is needed, for example,
* for results of JOIN queries where the resultset row includes columns from two or
* more tables.
*
* @param array $row The row returned by PDOStatement->fetch(PDO::FETCH_NUM)
* @param int $startcol 0-based offset column which indicates which resultset column to start with.
* @param boolean $rehydrate Whether this object is being re-hydrated from the database.
* @return int next starting column
* @throws PropelException - Any caught Exception will be rewrapped as a PropelException.
*/
public function hydrate($row, $startcol = 0, $rehydrate = false)
{
try {
$this->pco_id = ($row[$startcol + 0] !== null) ? (int) $row[$startcol + 0] : null;
$this->pco_nombre = ($row[$startcol + 1] !== null) ? (string) $row[$startcol + 1] : null;
$this->pco_valor = ($row[$startcol + 2] !== null) ? (string) $row[$startcol + 2] : null;
$this->pco_descripcion = ($row[$startcol + 3] !== null) ? (string) $row[$startcol + 3] : null;
$this->resetModified();
$this->setNew(false);
if ($rehydrate) {
$this->ensureConsistency();
}
$this->postHydrate($row, $startcol, $rehydrate);
return $startcol + 4; // 4 = ParametroConfiguracionPeer::NUM_HYDRATE_COLUMNS.
} catch (Exception $e) {
throw new PropelException("Error populating ParametroConfiguracion object", $e);
}
}
/**
* Checks and repairs the internal consistency of the object.
*
* This method is executed after an already-instantiated object is re-hydrated
* from the database. It exists to check any foreign keys to make sure that
* the objects related to the current object are correct based on foreign key.
*
* You can override this method in the stub class, but you should always invoke
* the base method from the overridden method (i.e. parent::ensureConsistency()),
* in case your model changes.
*
* @throws PropelException
*/
public function ensureConsistency()
{
} // ensureConsistency
/**
* Reloads this object from datastore based on primary key and (optionally) resets all associated objects.
*
* This will only work if the object has been saved and has a valid primary key set.
*
* @param boolean $deep (optional) Whether to also de-associated any related objects.
* @param PropelPDO $con (optional) The PropelPDO connection to use.
* @return void
* @throws PropelException - if this object is deleted, unsaved or doesn't have pk match in db
*/
public function reload($deep = false, PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("Cannot reload a deleted object.");
}
if ($this->isNew()) {
throw new PropelException("Cannot reload an unsaved object.");
}
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// We don't need to alter the object instance pool; we're just modifying this instance
// already in the pool.
$stmt = ParametroConfiguracionPeer::doSelectStmt($this->buildPkeyCriteria(), $con);
$row = $stmt->fetch(PDO::FETCH_NUM);
$stmt->closeCursor();
if (!$row) {
throw new PropelException('Cannot find matching row in the database to reload object values.');
}
$this->hydrate($row, 0, true); // rehydrate
if ($deep) { // also de-associate any related objects?
} // if (deep)
}
/**
* Removes this object from datastore and sets delete attribute.
*
* @param PropelPDO $con
* @return void
* @throws PropelException
* @throws Exception
* @see BaseObject::setDeleted()
* @see BaseObject::isDeleted()
*/
public function delete(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("This object has already been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
try {
$deleteQuery = ParametroConfiguracionQuery::create()
->filterByPrimaryKey($this->getPrimaryKey());
$ret = $this->preDelete($con);
if ($ret) {
$deleteQuery->delete($con);
$this->postDelete($con);
$con->commit();
$this->setDeleted(true);
} else {
$con->commit();
}
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Persists this object to the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All modified related objects will also be persisted in the doSave()
* method. This method wraps all precipitate database operations in a
* single transaction.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @throws Exception
* @see doSave()
*/
public function save(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("You cannot save an object that has been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
$isInsert = $this->isNew();
try {
$ret = $this->preSave($con);
if ($isInsert) {
$ret = $ret && $this->preInsert($con);
} else {
$ret = $ret && $this->preUpdate($con);
}
if ($ret) {
$affectedRows = $this->doSave($con);
if ($isInsert) {
$this->postInsert($con);
} else {
$this->postUpdate($con);
}
$this->postSave($con);
ParametroConfiguracionPeer::addInstanceToPool($this);
} else {
$affectedRows = 0;
}
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs the work of inserting or updating the row in the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All related objects are also updated in this method.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @see save()
*/
protected function doSave(PropelPDO $con)
{
$affectedRows = 0; // initialize var to track total num of affected rows
if (!$this->alreadyInSave) {
$this->alreadyInSave = true;
if ($this->isNew() || $this->isModified()) {
// persist changes
if ($this->isNew()) {
$this->doInsert($con);
} else {
$this->doUpdate($con);
}
$affectedRows += 1;
$this->resetModified();
}
$this->alreadyInSave = false;
}
return $affectedRows;
} // doSave()
/**
* Insert the row in the database.
*
* @param PropelPDO $con
*
* @throws PropelException
* @see doSave()
*/
protected function doInsert(PropelPDO $con)
{
$modifiedColumns = array();
$index = 0;
$this->modifiedColumns[] = ParametroConfiguracionPeer::PCO_ID;
if (null !== $this->pco_id) {
throw new PropelException('Cannot insert a value for auto-increment primary key (' . ParametroConfiguracionPeer::PCO_ID . ')');
}
// check the columns in natural order for more readable SQL queries
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_ID)) {
$modifiedColumns[':p' . $index++] = '`pco_id`';
}
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_NOMBRE)) {
$modifiedColumns[':p' . $index++] = '`pco_nombre`';
}
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_VALOR)) {
$modifiedColumns[':p' . $index++] = '`pco_valor`';
}
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_DESCRIPCION)) {
$modifiedColumns[':p' . $index++] = '`pco_descripcion`';
}
$sql = sprintf(
'INSERT INTO `parametro_configuracion` (%s) VALUES (%s)',
implode(', ', $modifiedColumns),
implode(', ', array_keys($modifiedColumns))
);
try {
$stmt = $con->prepare($sql);
foreach ($modifiedColumns as $identifier => $columnName) {
switch ($columnName) {
case '`pco_id`':
$stmt->bindValue($identifier, $this->pco_id, PDO::PARAM_INT);
break;
case '`pco_nombre`':
$stmt->bindValue($identifier, $this->pco_nombre, PDO::PARAM_STR);
break;
case '`pco_valor`':
$stmt->bindValue($identifier, $this->pco_valor, PDO::PARAM_STR);
break;
case '`pco_descripcion`':
$stmt->bindValue($identifier, $this->pco_descripcion, PDO::PARAM_STR);
break;
}
}
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute INSERT statement [%s]', $sql), $e);
}
try {
$pk = $con->lastInsertId();
} catch (Exception $e) {
throw new PropelException('Unable to get autoincrement id.', $e);
}
$this->setPcoId($pk);
$this->setNew(false);
}
/**
* Update the row in the database.
*
* @param PropelPDO $con
*
* @see doSave()
*/
protected function doUpdate(PropelPDO $con)
{
$selectCriteria = $this->buildPkeyCriteria();
$valuesCriteria = $this->buildCriteria();
BasePeer::doUpdate($selectCriteria, $valuesCriteria, $con);
}
/**
* Array of ValidationFailed objects.
* @var array ValidationFailed[]
*/
protected $validationFailures = array();
/**
* Gets any ValidationFailed objects that resulted from last call to validate().
*
*
* @return array ValidationFailed[]
* @see validate()
*/
public function getValidationFailures()
{
return $this->validationFailures;
}
/**
* Validates the objects modified field values and all objects related to this table.
*
* If $columns is either a column name or an array of column names
* only those columns are validated.
*
* @param mixed $columns Column name or an array of column names.
* @return boolean Whether all columns pass validation.
* @see doValidate()
* @see getValidationFailures()
*/
public function validate($columns = null)
{
$res = $this->doValidate($columns);
if ($res === true) {
$this->validationFailures = array();
return true;
}
$this->validationFailures = $res;
return false;
}
/**
* This function performs the validation work for complex object models.
*
* In addition to checking the current object, all related objects will
* also be validated. If all pass then <code>true</code> is returned; otherwise
* an aggregated array of ValidationFailed objects will be returned.
*
* @param array $columns Array of column names to validate.
* @return mixed <code>true</code> if all validations pass; array of <code>ValidationFailed</code> objects otherwise.
*/
protected function doValidate($columns = null)
{
if (!$this->alreadyInValidation) {
$this->alreadyInValidation = true;
$retval = null;
$failureMap = array();
if (($retval = ParametroConfiguracionPeer::doValidate($this, $columns)) !== true) {
$failureMap = array_merge($failureMap, $retval);
}
$this->alreadyInValidation = false;
}
return (!empty($failureMap) ? $failureMap : true);
}
/**
* Retrieves a field from the object by name passed in as a string.
*
* @param string $name name
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return mixed Value of field.
*/
public function getByName($name, $type = BasePeer::TYPE_PHPNAME)
{
$pos = ParametroConfiguracionPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$field = $this->getByPosition($pos);
return $field;
}
/**
* Retrieves a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @return mixed Value of field at $pos
*/
public function getByPosition($pos)
{
switch ($pos) {
case 0:
return $this->getPcoId();
break;
case 1:
return $this->getPcoNombre();
break;
case 2:
return $this->getPcoValor();
break;
case 3:
return $this->getPcoDescripcion();
break;
default:
return null;
break;
} // switch()
}
/**
* Exports the object as an array.
*
* You can specify the key type of the array by passing one of the class
* type constants.
*
* @param string $keyType (optional) One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME.
* @param boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to true.
* @param array $alreadyDumpedObjects List of objects to skip to avoid recursion
*
* @return array an associative array containing the field names (as keys) and field values
*/
public function toArray($keyType = BasePeer::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array())
{
if (isset($alreadyDumpedObjects['ParametroConfiguracion'][$this->getPrimaryKey()])) {
return '*RECURSION*';
}
$alreadyDumpedObjects['ParametroConfiguracion'][$this->getPrimaryKey()] = true;
$keys = ParametroConfiguracionPeer::getFieldNames($keyType);
$result = array(
$keys[0] => $this->getPcoId(),
$keys[1] => $this->getPcoNombre(),
$keys[2] => $this->getPcoValor(),
$keys[3] => $this->getPcoDescripcion(),
);
$virtualColumns = $this->virtualColumns;
foreach ($virtualColumns as $key => $virtualColumn) {
$result[$key] = $virtualColumn;
}
return $result;
}
/**
* Sets a field from the object by name passed in as a string.
*
* @param string $name peer name
* @param mixed $value field value
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return void
*/
public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME)
{
$pos = ParametroConfiguracionPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$this->setByPosition($pos, $value);
}
/**
* Sets a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @param mixed $value field value
* @return void
*/
public function setByPosition($pos, $value)
{
switch ($pos) {
case 0:
$this->setPcoId($value);
break;
case 1:
$this->setPcoNombre($value);
break;
case 2:
$this->setPcoValor($value);
break;
case 3:
$this->setPcoDescripcion($value);
break;
} // switch()
}
/**
* Populates the object using an array.
*
* This is particularly useful when populating an object from one of the
* request arrays (e.g. $_POST). This method goes through the column
* names, checking to see whether a matching key exists in populated
* array. If so the setByName() method is called for that column.
*
* You can specify the key type of the array by additionally passing one
* of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* The default key type is the column's BasePeer::TYPE_PHPNAME
*
* @param array $arr An array to populate the object from.
* @param string $keyType The type of keys the array uses.
* @return void
*/
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
{
$keys = ParametroConfiguracionPeer::getFieldNames($keyType);
if (array_key_exists($keys[0], $arr)) $this->setPcoId($arr[$keys[0]]);
if (array_key_exists($keys[1], $arr)) $this->setPcoNombre($arr[$keys[1]]);
if (array_key_exists($keys[2], $arr)) $this->setPcoValor($arr[$keys[2]]);
if (array_key_exists($keys[3], $arr)) $this->setPcoDescripcion($arr[$keys[3]]);
}
/**
* Build a Criteria object containing the values of all modified columns in this object.
*
* @return Criteria The Criteria object containing all modified values.
*/
public function buildCriteria()
{
$criteria = new Criteria(ParametroConfiguracionPeer::DATABASE_NAME);
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_ID)) $criteria->add(ParametroConfiguracionPeer::PCO_ID, $this->pco_id);
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_NOMBRE)) $criteria->add(ParametroConfiguracionPeer::PCO_NOMBRE, $this->pco_nombre);
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_VALOR)) $criteria->add(ParametroConfiguracionPeer::PCO_VALOR, $this->pco_valor);
if ($this->isColumnModified(ParametroConfiguracionPeer::PCO_DESCRIPCION)) $criteria->add(ParametroConfiguracionPeer::PCO_DESCRIPCION, $this->pco_descripcion);
return $criteria;
}
/**
* Builds a Criteria object containing the primary key for this object.
*
* Unlike buildCriteria() this method includes the primary key values regardless
* of whether or not they have been modified.
*
* @return Criteria The Criteria object containing value(s) for primary key(s).
*/
public function buildPkeyCriteria()
{
$criteria = new Criteria(ParametroConfiguracionPeer::DATABASE_NAME);
$criteria->add(ParametroConfiguracionPeer::PCO_ID, $this->pco_id);
return $criteria;
}
/**
* Returns the primary key for this object (row).
* @return int
*/
public function getPrimaryKey()
{
return $this->getPcoId();
}
/**
* Generic method to set the primary key (pco_id column).
*
* @param int $key Primary key.
* @return void
*/
public function setPrimaryKey($key)
{
$this->setPcoId($key);
}
/**
* Returns true if the primary key for this object is null.
* @return boolean
*/
public function isPrimaryKeyNull()
{
return null === $this->getPcoId();
}
/**
* Sets contents of passed object to values from current object.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param object $copyObj An object of ParametroConfiguracion (or compatible) type.
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @param boolean $makeNew Whether to reset autoincrement PKs and make the object new.
* @throws PropelException
*/
public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
{
$copyObj->setPcoNombre($this->getPcoNombre());
$copyObj->setPcoValor($this->getPcoValor());
$copyObj->setPcoDescripcion($this->getPcoDescripcion());
if ($makeNew) {
$copyObj->setNew(true);
$copyObj->setPcoId(NULL); // this is a auto-increment column, so set to default value
}
}
/**
* Makes a copy of this object that will be inserted as a new row in table when saved.
* It creates a new object filling in the simple attributes, but skipping any primary
* keys that are defined for the table.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @return ParametroConfiguracion Clone of current object.
* @throws PropelException
*/
public function copy($deepCopy = false)
{
// we use get_class(), because this might be a subclass
$clazz = get_class($this);
$copyObj = new $clazz();
$this->copyInto($copyObj, $deepCopy);
return $copyObj;
}
/**
* Returns a peer instance associated with this om.
*
* Since Peer classes are not to have any instance attributes, this method returns the
* same instance for all member of this class. The method could therefore
* be static, but this would prevent one from overriding the behavior.
*
* @return ParametroConfiguracionPeer
*/
public function getPeer()
{
if (self::$peer === null) {
self::$peer = new ParametroConfiguracionPeer();
}
return self::$peer;
}
/**
* Clears the current object and sets all attributes to their default values
*/
public function clear()
{
$this->pco_id = null;
$this->pco_nombre = null;
$this->pco_valor = null;
$this->pco_descripcion = null;
$this->alreadyInSave = false;
$this->alreadyInValidation = false;
$this->alreadyInClearAllReferencesDeep = false;
$this->clearAllReferences();
$this->resetModified();
$this->setNew(true);
$this->setDeleted(false);
}
/**
* Resets all references to other model objects or collections of model objects.
*
* This method is a user-space workaround for PHP's inability to garbage collect
* objects with circular references (even in PHP 5.3). This is currently necessary
* when using Propel in certain daemon or large-volume/high-memory operations.
*
* @param boolean $deep Whether to also clear the references on all referrer objects.
*/
public function clearAllReferences($deep = false)
{
if ($deep && !$this->alreadyInClearAllReferencesDeep) {
$this->alreadyInClearAllReferencesDeep = true;
$this->alreadyInClearAllReferencesDeep = false;
} // if ($deep)
}
/**
* return the string representation of this object
*
* @return string
*/
public function __toString()
{
return (string) $this->exportTo(ParametroConfiguracionPeer::DEFAULT_STRING_FORMAT);
}
/**
* return true is the object is in saving state
*
* @return boolean
*/
public function isAlreadyInSave()
{
return $this->alreadyInSave;
}
}
<?php
namespace AppBundle\Model\om;
use \BasePeer;
use \Criteria;
use \PDO;
use \PDOStatement;
use \Propel;
use \PropelException;
use \PropelPDO;
use AppBundle\Model\ParametroConfiguracion;
use AppBundle\Model\ParametroConfiguracionPeer;
use AppBundle\Model\map\ParametroConfiguracionTableMap;
abstract class BaseParametroConfiguracionPeer
{
/** the default database name for this class */
const DATABASE_NAME = 'conn1';
/** the table name for this class */
const TABLE_NAME = 'parametro_configuracion';
/** the related Propel class for this table */
const OM_CLASS = 'AppBundle\\Model\\ParametroConfiguracion';
/** the related TableMap class for this table */
const TM_CLASS = 'AppBundle\\Model\\map\\ParametroConfiguracionTableMap';
/** The total number of columns. */
const NUM_COLUMNS = 4;
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS) */
const NUM_HYDRATE_COLUMNS = 4;
/** the column name for the pco_id field */
const PCO_ID = 'parametro_configuracion.pco_id';
/** the column name for the pco_nombre field */
const PCO_NOMBRE = 'parametro_configuracion.pco_nombre';
/** the column name for the pco_valor field */
const PCO_VALOR = 'parametro_configuracion.pco_valor';
/** the column name for the pco_descripcion field */
const PCO_DESCRIPCION = 'parametro_configuracion.pco_descripcion';
/** The default string format for model objects of the related table **/
const DEFAULT_STRING_FORMAT = 'YAML';
/**
* An identity map to hold any loaded instances of ParametroConfiguracion objects.
* This must be public so that other peer classes can access this when hydrating from JOIN
* queries.
* @var array ParametroConfiguracion[]
*/
public static $instances = array();
/**
* holds an array of fieldnames
*
* first dimension keys are the type constants
* e.g. ParametroConfiguracionPeer::$fieldNames[ParametroConfiguracionPeer::TYPE_PHPNAME][0] = 'Id'
*/
protected static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('PcoId', 'PcoNombre', 'PcoValor', 'PcoDescripcion', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('pcoId', 'pcoNombre', 'pcoValor', 'pcoDescripcion', ),
BasePeer::TYPE_COLNAME => array (ParametroConfiguracionPeer::PCO_ID, ParametroConfiguracionPeer::PCO_NOMBRE, ParametroConfiguracionPeer::PCO_VALOR, ParametroConfiguracionPeer::PCO_DESCRIPCION, ),
BasePeer::TYPE_RAW_COLNAME => array ('PCO_ID', 'PCO_NOMBRE', 'PCO_VALOR', 'PCO_DESCRIPCION', ),
BasePeer::TYPE_FIELDNAME => array ('pco_id', 'pco_nombre', 'pco_valor', 'pco_descripcion', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, )
);
/**
* holds an array of keys for quick access to the fieldnames array
*
* first dimension keys are the type constants
* e.g. ParametroConfiguracionPeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/
protected static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('PcoId' => 0, 'PcoNombre' => 1, 'PcoValor' => 2, 'PcoDescripcion' => 3, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('pcoId' => 0, 'pcoNombre' => 1, 'pcoValor' => 2, 'pcoDescripcion' => 3, ),
BasePeer::TYPE_COLNAME => array (ParametroConfiguracionPeer::PCO_ID => 0, ParametroConfiguracionPeer::PCO_NOMBRE => 1, ParametroConfiguracionPeer::PCO_VALOR => 2, ParametroConfiguracionPeer::PCO_DESCRIPCION => 3, ),
BasePeer::TYPE_RAW_COLNAME => array ('PCO_ID' => 0, 'PCO_NOMBRE' => 1, 'PCO_VALOR' => 2, 'PCO_DESCRIPCION' => 3, ),
BasePeer::TYPE_FIELDNAME => array ('pco_id' => 0, 'pco_nombre' => 1, 'pco_valor' => 2, 'pco_descripcion' => 3, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, )
);
/**
* Translates a fieldname to another type
*
* @param string $name field name
* @param string $fromType One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @param string $toType One of the class type constants
* @return string translated name of the field.
* @throws PropelException - if the specified name could not be found in the fieldname mappings.
*/
public static function translateFieldName($name, $fromType, $toType)
{
$toNames = ParametroConfiguracionPeer::getFieldNames($toType);
$key = isset(ParametroConfiguracionPeer::$fieldKeys[$fromType][$name]) ? ParametroConfiguracionPeer::$fieldKeys[$fromType][$name] : null;
if ($key === null) {
throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(ParametroConfiguracionPeer::$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
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @return array A list of field names
* @throws PropelException - if the type is not valid.
*/
public static function getFieldNames($type = BasePeer::TYPE_PHPNAME)
{
if (!array_key_exists($type, ParametroConfiguracionPeer::$fieldNames)) {
throw new PropelException('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.');
}
return ParametroConfiguracionPeer::$fieldNames[$type];
}
/**
* Convenience method which changes table.column to alias.column.
*
* Using this method you can maintain SQL abstraction while using column aliases.
* <code>
* $c->addAlias("alias1", TablePeer::TABLE_NAME);
* $c->addJoin(TablePeer::alias("alias1", TablePeer::PRIMARY_KEY_COLUMN), TablePeer::PRIMARY_KEY_COLUMN);
* </code>
* @param string $alias The alias for the current table.
* @param string $column The column name for current table. (i.e. ParametroConfiguracionPeer::COLUMN_NAME).
* @return string
*/
public static function alias($alias, $column)
{
return str_replace(ParametroConfiguracionPeer::TABLE_NAME.'.', $alias.'.', $column);
}
/**
* Add all the columns needed to create a new object.
*
* Note: any columns that were marked with lazyLoad="true" in the
* XML schema will not be added to the select list and only loaded
* on demand.
*
* @param Criteria $criteria object containing the columns to add.
* @param string $alias optional table alias
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function addSelectColumns(Criteria $criteria, $alias = null)
{
if (null === $alias) {
$criteria->addSelectColumn(ParametroConfiguracionPeer::PCO_ID);
$criteria->addSelectColumn(ParametroConfiguracionPeer::PCO_NOMBRE);
$criteria->addSelectColumn(ParametroConfiguracionPeer::PCO_VALOR);
$criteria->addSelectColumn(ParametroConfiguracionPeer::PCO_DESCRIPCION);
} else {
$criteria->addSelectColumn($alias . '.pco_id');
$criteria->addSelectColumn($alias . '.pco_nombre');
$criteria->addSelectColumn($alias . '.pco_valor');
$criteria->addSelectColumn($alias . '.pco_descripcion');
}
}
/**
* Returns the number of rows matching criteria.
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @return int Number of matching rows.
*/
public static function doCount(Criteria $criteria, $distinct = false, PropelPDO $con = null)
{
// we may modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(ParametroConfiguracionPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
ParametroConfiguracionPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
$criteria->setDbName(ParametroConfiguracionPeer::DATABASE_NAME); // Set the correct dbName
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// BasePeer returns a PDOStatement
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects one object from the DB.
*
* @param Criteria $criteria object used to create the SELECT statement.
* @param PropelPDO $con
* @return ParametroConfiguracion
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectOne(Criteria $criteria, PropelPDO $con = null)
{
$critcopy = clone $criteria;
$critcopy->setLimit(1);
$objects = ParametroConfiguracionPeer::doSelect($critcopy, $con);
if ($objects) {
return $objects[0];
}
return null;
}
/**
* Selects several row from the DB.
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con
* @return array Array of selected Objects
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelect(Criteria $criteria, PropelPDO $con = null)
{
return ParametroConfiguracionPeer::populateObjects(ParametroConfiguracionPeer::doSelectStmt($criteria, $con));
}
/**
* Prepares the Criteria object and uses the parent doSelect() method to execute a PDOStatement.
*
* Use this method directly if you want to work with an executed statement directly (for example
* to perform your own object hydration).
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con The connection to use
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return PDOStatement The executed PDOStatement object.
* @see BasePeer::doSelect()
*/
public static function doSelectStmt(Criteria $criteria, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
if (!$criteria->hasSelectClause()) {
$criteria = clone $criteria;
ParametroConfiguracionPeer::addSelectColumns($criteria);
}
// Set the correct dbName
$criteria->setDbName(ParametroConfiguracionPeer::DATABASE_NAME);
// BasePeer returns a PDOStatement
return BasePeer::doSelect($criteria, $con);
}
/**
* Adds an object to the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doSelect*()
* methods in your stub classes -- you may need to explicitly add objects
* to the cache in order to ensure that the same objects are always returned by doSelect*()
* and retrieveByPK*() calls.
*
* @param ParametroConfiguracion $obj A ParametroConfiguracion object.
* @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
*/
public static function addInstanceToPool($obj, $key = null)
{
if (Propel::isInstancePoolingEnabled()) {
if ($key === null) {
$key = (string) $obj->getPcoId();
} // if key === null
ParametroConfiguracionPeer::$instances[$key] = $obj;
}
}
/**
* Removes an object from the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doDelete
* methods in your stub classes -- you may need to explicitly remove objects
* from the cache in order to prevent returning objects that no longer exist.
*
* @param mixed $value A ParametroConfiguracion object or a primary key value.
*
* @return void
* @throws PropelException - if the value is invalid.
*/
public static function removeInstanceFromPool($value)
{
if (Propel::isInstancePoolingEnabled() && $value !== null) {
if (is_object($value) && $value instanceof ParametroConfiguracion) {
$key = (string) $value->getPcoId();
} elseif (is_scalar($value)) {
// assume we've been passed a primary key
$key = (string) $value;
} else {
$e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or ParametroConfiguracion object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
throw $e;
}
unset(ParametroConfiguracionPeer::$instances[$key]);
}
} // removeInstanceFromPool()
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param string $key The key (@see getPrimaryKeyHash()) for this instance.
* @return ParametroConfiguracion Found object or null if 1) no instance exists for specified key or 2) instance pooling has been disabled.
* @see getPrimaryKeyHash()
*/
public static function getInstanceFromPool($key)
{
if (Propel::isInstancePoolingEnabled()) {
if (isset(ParametroConfiguracionPeer::$instances[$key])) {
return ParametroConfiguracionPeer::$instances[$key];
}
}
return null; // just to be explicit
}
/**
* Clear the instance pool.
*
* @return void
*/
public static function clearInstancePool($and_clear_all_references = false)
{
if ($and_clear_all_references) {
foreach (ParametroConfiguracionPeer::$instances as $instance) {
$instance->clearAllReferences(true);
}
}
ParametroConfiguracionPeer::$instances = array();
}
/**
* Method to invalidate the instance pool of all tables related to parametro_configuracion
* by a foreign key with ON DELETE CASCADE
*/
public static function clearRelatedInstancePool()
{
}
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return string A string version of PK or null if the components of primary key in result array are all null.
*/
public static function getPrimaryKeyHashFromRow($row, $startcol = 0)
{
// If the PK cannot be derived from the row, return null.
if ($row[$startcol] === null) {
return null;
}
return (string) $row[$startcol];
}
/**
* Retrieves the primary key from the DB resultset row
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, an array of the primary key columns will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return mixed The primary key of the row
*/
public static function getPrimaryKeyFromRow($row, $startcol = 0)
{
return (int) $row[$startcol];
}
/**
* The returned array will contain objects of the default type or
* objects that inherit from the default.
*
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function populateObjects(PDOStatement $stmt)
{
$results = array();
// set the class once to avoid overhead in the loop
$cls = ParametroConfiguracionPeer::getOMClass();
// populate the object(s)
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key = ParametroConfiguracionPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj = ParametroConfiguracionPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, 0, true); // rehydrate
$results[] = $obj;
} else {
$obj = new $cls();
$obj->hydrate($row);
$results[] = $obj;
ParametroConfiguracionPeer::addInstanceToPool($obj, $key);
} // if key exists
}
$stmt->closeCursor();
return $results;
}
/**
* Populates an object of the default type or an object that inherit from the default.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return array (ParametroConfiguracion object, last column rank)
*/
public static function populateObject($row, $startcol = 0)
{
$key = ParametroConfiguracionPeer::getPrimaryKeyHashFromRow($row, $startcol);
if (null !== ($obj = ParametroConfiguracionPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, $startcol, true); // rehydrate
$col = $startcol + ParametroConfiguracionPeer::NUM_HYDRATE_COLUMNS;
} else {
$cls = ParametroConfiguracionPeer::OM_CLASS;
$obj = new $cls();
$col = $obj->hydrate($row, $startcol);
ParametroConfiguracionPeer::addInstanceToPool($obj, $key);
}
return array($obj, $col);
}
/**
* Returns the TableMap related to this peer.
* This method is not needed for general use but a specific application could have a need.
* @return TableMap
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function getTableMap()
{
return Propel::getDatabaseMap(ParametroConfiguracionPeer::DATABASE_NAME)->getTable(ParametroConfiguracionPeer::TABLE_NAME);
}
/**
* Add a TableMap instance to the database for this peer class.
*/
public static function buildTableMap()
{
$dbMap = Propel::getDatabaseMap(BaseParametroConfiguracionPeer::DATABASE_NAME);
if (!$dbMap->hasTable(BaseParametroConfiguracionPeer::TABLE_NAME)) {
$dbMap->addTableObject(new \AppBundle\Model\map\ParametroConfiguracionTableMap());
}
}
/**
* The class that the Peer will make instances of.
*
*
* @return string ClassName
*/
public static function getOMClass($row = 0, $colnum = 0)
{
return ParametroConfiguracionPeer::OM_CLASS;
}
/**
* Performs an INSERT on the database, given a ParametroConfiguracion or Criteria object.
*
* @param mixed $values Criteria or ParametroConfiguracion object containing data that is used to create the INSERT statement.
* @param PropelPDO $con the PropelPDO connection to use
* @return mixed The new primary key.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doInsert($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
} else {
$criteria = $values->buildCriteria(); // build Criteria from ParametroConfiguracion object
}
if ($criteria->containsKey(ParametroConfiguracionPeer::PCO_ID) && $criteria->keyContainsValue(ParametroConfiguracionPeer::PCO_ID) ) {
throw new PropelException('Cannot insert a value for auto-increment primary key ('.ParametroConfiguracionPeer::PCO_ID.')');
}
// Set the correct dbName
$criteria->setDbName(ParametroConfiguracionPeer::DATABASE_NAME);
try {
// use transaction because $criteria could contain info
// for more than one table (I guess, conceivably)
$con->beginTransaction();
$pk = BasePeer::doInsert($criteria, $con);
$con->commit();
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
return $pk;
}
/**
* Performs an UPDATE on the database, given a ParametroConfiguracion or Criteria object.
*
* @param mixed $values Criteria or ParametroConfiguracion object containing data that is used to create the UPDATE statement.
* @param PropelPDO $con The connection to use (specify PropelPDO connection object to exert more control over transactions).
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doUpdate($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$selectCriteria = new Criteria(ParametroConfiguracionPeer::DATABASE_NAME);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$comparison = $criteria->getComparison(ParametroConfiguracionPeer::PCO_ID);
$value = $criteria->remove(ParametroConfiguracionPeer::PCO_ID);
if ($value) {
$selectCriteria->add(ParametroConfiguracionPeer::PCO_ID, $value, $comparison);
} else {
$selectCriteria->setPrimaryTableName(ParametroConfiguracionPeer::TABLE_NAME);
}
} else { // $values is ParametroConfiguracion object
$criteria = $values->buildCriteria(); // gets full criteria
$selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s)
}
// set the correct dbName
$criteria->setDbName(ParametroConfiguracionPeer::DATABASE_NAME);
return BasePeer::doUpdate($selectCriteria, $criteria, $con);
}
/**
* Deletes all rows from the parametro_configuracion table.
*
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException
*/
public static function doDeleteAll(PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDeleteAll(ParametroConfiguracionPeer::TABLE_NAME, $con, ParametroConfiguracionPeer::DATABASE_NAME);
// Because this db requires some delete cascade/set null emulation, we have to
// clear the cached instance *after* the emulation has happened (since
// instances get re-added by the select statement contained therein).
ParametroConfiguracionPeer::clearInstancePool();
ParametroConfiguracionPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs a DELETE on the database, given a ParametroConfiguracion or Criteria object OR a primary key value.
*
* @param mixed $values Criteria or ParametroConfiguracion object or primary key or array of primary keys
* which is used to create the DELETE statement
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
* if supported by native driver or if emulated using Propel.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doDelete($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
// invalidate the cache for all objects of this type, since we have no
// way of knowing (without running a query) what objects should be invalidated
// from the cache based on this Criteria.
ParametroConfiguracionPeer::clearInstancePool();
// rename for clarity
$criteria = clone $values;
} elseif ($values instanceof ParametroConfiguracion) { // it's a model object
// invalidate the cache for this single object
ParametroConfiguracionPeer::removeInstanceFromPool($values);
// create criteria based on pk values
$criteria = $values->buildPkeyCriteria();
} else { // it's a primary key, or an array of pks
$criteria = new Criteria(ParametroConfiguracionPeer::DATABASE_NAME);
$criteria->add(ParametroConfiguracionPeer::PCO_ID, (array) $values, Criteria::IN);
// invalidate the cache for this object(s)
foreach ((array) $values as $singleval) {
ParametroConfiguracionPeer::removeInstanceFromPool($singleval);
}
}
// Set the correct dbName
$criteria->setDbName(ParametroConfiguracionPeer::DATABASE_NAME);
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDelete($criteria, $con);
ParametroConfiguracionPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Validates all modified columns of given ParametroConfiguracion object.
* If parameter $columns is either a single column name or an array of column names
* than only those columns are validated.
*
* NOTICE: This does not apply to primary or foreign keys for now.
*
* @param ParametroConfiguracion $obj The object to validate.
* @param mixed $cols Column name or array of column names.
*
* @return mixed TRUE if all columns are valid or the error message of the first invalid column.
*/
public static function doValidate($obj, $cols = null)
{
$columns = array();
if ($cols) {
$dbMap = Propel::getDatabaseMap(ParametroConfiguracionPeer::DATABASE_NAME);
$tableMap = $dbMap->getTable(ParametroConfiguracionPeer::TABLE_NAME);
if (! is_array($cols)) {
$cols = array($cols);
}
foreach ($cols as $colName) {
if ($tableMap->hasColumn($colName)) {
$get = 'get' . $tableMap->getColumn($colName)->getPhpName();
$columns[$colName] = $obj->$get();
}
}
} else {
}
return BasePeer::doValidate(ParametroConfiguracionPeer::DATABASE_NAME, ParametroConfiguracionPeer::TABLE_NAME, $columns);
}
/**
* Retrieve a single object by pkey.
*
* @param int $pk the primary key.
* @param PropelPDO $con the connection to use
* @return ParametroConfiguracion
*/
public static function retrieveByPK($pk, PropelPDO $con = null)
{
if (null !== ($obj = ParametroConfiguracionPeer::getInstanceFromPool((string) $pk))) {
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria = new Criteria(ParametroConfiguracionPeer::DATABASE_NAME);
$criteria->add(ParametroConfiguracionPeer::PCO_ID, $pk);
$v = ParametroConfiguracionPeer::doSelect($criteria, $con);
return !empty($v) > 0 ? $v[0] : null;
}
/**
* Retrieve multiple objects by pkey.
*
* @param array $pks List of primary keys
* @param PropelPDO $con the connection to use
* @return ParametroConfiguracion[]
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function retrieveByPKs($pks, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$objs = null;
if (empty($pks)) {
$objs = array();
} else {
$criteria = new Criteria(ParametroConfiguracionPeer::DATABASE_NAME);
$criteria->add(ParametroConfiguracionPeer::PCO_ID, $pks, Criteria::IN);
$objs = ParametroConfiguracionPeer::doSelect($criteria, $con);
}
return $objs;
}
} // BaseParametroConfiguracionPeer
// This is the static code needed to register the TableMap for this table with the main Propel class.
//
BaseParametroConfiguracionPeer::buildTableMap();
<?php
namespace AppBundle\Model\om;
use \Criteria;
use \Exception;
use \ModelCriteria;
use \PDO;
use \Propel;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use AppBundle\Model\ParametroConfiguracion;
use AppBundle\Model\ParametroConfiguracionPeer;
use AppBundle\Model\ParametroConfiguracionQuery;
/**
* @method ParametroConfiguracionQuery orderByPcoId($order = Criteria::ASC) Order by the pco_id column
* @method ParametroConfiguracionQuery orderByPcoNombre($order = Criteria::ASC) Order by the pco_nombre column
* @method ParametroConfiguracionQuery orderByPcoValor($order = Criteria::ASC) Order by the pco_valor column
* @method ParametroConfiguracionQuery orderByPcoDescripcion($order = Criteria::ASC) Order by the pco_descripcion column
*
* @method ParametroConfiguracionQuery groupByPcoId() Group by the pco_id column
* @method ParametroConfiguracionQuery groupByPcoNombre() Group by the pco_nombre column
* @method ParametroConfiguracionQuery groupByPcoValor() Group by the pco_valor column
* @method ParametroConfiguracionQuery groupByPcoDescripcion() Group by the pco_descripcion column
*
* @method ParametroConfiguracionQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method ParametroConfiguracionQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method ParametroConfiguracionQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method ParametroConfiguracion findOne(PropelPDO $con = null) Return the first ParametroConfiguracion matching the query
* @method ParametroConfiguracion findOneOrCreate(PropelPDO $con = null) Return the first ParametroConfiguracion matching the query, or a new ParametroConfiguracion object populated from the query conditions when no match is found
*
* @method ParametroConfiguracion findOneByPcoNombre(string $pco_nombre) Return the first ParametroConfiguracion filtered by the pco_nombre column
* @method ParametroConfiguracion findOneByPcoValor(string $pco_valor) Return the first ParametroConfiguracion filtered by the pco_valor column
* @method ParametroConfiguracion findOneByPcoDescripcion(string $pco_descripcion) Return the first ParametroConfiguracion filtered by the pco_descripcion column
*
* @method array findByPcoId(int $pco_id) Return ParametroConfiguracion objects filtered by the pco_id column
* @method array findByPcoNombre(string $pco_nombre) Return ParametroConfiguracion objects filtered by the pco_nombre column
* @method array findByPcoValor(string $pco_valor) Return ParametroConfiguracion objects filtered by the pco_valor column
* @method array findByPcoDescripcion(string $pco_descripcion) Return ParametroConfiguracion objects filtered by the pco_descripcion column
*/
abstract class BaseParametroConfiguracionQuery extends ModelCriteria
{
/**
* Initializes internal state of BaseParametroConfiguracionQuery object.
*
* @param string $dbName The dabase name
* @param string $modelName The phpName of a model, e.g. 'Book'
* @param string $modelAlias The alias for the model in this query, e.g. 'b'
*/
public function __construct($dbName = null, $modelName = null, $modelAlias = null)
{
if (null === $dbName) {
$dbName = 'conn1';
}
if (null === $modelName) {
$modelName = 'AppBundle\\Model\\ParametroConfiguracion';
}
parent::__construct($dbName, $modelName, $modelAlias);
}
/**
* Returns a new ParametroConfiguracionQuery object.
*
* @param string $modelAlias The alias of a model in the query
* @param ParametroConfiguracionQuery|Criteria $criteria Optional Criteria to build the query from
*
* @return ParametroConfiguracionQuery
*/
public static function create($modelAlias = null, $criteria = null)
{
if ($criteria instanceof ParametroConfiguracionQuery) {
return $criteria;
}
$query = new ParametroConfiguracionQuery(null, null, $modelAlias);
if ($criteria instanceof Criteria) {
$query->mergeWith($criteria);
}
return $query;
}
/**
* Find object by primary key.
* Propel uses the instance pool to skip the database if the object exists.
* Go fast if the query is untouched.
*
* <code>
* $obj = $c->findPk(12, $con);
* </code>
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return ParametroConfiguracion|ParametroConfiguracion[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if ((null !== ($obj = ParametroConfiguracionPeer::getInstanceFromPool((string) $key))) && !$this->formatter) {
// the object is already in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(ParametroConfiguracionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
if ($this->formatter || $this->modelAlias || $this->with || $this->select
|| $this->selectColumns || $this->asColumns || $this->selectModifiers
|| $this->map || $this->having || $this->joins) {
return $this->findPkComplex($key, $con);
} else {
return $this->findPkSimple($key, $con);
}
}
/**
* Alias of findPk to use instance pooling
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return ParametroConfiguracion A model object, or null if the key is not found
* @throws PropelException
*/
public function findOneByPcoId($key, $con = null)
{
return $this->findPk($key, $con);
}
/**
* Find object by primary key using raw SQL to go fast.
* Bypass doSelect() and the object formatter by using generated code.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return ParametroConfiguracion A model object, or null if the key is not found
* @throws PropelException
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `pco_id`, `pco_nombre`, `pco_valor`, `pco_descripcion` FROM `parametro_configuracion` WHERE `pco_id` = :p0';
try {
$stmt = $con->prepare($sql);
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
}
$obj = null;
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$obj = new ParametroConfiguracion();
$obj->hydrate($row);
ParametroConfiguracionPeer::addInstanceToPool($obj, (string) $key);
}
$stmt->closeCursor();
return $obj;
}
/**
* Find object by primary key.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return ParametroConfiguracion|ParametroConfiguracion[]|mixed the result, formatted by the current formatter
*/
protected function findPkComplex($key, $con)
{
// As the query uses a PK condition, no limit(1) is necessary.
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKey($key)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
}
/**
* Find objects by primary key
* <code>
* $objs = $c->findPks(array(12, 56, 832), $con);
* </code>
* @param array $keys Primary keys to use for the query
* @param PropelPDO $con an optional connection object
*
* @return PropelObjectCollection|ParametroConfiguracion[]|mixed the list of results, formatted by the current formatter
*/
public function findPks($keys, $con = null)
{
if ($con === null) {
$con = Propel::getConnection($this->getDbName(), Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKeys($keys)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->format($stmt);
}
/**
* Filter the query by primary key
*
* @param mixed $key Primary key to use for the query
*
* @return ParametroConfiguracionQuery The current query, for fluid interface
*/
public function filterByPrimaryKey($key)
{
return $this->addUsingAlias(ParametroConfiguracionPeer::PCO_ID, $key, Criteria::EQUAL);
}
/**
* Filter the query by a list of primary keys
*
* @param array $keys The list of primary key to use for the query
*
* @return ParametroConfiguracionQuery The current query, for fluid interface
*/
public function filterByPrimaryKeys($keys)
{
return $this->addUsingAlias(ParametroConfiguracionPeer::PCO_ID, $keys, Criteria::IN);
}
/**
* Filter the query on the pco_id column
*
* Example usage:
* <code>
* $query->filterByPcoId(1234); // WHERE pco_id = 1234
* $query->filterByPcoId(array(12, 34)); // WHERE pco_id IN (12, 34)
* $query->filterByPcoId(array('min' => 12)); // WHERE pco_id >= 12
* $query->filterByPcoId(array('max' => 12)); // WHERE pco_id <= 12
* </code>
*
* @param mixed $pcoId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ParametroConfiguracionQuery The current query, for fluid interface
*/
public function filterByPcoId($pcoId = null, $comparison = null)
{
if (is_array($pcoId)) {
$useMinMax = false;
if (isset($pcoId['min'])) {
$this->addUsingAlias(ParametroConfiguracionPeer::PCO_ID, $pcoId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($pcoId['max'])) {
$this->addUsingAlias(ParametroConfiguracionPeer::PCO_ID, $pcoId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(ParametroConfiguracionPeer::PCO_ID, $pcoId, $comparison);
}
/**
* Filter the query on the pco_nombre column
*
* Example usage:
* <code>
* $query->filterByPcoNombre('fooValue'); // WHERE pco_nombre = 'fooValue'
* $query->filterByPcoNombre('%fooValue%'); // WHERE pco_nombre LIKE '%fooValue%'
* </code>
*
* @param string $pcoNombre The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ParametroConfiguracionQuery The current query, for fluid interface
*/
public function filterByPcoNombre($pcoNombre = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($pcoNombre)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $pcoNombre)) {
$pcoNombre = str_replace('*', '%', $pcoNombre);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(ParametroConfiguracionPeer::PCO_NOMBRE, $pcoNombre, $comparison);
}
/**
* Filter the query on the pco_valor column
*
* Example usage:
* <code>
* $query->filterByPcoValor('fooValue'); // WHERE pco_valor = 'fooValue'
* $query->filterByPcoValor('%fooValue%'); // WHERE pco_valor LIKE '%fooValue%'
* </code>
*
* @param string $pcoValor The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ParametroConfiguracionQuery The current query, for fluid interface
*/
public function filterByPcoValor($pcoValor = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($pcoValor)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $pcoValor)) {
$pcoValor = str_replace('*', '%', $pcoValor);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(ParametroConfiguracionPeer::PCO_VALOR, $pcoValor, $comparison);
}
/**
* Filter the query on the pco_descripcion column
*
* Example usage:
* <code>
* $query->filterByPcoDescripcion('fooValue'); // WHERE pco_descripcion = 'fooValue'
* $query->filterByPcoDescripcion('%fooValue%'); // WHERE pco_descripcion LIKE '%fooValue%'
* </code>
*
* @param string $pcoDescripcion The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ParametroConfiguracionQuery The current query, for fluid interface
*/
public function filterByPcoDescripcion($pcoDescripcion = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($pcoDescripcion)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $pcoDescripcion)) {
$pcoDescripcion = str_replace('*', '%', $pcoDescripcion);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(ParametroConfiguracionPeer::PCO_DESCRIPCION, $pcoDescripcion, $comparison);
}
/**
* Exclude object from result
*
* @param ParametroConfiguracion $parametroConfiguracion Object to remove from the list of results
*
* @return ParametroConfiguracionQuery The current query, for fluid interface
*/
public function prune($parametroConfiguracion = null)
{
if ($parametroConfiguracion) {
$this->addUsingAlias(ParametroConfiguracionPeer::PCO_ID, $parametroConfiguracion->getPcoId(), Criteria::NOT_EQUAL);
}
return $this;
}
}
<?php
namespace AppBundle\Model\om;
use \BaseObject;
use \BasePeer;
use \Criteria;
use \DateTime;
use \Exception;
use \PDO;
use \Persistent;
use \Propel;
use \PropelCollection;
use \PropelDateTime;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use AppBundle\Model\EnvioCorreoUsuario;
use AppBundle\Model\EnvioCorreoUsuarioQuery;
use AppBundle\Model\UsuarioNutrapharm;
use AppBundle\Model\UsuarioNutrapharmPeer;
use AppBundle\Model\UsuarioNutrapharmQuery;
abstract class BaseUsuarioNutrapharm extends BaseObject implements Persistent
{
/**
* Peer class name
*/
const PEER = 'AppBundle\\Model\\UsuarioNutrapharmPeer';
/**
* The Peer class.
* Instance provides a convenient way of calling static methods on a class
* that calling code may not be able to identify.
* @var UsuarioNutrapharmPeer
*/
protected static $peer;
/**
* The flag var to prevent infinite loop in deep copy
* @var boolean
*/
protected $startCopy = false;
/**
* The value for the unu_id field.
* @var int
*/
protected $unu_id;
/**
* The value for the unu_ua field.
* @var string
*/
protected $unu_ua;
/**
* The value for the unu_ip field.
* @var string
*/
protected $unu_ip;
/**
* The value for the unu_id_nutrapharm field.
* @var string
*/
protected $unu_id_nutrapharm;
/**
* The value for the unu_nombre field.
* @var string
*/
protected $unu_nombre;
/**
* The value for the unu_correo field.
* @var string
*/
protected $unu_correo;
/**
* The value for the unu_path_foto_inicial field.
* @var string
*/
protected $unu_path_foto_inicial;
/**
* The value for the unu_comentario_inicial field.
* @var string
*/
protected $unu_comentario_inicial;
/**
* The value for the unu_path_foto_final field.
* @var string
*/
protected $unu_path_foto_final;
/**
* The value for the unu_comentario_final field.
* @var string
*/
protected $unu_comentario_final;
/**
* The value for the unu_estado field.
* @var int
*/
protected $unu_estado;
/**
* The value for the unu_eliminado field.
* @var int
*/
protected $unu_eliminado;
/**
* 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 PropelObjectCollection|EnvioCorreoUsuario[] Collection to store aggregation of EnvioCorreoUsuario objects.
*/
protected $collEnvioCorreoUsuarios;
protected $collEnvioCorreoUsuariosPartial;
/**
* 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;
/**
* An array of objects scheduled for deletion.
* @var PropelObjectCollection
*/
protected $envioCorreoUsuariosScheduledForDeletion = null;
/**
* Get the [unu_id] column value.
*
* @return int
*/
public function getUnuId()
{
return $this->unu_id;
}
/**
* Get the [unu_ua] column value.
*
* @return string
*/
public function getUnuUa()
{
return $this->unu_ua;
}
/**
* Get the [unu_ip] column value.
*
* @return string
*/
public function getUnuIp()
{
return $this->unu_ip;
}
/**
* Get the [unu_id_nutrapharm] column value.
*
* @return string
*/
public function getUnuIdNutrapharm()
{
return $this->unu_id_nutrapharm;
}
/**
* Get the [unu_nombre] column value.
*
* @return string
*/
public function getUnuNombre()
{
return $this->unu_nombre;
}
/**
* Get the [unu_correo] column value.
*
* @return string
*/
public function getUnuCorreo()
{
return $this->unu_correo;
}
/**
* Get the [unu_path_foto_inicial] column value.
*
* @return string
*/
public function getUnuPathFotoInicial()
{
return $this->unu_path_foto_inicial;
}
/**
* Get the [unu_comentario_inicial] column value.
*
* @return string
*/
public function getUnuComentarioInicial()
{
return $this->unu_comentario_inicial;
}
/**
* Get the [unu_path_foto_final] column value.
*
* @return string
*/
public function getUnuPathFotoFinal()
{
return $this->unu_path_foto_final;
}
/**
* Get the [unu_comentario_final] column value.
*
* @return string
*/
public function getUnuComentarioFinal()
{
return $this->unu_comentario_final;
}
/**
* Get the [unu_estado] column value.
*
* @return int
*/
public function getUnuEstado()
{
return $this->unu_estado;
}
/**
* Get the [unu_eliminado] column value.
*
* @return int
*/
public function getUnuEliminado()
{
return $this->unu_eliminado;
}
/**
* 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.
*/
public function getCreatedAt($format = null)
{
if ($this->created_at === null) {
return null;
}
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.
return null;
}
try {
$dt = new DateTime($this->created_at);
} catch (Exception $x) {
throw new PropelException("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) {
return strftime($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.
*/
public function getUpdatedAt($format = null)
{
if ($this->updated_at === null) {
return null;
}
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.
return null;
}
try {
$dt = new DateTime($this->updated_at);
} catch (Exception $x) {
throw new PropelException("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) {
return strftime($format, $dt->format('U'));
}
return $dt->format($format);
}
/**
* Set the value of [unu_id] column.
*
* @param int $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuId($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->unu_id !== $v) {
$this->unu_id = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_ID;
}
return $this;
} // setUnuId()
/**
* Set the value of [unu_ua] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuUa($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_ua !== $v) {
$this->unu_ua = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_UA;
}
return $this;
} // setUnuUa()
/**
* Set the value of [unu_ip] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuIp($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_ip !== $v) {
$this->unu_ip = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_IP;
}
return $this;
} // setUnuIp()
/**
* Set the value of [unu_id_nutrapharm] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuIdNutrapharm($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_id_nutrapharm !== $v) {
$this->unu_id_nutrapharm = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM;
}
return $this;
} // setUnuIdNutrapharm()
/**
* Set the value of [unu_nombre] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuNombre($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_nombre !== $v) {
$this->unu_nombre = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_NOMBRE;
}
return $this;
} // setUnuNombre()
/**
* Set the value of [unu_correo] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuCorreo($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_correo !== $v) {
$this->unu_correo = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_CORREO;
}
return $this;
} // setUnuCorreo()
/**
* Set the value of [unu_path_foto_inicial] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuPathFotoInicial($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_path_foto_inicial !== $v) {
$this->unu_path_foto_inicial = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL;
}
return $this;
} // setUnuPathFotoInicial()
/**
* Set the value of [unu_comentario_inicial] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuComentarioInicial($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_comentario_inicial !== $v) {
$this->unu_comentario_inicial = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL;
}
return $this;
} // setUnuComentarioInicial()
/**
* Set the value of [unu_path_foto_final] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuPathFotoFinal($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_path_foto_final !== $v) {
$this->unu_path_foto_final = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL;
}
return $this;
} // setUnuPathFotoFinal()
/**
* Set the value of [unu_comentario_final] column.
*
* @param string $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuComentarioFinal($v)
{
if ($v !== null) {
$v = (string) $v;
}
if ($this->unu_comentario_final !== $v) {
$this->unu_comentario_final = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL;
}
return $this;
} // setUnuComentarioFinal()
/**
* Set the value of [unu_estado] column.
*
* @param int $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuEstado($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->unu_estado !== $v) {
$this->unu_estado = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_ESTADO;
}
return $this;
} // setUnuEstado()
/**
* Set the value of [unu_eliminado] column.
*
* @param int $v new value
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUnuEliminado($v)
{
if ($v !== null && is_numeric($v)) {
$v = (int) $v;
}
if ($this->unu_eliminado !== $v) {
$this->unu_eliminado = $v;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_ELIMINADO;
}
return $this;
} // setUnuEliminado()
/**
* Sets the value of [created_at] column to a normalized version of the date/time value specified.
*
* @param mixed $v string, integer (timestamp), or DateTime value.
* Empty strings are treated as null.
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setCreatedAt($v)
{
$dt = PropelDateTime::newInstance($v, null, 'DateTime');
if ($this->created_at !== null || $dt !== null) {
$currentDateAsString = ($this->created_at !== null && $tmpDt = new DateTime($this->created_at)) ? $tmpDt->format('Y-m-d H:i:s') : null;
$newDateAsString = $dt ? $dt->format('Y-m-d H:i:s') : null;
if ($currentDateAsString !== $newDateAsString) {
$this->created_at = $newDateAsString;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::CREATED_AT;
}
} // if either are not null
return $this;
} // setCreatedAt()
/**
* Sets the value of [updated_at] column to a normalized version of the date/time value specified.
*
* @param mixed $v string, integer (timestamp), or DateTime value.
* Empty strings are treated as null.
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setUpdatedAt($v)
{
$dt = PropelDateTime::newInstance($v, null, 'DateTime');
if ($this->updated_at !== null || $dt !== null) {
$currentDateAsString = ($this->updated_at !== null && $tmpDt = new DateTime($this->updated_at)) ? $tmpDt->format('Y-m-d H:i:s') : null;
$newDateAsString = $dt ? $dt->format('Y-m-d H:i:s') : null;
if ($currentDateAsString !== $newDateAsString) {
$this->updated_at = $newDateAsString;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UPDATED_AT;
}
} // if either are not null
return $this;
} // setUpdatedAt()
/**
* Indicates whether the columns in this object are only set to default values.
*
* This method can be used in conjunction with isModified() to indicate whether an object is both
* modified _and_ has some values set which are non-default.
*
* @return boolean Whether the columns in this object are only been set with default values.
*/
public function hasOnlyDefaultValues()
{
// otherwise, everything was equal, so return true
return true;
} // hasOnlyDefaultValues()
/**
* Hydrates (populates) the object variables with values from the database resultset.
*
* An offset (0-based "start column") is specified so that objects can be hydrated
* with a subset of the columns in the resultset rows. This is needed, for example,
* for results of JOIN queries where the resultset row includes columns from two or
* more tables.
*
* @param array $row The row returned by PDOStatement->fetch(PDO::FETCH_NUM)
* @param int $startcol 0-based offset column which indicates which resultset column to start with.
* @param boolean $rehydrate Whether this object is being re-hydrated from the database.
* @return int next starting column
* @throws PropelException - Any caught Exception will be rewrapped as a PropelException.
*/
public function hydrate($row, $startcol = 0, $rehydrate = false)
{
try {
$this->unu_id = ($row[$startcol + 0] !== null) ? (int) $row[$startcol + 0] : null;
$this->unu_ua = ($row[$startcol + 1] !== null) ? (string) $row[$startcol + 1] : null;
$this->unu_ip = ($row[$startcol + 2] !== null) ? (string) $row[$startcol + 2] : null;
$this->unu_id_nutrapharm = ($row[$startcol + 3] !== null) ? (string) $row[$startcol + 3] : null;
$this->unu_nombre = ($row[$startcol + 4] !== null) ? (string) $row[$startcol + 4] : null;
$this->unu_correo = ($row[$startcol + 5] !== null) ? (string) $row[$startcol + 5] : null;
$this->unu_path_foto_inicial = ($row[$startcol + 6] !== null) ? (string) $row[$startcol + 6] : null;
$this->unu_comentario_inicial = ($row[$startcol + 7] !== null) ? (string) $row[$startcol + 7] : null;
$this->unu_path_foto_final = ($row[$startcol + 8] !== null) ? (string) $row[$startcol + 8] : null;
$this->unu_comentario_final = ($row[$startcol + 9] !== null) ? (string) $row[$startcol + 9] : null;
$this->unu_estado = ($row[$startcol + 10] !== null) ? (int) $row[$startcol + 10] : null;
$this->unu_eliminado = ($row[$startcol + 11] !== null) ? (int) $row[$startcol + 11] : null;
$this->created_at = ($row[$startcol + 12] !== null) ? (string) $row[$startcol + 12] : null;
$this->updated_at = ($row[$startcol + 13] !== null) ? (string) $row[$startcol + 13] : null;
$this->resetModified();
$this->setNew(false);
if ($rehydrate) {
$this->ensureConsistency();
}
$this->postHydrate($row, $startcol, $rehydrate);
return $startcol + 14; // 14 = UsuarioNutrapharmPeer::NUM_HYDRATE_COLUMNS.
} catch (Exception $e) {
throw new PropelException("Error populating UsuarioNutrapharm object", $e);
}
}
/**
* Checks and repairs the internal consistency of the object.
*
* This method is executed after an already-instantiated object is re-hydrated
* from the database. It exists to check any foreign keys to make sure that
* the objects related to the current object are correct based on foreign key.
*
* You can override this method in the stub class, but you should always invoke
* the base method from the overridden method (i.e. parent::ensureConsistency()),
* in case your model changes.
*
* @throws PropelException
*/
public function ensureConsistency()
{
} // ensureConsistency
/**
* Reloads this object from datastore based on primary key and (optionally) resets all associated objects.
*
* This will only work if the object has been saved and has a valid primary key set.
*
* @param boolean $deep (optional) Whether to also de-associated any related objects.
* @param PropelPDO $con (optional) The PropelPDO connection to use.
* @return void
* @throws PropelException - if this object is deleted, unsaved or doesn't have pk match in db
*/
public function reload($deep = false, PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("Cannot reload a deleted object.");
}
if ($this->isNew()) {
throw new PropelException("Cannot reload an unsaved object.");
}
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// We don't need to alter the object instance pool; we're just modifying this instance
// already in the pool.
$stmt = UsuarioNutrapharmPeer::doSelectStmt($this->buildPkeyCriteria(), $con);
$row = $stmt->fetch(PDO::FETCH_NUM);
$stmt->closeCursor();
if (!$row) {
throw new PropelException('Cannot find matching row in the database to reload object values.');
}
$this->hydrate($row, 0, true); // rehydrate
if ($deep) { // also de-associate any related objects?
$this->collEnvioCorreoUsuarios = null;
} // if (deep)
}
/**
* Removes this object from datastore and sets delete attribute.
*
* @param PropelPDO $con
* @return void
* @throws PropelException
* @throws Exception
* @see BaseObject::setDeleted()
* @see BaseObject::isDeleted()
*/
public function delete(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("This object has already been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
try {
$deleteQuery = UsuarioNutrapharmQuery::create()
->filterByPrimaryKey($this->getPrimaryKey());
$ret = $this->preDelete($con);
if ($ret) {
$deleteQuery->delete($con);
$this->postDelete($con);
$con->commit();
$this->setDeleted(true);
} else {
$con->commit();
}
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Persists this object to the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All modified related objects will also be persisted in the doSave()
* method. This method wraps all precipitate database operations in a
* single transaction.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @throws Exception
* @see doSave()
*/
public function save(PropelPDO $con = null)
{
if ($this->isDeleted()) {
throw new PropelException("You cannot save an object that has been deleted.");
}
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$con->beginTransaction();
$isInsert = $this->isNew();
try {
$ret = $this->preSave($con);
if ($isInsert) {
$ret = $ret && $this->preInsert($con);
// timestampable behavior
if (!$this->isColumnModified(UsuarioNutrapharmPeer::CREATED_AT)) {
$this->setCreatedAt(time());
}
if (!$this->isColumnModified(UsuarioNutrapharmPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
} else {
$ret = $ret && $this->preUpdate($con);
// timestampable behavior
if ($this->isModified() && !$this->isColumnModified(UsuarioNutrapharmPeer::UPDATED_AT)) {
$this->setUpdatedAt(time());
}
}
if ($ret) {
$affectedRows = $this->doSave($con);
if ($isInsert) {
$this->postInsert($con);
} else {
$this->postUpdate($con);
}
$this->postSave($con);
UsuarioNutrapharmPeer::addInstanceToPool($this);
} else {
$affectedRows = 0;
}
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs the work of inserting or updating the row in the database.
*
* If the object is new, it inserts it; otherwise an update is performed.
* All related objects are also updated in this method.
*
* @param PropelPDO $con
* @return int The number of rows affected by this insert/update and any referring fk objects' save() operations.
* @throws PropelException
* @see save()
*/
protected function doSave(PropelPDO $con)
{
$affectedRows = 0; // initialize var to track total num of affected rows
if (!$this->alreadyInSave) {
$this->alreadyInSave = true;
if ($this->isNew() || $this->isModified()) {
// persist changes
if ($this->isNew()) {
$this->doInsert($con);
} else {
$this->doUpdate($con);
}
$affectedRows += 1;
$this->resetModified();
}
if ($this->envioCorreoUsuariosScheduledForDeletion !== null) {
if (!$this->envioCorreoUsuariosScheduledForDeletion->isEmpty()) {
EnvioCorreoUsuarioQuery::create()
->filterByPrimaryKeys($this->envioCorreoUsuariosScheduledForDeletion->getPrimaryKeys(false))
->delete($con);
$this->envioCorreoUsuariosScheduledForDeletion = null;
}
}
if ($this->collEnvioCorreoUsuarios !== null) {
foreach ($this->collEnvioCorreoUsuarios as $referrerFK) {
if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
$affectedRows += $referrerFK->save($con);
}
}
}
$this->alreadyInSave = false;
}
return $affectedRows;
} // doSave()
/**
* Insert the row in the database.
*
* @param PropelPDO $con
*
* @throws PropelException
* @see doSave()
*/
protected function doInsert(PropelPDO $con)
{
$modifiedColumns = array();
$index = 0;
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UNU_ID;
if (null !== $this->unu_id) {
throw new PropelException('Cannot insert a value for auto-increment primary key (' . UsuarioNutrapharmPeer::UNU_ID . ')');
}
// check the columns in natural order for more readable SQL queries
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ID)) {
$modifiedColumns[':p' . $index++] = '`unu_id`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_UA)) {
$modifiedColumns[':p' . $index++] = '`unu_ua`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_IP)) {
$modifiedColumns[':p' . $index++] = '`unu_ip`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM)) {
$modifiedColumns[':p' . $index++] = '`unu_id_nutrapharm`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_NOMBRE)) {
$modifiedColumns[':p' . $index++] = '`unu_nombre`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_CORREO)) {
$modifiedColumns[':p' . $index++] = '`unu_correo`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL)) {
$modifiedColumns[':p' . $index++] = '`unu_path_foto_inicial`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL)) {
$modifiedColumns[':p' . $index++] = '`unu_comentario_inicial`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL)) {
$modifiedColumns[':p' . $index++] = '`unu_path_foto_final`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL)) {
$modifiedColumns[':p' . $index++] = '`unu_comentario_final`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ESTADO)) {
$modifiedColumns[':p' . $index++] = '`unu_estado`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ELIMINADO)) {
$modifiedColumns[':p' . $index++] = '`unu_eliminado`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::CREATED_AT)) {
$modifiedColumns[':p' . $index++] = '`created_at`';
}
if ($this->isColumnModified(UsuarioNutrapharmPeer::UPDATED_AT)) {
$modifiedColumns[':p' . $index++] = '`updated_at`';
}
$sql = sprintf(
'INSERT INTO `usuario_nutrapharm` (%s) VALUES (%s)',
implode(', ', $modifiedColumns),
implode(', ', array_keys($modifiedColumns))
);
try {
$stmt = $con->prepare($sql);
foreach ($modifiedColumns as $identifier => $columnName) {
switch ($columnName) {
case '`unu_id`':
$stmt->bindValue($identifier, $this->unu_id, PDO::PARAM_INT);
break;
case '`unu_ua`':
$stmt->bindValue($identifier, $this->unu_ua, PDO::PARAM_STR);
break;
case '`unu_ip`':
$stmt->bindValue($identifier, $this->unu_ip, PDO::PARAM_STR);
break;
case '`unu_id_nutrapharm`':
$stmt->bindValue($identifier, $this->unu_id_nutrapharm, PDO::PARAM_STR);
break;
case '`unu_nombre`':
$stmt->bindValue($identifier, $this->unu_nombre, PDO::PARAM_STR);
break;
case '`unu_correo`':
$stmt->bindValue($identifier, $this->unu_correo, PDO::PARAM_STR);
break;
case '`unu_path_foto_inicial`':
$stmt->bindValue($identifier, $this->unu_path_foto_inicial, PDO::PARAM_STR);
break;
case '`unu_comentario_inicial`':
$stmt->bindValue($identifier, $this->unu_comentario_inicial, PDO::PARAM_STR);
break;
case '`unu_path_foto_final`':
$stmt->bindValue($identifier, $this->unu_path_foto_final, PDO::PARAM_STR);
break;
case '`unu_comentario_final`':
$stmt->bindValue($identifier, $this->unu_comentario_final, PDO::PARAM_STR);
break;
case '`unu_estado`':
$stmt->bindValue($identifier, $this->unu_estado, PDO::PARAM_INT);
break;
case '`unu_eliminado`':
$stmt->bindValue($identifier, $this->unu_eliminado, PDO::PARAM_INT);
break;
case '`created_at`':
$stmt->bindValue($identifier, $this->created_at, PDO::PARAM_STR);
break;
case '`updated_at`':
$stmt->bindValue($identifier, $this->updated_at, PDO::PARAM_STR);
break;
}
}
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute INSERT statement [%s]', $sql), $e);
}
try {
$pk = $con->lastInsertId();
} catch (Exception $e) {
throw new PropelException('Unable to get autoincrement id.', $e);
}
$this->setUnuId($pk);
$this->setNew(false);
}
/**
* Update the row in the database.
*
* @param PropelPDO $con
*
* @see doSave()
*/
protected function doUpdate(PropelPDO $con)
{
$selectCriteria = $this->buildPkeyCriteria();
$valuesCriteria = $this->buildCriteria();
BasePeer::doUpdate($selectCriteria, $valuesCriteria, $con);
}
/**
* Array of ValidationFailed objects.
* @var array ValidationFailed[]
*/
protected $validationFailures = array();
/**
* Gets any ValidationFailed objects that resulted from last call to validate().
*
*
* @return array ValidationFailed[]
* @see validate()
*/
public function getValidationFailures()
{
return $this->validationFailures;
}
/**
* Validates the objects modified field values and all objects related to this table.
*
* If $columns is either a column name or an array of column names
* only those columns are validated.
*
* @param mixed $columns Column name or an array of column names.
* @return boolean Whether all columns pass validation.
* @see doValidate()
* @see getValidationFailures()
*/
public function validate($columns = null)
{
$res = $this->doValidate($columns);
if ($res === true) {
$this->validationFailures = array();
return true;
}
$this->validationFailures = $res;
return false;
}
/**
* This function performs the validation work for complex object models.
*
* In addition to checking the current object, all related objects will
* also be validated. If all pass then <code>true</code> is returned; otherwise
* an aggregated array of ValidationFailed objects will be returned.
*
* @param array $columns Array of column names to validate.
* @return mixed <code>true</code> if all validations pass; array of <code>ValidationFailed</code> objects otherwise.
*/
protected function doValidate($columns = null)
{
if (!$this->alreadyInValidation) {
$this->alreadyInValidation = true;
$retval = null;
$failureMap = array();
if (($retval = UsuarioNutrapharmPeer::doValidate($this, $columns)) !== true) {
$failureMap = array_merge($failureMap, $retval);
}
if ($this->collEnvioCorreoUsuarios !== null) {
foreach ($this->collEnvioCorreoUsuarios as $referrerFK) {
if (!$referrerFK->validate($columns)) {
$failureMap = array_merge($failureMap, $referrerFK->getValidationFailures());
}
}
}
$this->alreadyInValidation = false;
}
return (!empty($failureMap) ? $failureMap : true);
}
/**
* Retrieves a field from the object by name passed in as a string.
*
* @param string $name name
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return mixed Value of field.
*/
public function getByName($name, $type = BasePeer::TYPE_PHPNAME)
{
$pos = UsuarioNutrapharmPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$field = $this->getByPosition($pos);
return $field;
}
/**
* Retrieves a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @return mixed Value of field at $pos
*/
public function getByPosition($pos)
{
switch ($pos) {
case 0:
return $this->getUnuId();
break;
case 1:
return $this->getUnuUa();
break;
case 2:
return $this->getUnuIp();
break;
case 3:
return $this->getUnuIdNutrapharm();
break;
case 4:
return $this->getUnuNombre();
break;
case 5:
return $this->getUnuCorreo();
break;
case 6:
return $this->getUnuPathFotoInicial();
break;
case 7:
return $this->getUnuComentarioInicial();
break;
case 8:
return $this->getUnuPathFotoFinal();
break;
case 9:
return $this->getUnuComentarioFinal();
break;
case 10:
return $this->getUnuEstado();
break;
case 11:
return $this->getUnuEliminado();
break;
case 12:
return $this->getCreatedAt();
break;
case 13:
return $this->getUpdatedAt();
break;
default:
return null;
break;
} // switch()
}
/**
* Exports the object as an array.
*
* You can specify the key type of the array by passing one of the class
* type constants.
*
* @param string $keyType (optional) One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME.
* @param boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to true.
* @param array $alreadyDumpedObjects List of objects to skip to avoid recursion
* @param boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
*
* @return array an associative array containing the field names (as keys) and field values
*/
public function toArray($keyType = BasePeer::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
{
if (isset($alreadyDumpedObjects['UsuarioNutrapharm'][$this->getPrimaryKey()])) {
return '*RECURSION*';
}
$alreadyDumpedObjects['UsuarioNutrapharm'][$this->getPrimaryKey()] = true;
$keys = UsuarioNutrapharmPeer::getFieldNames($keyType);
$result = array(
$keys[0] => $this->getUnuId(),
$keys[1] => $this->getUnuUa(),
$keys[2] => $this->getUnuIp(),
$keys[3] => $this->getUnuIdNutrapharm(),
$keys[4] => $this->getUnuNombre(),
$keys[5] => $this->getUnuCorreo(),
$keys[6] => $this->getUnuPathFotoInicial(),
$keys[7] => $this->getUnuComentarioInicial(),
$keys[8] => $this->getUnuPathFotoFinal(),
$keys[9] => $this->getUnuComentarioFinal(),
$keys[10] => $this->getUnuEstado(),
$keys[11] => $this->getUnuEliminado(),
$keys[12] => $this->getCreatedAt(),
$keys[13] => $this->getUpdatedAt(),
);
$virtualColumns = $this->virtualColumns;
foreach ($virtualColumns as $key => $virtualColumn) {
$result[$key] = $virtualColumn;
}
if ($includeForeignObjects) {
if (null !== $this->collEnvioCorreoUsuarios) {
$result['EnvioCorreoUsuarios'] = $this->collEnvioCorreoUsuarios->toArray(null, true, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
}
}
return $result;
}
/**
* Sets a field from the object by name passed in as a string.
*
* @param string $name peer name
* @param mixed $value field value
* @param string $type The type of fieldname the $name is of:
* one of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* Defaults to BasePeer::TYPE_PHPNAME
* @return void
*/
public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME)
{
$pos = UsuarioNutrapharmPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
$this->setByPosition($pos, $value);
}
/**
* Sets a field from the object by Position as specified in the xml schema.
* Zero-based.
*
* @param int $pos position in xml schema
* @param mixed $value field value
* @return void
*/
public function setByPosition($pos, $value)
{
switch ($pos) {
case 0:
$this->setUnuId($value);
break;
case 1:
$this->setUnuUa($value);
break;
case 2:
$this->setUnuIp($value);
break;
case 3:
$this->setUnuIdNutrapharm($value);
break;
case 4:
$this->setUnuNombre($value);
break;
case 5:
$this->setUnuCorreo($value);
break;
case 6:
$this->setUnuPathFotoInicial($value);
break;
case 7:
$this->setUnuComentarioInicial($value);
break;
case 8:
$this->setUnuPathFotoFinal($value);
break;
case 9:
$this->setUnuComentarioFinal($value);
break;
case 10:
$this->setUnuEstado($value);
break;
case 11:
$this->setUnuEliminado($value);
break;
case 12:
$this->setCreatedAt($value);
break;
case 13:
$this->setUpdatedAt($value);
break;
} // switch()
}
/**
* Populates the object using an array.
*
* This is particularly useful when populating an object from one of the
* request arrays (e.g. $_POST). This method goes through the column
* names, checking to see whether a matching key exists in populated
* array. If so the setByName() method is called for that column.
*
* You can specify the key type of the array by additionally passing one
* of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
* The default key type is the column's BasePeer::TYPE_PHPNAME
*
* @param array $arr An array to populate the object from.
* @param string $keyType The type of keys the array uses.
* @return void
*/
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
{
$keys = UsuarioNutrapharmPeer::getFieldNames($keyType);
if (array_key_exists($keys[0], $arr)) $this->setUnuId($arr[$keys[0]]);
if (array_key_exists($keys[1], $arr)) $this->setUnuUa($arr[$keys[1]]);
if (array_key_exists($keys[2], $arr)) $this->setUnuIp($arr[$keys[2]]);
if (array_key_exists($keys[3], $arr)) $this->setUnuIdNutrapharm($arr[$keys[3]]);
if (array_key_exists($keys[4], $arr)) $this->setUnuNombre($arr[$keys[4]]);
if (array_key_exists($keys[5], $arr)) $this->setUnuCorreo($arr[$keys[5]]);
if (array_key_exists($keys[6], $arr)) $this->setUnuPathFotoInicial($arr[$keys[6]]);
if (array_key_exists($keys[7], $arr)) $this->setUnuComentarioInicial($arr[$keys[7]]);
if (array_key_exists($keys[8], $arr)) $this->setUnuPathFotoFinal($arr[$keys[8]]);
if (array_key_exists($keys[9], $arr)) $this->setUnuComentarioFinal($arr[$keys[9]]);
if (array_key_exists($keys[10], $arr)) $this->setUnuEstado($arr[$keys[10]]);
if (array_key_exists($keys[11], $arr)) $this->setUnuEliminado($arr[$keys[11]]);
if (array_key_exists($keys[12], $arr)) $this->setCreatedAt($arr[$keys[12]]);
if (array_key_exists($keys[13], $arr)) $this->setUpdatedAt($arr[$keys[13]]);
}
/**
* Build a Criteria object containing the values of all modified columns in this object.
*
* @return Criteria The Criteria object containing all modified values.
*/
public function buildCriteria()
{
$criteria = new Criteria(UsuarioNutrapharmPeer::DATABASE_NAME);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ID)) $criteria->add(UsuarioNutrapharmPeer::UNU_ID, $this->unu_id);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_UA)) $criteria->add(UsuarioNutrapharmPeer::UNU_UA, $this->unu_ua);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_IP)) $criteria->add(UsuarioNutrapharmPeer::UNU_IP, $this->unu_ip);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM)) $criteria->add(UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM, $this->unu_id_nutrapharm);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_NOMBRE)) $criteria->add(UsuarioNutrapharmPeer::UNU_NOMBRE, $this->unu_nombre);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_CORREO)) $criteria->add(UsuarioNutrapharmPeer::UNU_CORREO, $this->unu_correo);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL)) $criteria->add(UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL, $this->unu_path_foto_inicial);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL)) $criteria->add(UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL, $this->unu_comentario_inicial);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL)) $criteria->add(UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL, $this->unu_path_foto_final);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL)) $criteria->add(UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL, $this->unu_comentario_final);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ESTADO)) $criteria->add(UsuarioNutrapharmPeer::UNU_ESTADO, $this->unu_estado);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UNU_ELIMINADO)) $criteria->add(UsuarioNutrapharmPeer::UNU_ELIMINADO, $this->unu_eliminado);
if ($this->isColumnModified(UsuarioNutrapharmPeer::CREATED_AT)) $criteria->add(UsuarioNutrapharmPeer::CREATED_AT, $this->created_at);
if ($this->isColumnModified(UsuarioNutrapharmPeer::UPDATED_AT)) $criteria->add(UsuarioNutrapharmPeer::UPDATED_AT, $this->updated_at);
return $criteria;
}
/**
* Builds a Criteria object containing the primary key for this object.
*
* Unlike buildCriteria() this method includes the primary key values regardless
* of whether or not they have been modified.
*
* @return Criteria The Criteria object containing value(s) for primary key(s).
*/
public function buildPkeyCriteria()
{
$criteria = new Criteria(UsuarioNutrapharmPeer::DATABASE_NAME);
$criteria->add(UsuarioNutrapharmPeer::UNU_ID, $this->unu_id);
return $criteria;
}
/**
* Returns the primary key for this object (row).
* @return int
*/
public function getPrimaryKey()
{
return $this->getUnuId();
}
/**
* Generic method to set the primary key (unu_id column).
*
* @param int $key Primary key.
* @return void
*/
public function setPrimaryKey($key)
{
$this->setUnuId($key);
}
/**
* Returns true if the primary key for this object is null.
* @return boolean
*/
public function isPrimaryKeyNull()
{
return null === $this->getUnuId();
}
/**
* Sets contents of passed object to values from current object.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param object $copyObj An object of UsuarioNutrapharm (or compatible) type.
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @param boolean $makeNew Whether to reset autoincrement PKs and make the object new.
* @throws PropelException
*/
public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
{
$copyObj->setUnuUa($this->getUnuUa());
$copyObj->setUnuIp($this->getUnuIp());
$copyObj->setUnuIdNutrapharm($this->getUnuIdNutrapharm());
$copyObj->setUnuNombre($this->getUnuNombre());
$copyObj->setUnuCorreo($this->getUnuCorreo());
$copyObj->setUnuPathFotoInicial($this->getUnuPathFotoInicial());
$copyObj->setUnuComentarioInicial($this->getUnuComentarioInicial());
$copyObj->setUnuPathFotoFinal($this->getUnuPathFotoFinal());
$copyObj->setUnuComentarioFinal($this->getUnuComentarioFinal());
$copyObj->setUnuEstado($this->getUnuEstado());
$copyObj->setUnuEliminado($this->getUnuEliminado());
$copyObj->setCreatedAt($this->getCreatedAt());
$copyObj->setUpdatedAt($this->getUpdatedAt());
if ($deepCopy && !$this->startCopy) {
// important: temporarily setNew(false) because this affects the behavior of
// the getter/setter methods for fkey referrer objects.
$copyObj->setNew(false);
// store object hash to prevent cycle
$this->startCopy = true;
foreach ($this->getEnvioCorreoUsuarios() as $relObj) {
if ($relObj !== $this) { // ensure that we don't try to copy a reference to ourselves
$copyObj->addEnvioCorreoUsuario($relObj->copy($deepCopy));
}
}
//unflag object copy
$this->startCopy = false;
} // if ($deepCopy)
if ($makeNew) {
$copyObj->setNew(true);
$copyObj->setUnuId(NULL); // this is a auto-increment column, so set to default value
}
}
/**
* Makes a copy of this object that will be inserted as a new row in table when saved.
* It creates a new object filling in the simple attributes, but skipping any primary
* keys that are defined for the table.
*
* If desired, this method can also make copies of all associated (fkey referrers)
* objects.
*
* @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
* @return UsuarioNutrapharm Clone of current object.
* @throws PropelException
*/
public function copy($deepCopy = false)
{
// we use get_class(), because this might be a subclass
$clazz = get_class($this);
$copyObj = new $clazz();
$this->copyInto($copyObj, $deepCopy);
return $copyObj;
}
/**
* Returns a peer instance associated with this om.
*
* Since Peer classes are not to have any instance attributes, this method returns the
* same instance for all member of this class. The method could therefore
* be static, but this would prevent one from overriding the behavior.
*
* @return UsuarioNutrapharmPeer
*/
public function getPeer()
{
if (self::$peer === null) {
self::$peer = new UsuarioNutrapharmPeer();
}
return self::$peer;
}
/**
* Initializes a collection based on the name of a relation.
* Avoids crafting an 'init[$relationName]s' method name
* that wouldn't work when StandardEnglishPluralizer is used.
*
* @param string $relationName The name of the relation to initialize
* @return void
*/
public function initRelation($relationName)
{
if ('EnvioCorreoUsuario' == $relationName) {
$this->initEnvioCorreoUsuarios();
}
}
/**
* Clears out the collEnvioCorreoUsuarios collection
*
* This does not modify the database; however, it will remove any associated objects, causing
* them to be refetched by subsequent calls to accessor method.
*
* @return UsuarioNutrapharm The current object (for fluent API support)
* @see addEnvioCorreoUsuarios()
*/
public function clearEnvioCorreoUsuarios()
{
$this->collEnvioCorreoUsuarios = null; // important to set this to null since that means it is uninitialized
$this->collEnvioCorreoUsuariosPartial = null;
return $this;
}
/**
* reset is the collEnvioCorreoUsuarios collection loaded partially
*
* @return void
*/
public function resetPartialEnvioCorreoUsuarios($v = true)
{
$this->collEnvioCorreoUsuariosPartial = $v;
}
/**
* Initializes the collEnvioCorreoUsuarios collection.
*
* By default this just sets the collEnvioCorreoUsuarios collection to an empty array (like clearcollEnvioCorreoUsuarios());
* however, you may wish to override this method in your stub class to provide setting appropriate
* to your application -- for example, setting the initial array to the values stored in database.
*
* @param boolean $overrideExisting If set to true, the method call initializes
* the collection even if it is not empty
*
* @return void
*/
public function initEnvioCorreoUsuarios($overrideExisting = true)
{
if (null !== $this->collEnvioCorreoUsuarios && !$overrideExisting) {
return;
}
$this->collEnvioCorreoUsuarios = new PropelObjectCollection();
$this->collEnvioCorreoUsuarios->setModel('EnvioCorreoUsuario');
}
/**
* Gets an array of EnvioCorreoUsuario objects which contain a foreign key that references this object.
*
* If the $criteria is not null, it is used to always fetch the results from the database.
* Otherwise the results are fetched from the database the first time, then cached.
* Next time the same method is called without $criteria, the cached collection is returned.
* If this UsuarioNutrapharm is new, it will return
* an empty collection or the current collection; the criteria is ignored on a new object.
*
* @param Criteria $criteria optional Criteria object to narrow the query
* @param PropelPDO $con optional connection object
* @return PropelObjectCollection|EnvioCorreoUsuario[] List of EnvioCorreoUsuario objects
* @throws PropelException
*/
public function getEnvioCorreoUsuarios($criteria = null, PropelPDO $con = null)
{
$partial = $this->collEnvioCorreoUsuariosPartial && !$this->isNew();
if (null === $this->collEnvioCorreoUsuarios || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collEnvioCorreoUsuarios) {
// return empty collection
$this->initEnvioCorreoUsuarios();
} else {
$collEnvioCorreoUsuarios = EnvioCorreoUsuarioQuery::create(null, $criteria)
->filterByUsuarioNutrapharm($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collEnvioCorreoUsuariosPartial && count($collEnvioCorreoUsuarios)) {
$this->initEnvioCorreoUsuarios(false);
foreach ($collEnvioCorreoUsuarios as $obj) {
if (false == $this->collEnvioCorreoUsuarios->contains($obj)) {
$this->collEnvioCorreoUsuarios->append($obj);
}
}
$this->collEnvioCorreoUsuariosPartial = true;
}
$collEnvioCorreoUsuarios->getInternalIterator()->rewind();
return $collEnvioCorreoUsuarios;
}
if ($partial && $this->collEnvioCorreoUsuarios) {
foreach ($this->collEnvioCorreoUsuarios as $obj) {
if ($obj->isNew()) {
$collEnvioCorreoUsuarios[] = $obj;
}
}
}
$this->collEnvioCorreoUsuarios = $collEnvioCorreoUsuarios;
$this->collEnvioCorreoUsuariosPartial = false;
}
}
return $this->collEnvioCorreoUsuarios;
}
/**
* Sets a collection of EnvioCorreoUsuario objects related by a one-to-many relationship
* to the current object.
* It will also schedule objects for deletion based on a diff between old objects (aka persisted)
* and new objects from the given Propel collection.
*
* @param PropelCollection $envioCorreoUsuarios A Propel collection.
* @param PropelPDO $con Optional connection object
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function setEnvioCorreoUsuarios(PropelCollection $envioCorreoUsuarios, PropelPDO $con = null)
{
$envioCorreoUsuariosToDelete = $this->getEnvioCorreoUsuarios(new Criteria(), $con)->diff($envioCorreoUsuarios);
$this->envioCorreoUsuariosScheduledForDeletion = $envioCorreoUsuariosToDelete;
foreach ($envioCorreoUsuariosToDelete as $envioCorreoUsuarioRemoved) {
$envioCorreoUsuarioRemoved->setUsuarioNutrapharm(null);
}
$this->collEnvioCorreoUsuarios = null;
foreach ($envioCorreoUsuarios as $envioCorreoUsuario) {
$this->addEnvioCorreoUsuario($envioCorreoUsuario);
}
$this->collEnvioCorreoUsuarios = $envioCorreoUsuarios;
$this->collEnvioCorreoUsuariosPartial = false;
return $this;
}
/**
* Returns the number of related EnvioCorreoUsuario objects.
*
* @param Criteria $criteria
* @param boolean $distinct
* @param PropelPDO $con
* @return int Count of related EnvioCorreoUsuario objects.
* @throws PropelException
*/
public function countEnvioCorreoUsuarios(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
{
$partial = $this->collEnvioCorreoUsuariosPartial && !$this->isNew();
if (null === $this->collEnvioCorreoUsuarios || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collEnvioCorreoUsuarios) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getEnvioCorreoUsuarios());
}
$query = EnvioCorreoUsuarioQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterByUsuarioNutrapharm($this)
->count($con);
}
return count($this->collEnvioCorreoUsuarios);
}
/**
* Method called to associate a EnvioCorreoUsuario object to this object
* through the EnvioCorreoUsuario foreign key attribute.
*
* @param EnvioCorreoUsuario $l EnvioCorreoUsuario
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function addEnvioCorreoUsuario(EnvioCorreoUsuario $l)
{
if ($this->collEnvioCorreoUsuarios === null) {
$this->initEnvioCorreoUsuarios();
$this->collEnvioCorreoUsuariosPartial = true;
}
if (!in_array($l, $this->collEnvioCorreoUsuarios->getArrayCopy(), true)) { // only add it if the **same** object is not already associated
$this->doAddEnvioCorreoUsuario($l);
if ($this->envioCorreoUsuariosScheduledForDeletion and $this->envioCorreoUsuariosScheduledForDeletion->contains($l)) {
$this->envioCorreoUsuariosScheduledForDeletion->remove($this->envioCorreoUsuariosScheduledForDeletion->search($l));
}
}
return $this;
}
/**
* @param EnvioCorreoUsuario $envioCorreoUsuario The envioCorreoUsuario object to add.
*/
protected function doAddEnvioCorreoUsuario($envioCorreoUsuario)
{
$this->collEnvioCorreoUsuarios[]= $envioCorreoUsuario;
$envioCorreoUsuario->setUsuarioNutrapharm($this);
}
/**
* @param EnvioCorreoUsuario $envioCorreoUsuario The envioCorreoUsuario object to remove.
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function removeEnvioCorreoUsuario($envioCorreoUsuario)
{
if ($this->getEnvioCorreoUsuarios()->contains($envioCorreoUsuario)) {
$this->collEnvioCorreoUsuarios->remove($this->collEnvioCorreoUsuarios->search($envioCorreoUsuario));
if (null === $this->envioCorreoUsuariosScheduledForDeletion) {
$this->envioCorreoUsuariosScheduledForDeletion = clone $this->collEnvioCorreoUsuarios;
$this->envioCorreoUsuariosScheduledForDeletion->clear();
}
$this->envioCorreoUsuariosScheduledForDeletion[]= clone $envioCorreoUsuario;
$envioCorreoUsuario->setUsuarioNutrapharm(null);
}
return $this;
}
/**
* Clears the current object and sets all attributes to their default values
*/
public function clear()
{
$this->unu_id = null;
$this->unu_ua = null;
$this->unu_ip = null;
$this->unu_id_nutrapharm = null;
$this->unu_nombre = null;
$this->unu_correo = null;
$this->unu_path_foto_inicial = null;
$this->unu_comentario_inicial = null;
$this->unu_path_foto_final = null;
$this->unu_comentario_final = null;
$this->unu_estado = null;
$this->unu_eliminado = null;
$this->created_at = null;
$this->updated_at = null;
$this->alreadyInSave = false;
$this->alreadyInValidation = false;
$this->alreadyInClearAllReferencesDeep = false;
$this->clearAllReferences();
$this->resetModified();
$this->setNew(true);
$this->setDeleted(false);
}
/**
* Resets all references to other model objects or collections of model objects.
*
* This method is a user-space workaround for PHP's inability to garbage collect
* objects with circular references (even in PHP 5.3). This is currently necessary
* when using Propel in certain daemon or large-volume/high-memory operations.
*
* @param boolean $deep Whether to also clear the references on all referrer objects.
*/
public function clearAllReferences($deep = false)
{
if ($deep && !$this->alreadyInClearAllReferencesDeep) {
$this->alreadyInClearAllReferencesDeep = true;
if ($this->collEnvioCorreoUsuarios) {
foreach ($this->collEnvioCorreoUsuarios as $o) {
$o->clearAllReferences($deep);
}
}
$this->alreadyInClearAllReferencesDeep = false;
} // if ($deep)
if ($this->collEnvioCorreoUsuarios instanceof PropelCollection) {
$this->collEnvioCorreoUsuarios->clearIterator();
}
$this->collEnvioCorreoUsuarios = null;
}
/**
* return the string representation of this object
*
* @return string
*/
public function __toString()
{
return (string) $this->exportTo(UsuarioNutrapharmPeer::DEFAULT_STRING_FORMAT);
}
/**
* return true is the object is in saving state
*
* @return boolean
*/
public function isAlreadyInSave()
{
return $this->alreadyInSave;
}
// timestampable behavior
/**
* Mark the current object so that the update date doesn't get updated during next save
*
* @return UsuarioNutrapharm The current object (for fluent API support)
*/
public function keepUpdateDateUnchanged()
{
$this->modifiedColumns[] = UsuarioNutrapharmPeer::UPDATED_AT;
return $this;
}
}
<?php
namespace AppBundle\Model\om;
use \BasePeer;
use \Criteria;
use \PDO;
use \PDOStatement;
use \Propel;
use \PropelException;
use \PropelPDO;
use AppBundle\Model\UsuarioNutrapharm;
use AppBundle\Model\UsuarioNutrapharmPeer;
use AppBundle\Model\map\UsuarioNutrapharmTableMap;
abstract class BaseUsuarioNutrapharmPeer
{
/** the default database name for this class */
const DATABASE_NAME = 'conn1';
/** the table name for this class */
const TABLE_NAME = 'usuario_nutrapharm';
/** the related Propel class for this table */
const OM_CLASS = 'AppBundle\\Model\\UsuarioNutrapharm';
/** the related TableMap class for this table */
const TM_CLASS = 'AppBundle\\Model\\map\\UsuarioNutrapharmTableMap';
/** The total number of columns. */
const NUM_COLUMNS = 14;
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS) */
const NUM_HYDRATE_COLUMNS = 14;
/** the column name for the unu_id field */
const UNU_ID = 'usuario_nutrapharm.unu_id';
/** the column name for the unu_ua field */
const UNU_UA = 'usuario_nutrapharm.unu_ua';
/** the column name for the unu_ip field */
const UNU_IP = 'usuario_nutrapharm.unu_ip';
/** the column name for the unu_id_nutrapharm field */
const UNU_ID_NUTRAPHARM = 'usuario_nutrapharm.unu_id_nutrapharm';
/** the column name for the unu_nombre field */
const UNU_NOMBRE = 'usuario_nutrapharm.unu_nombre';
/** the column name for the unu_correo field */
const UNU_CORREO = 'usuario_nutrapharm.unu_correo';
/** the column name for the unu_path_foto_inicial field */
const UNU_PATH_FOTO_INICIAL = 'usuario_nutrapharm.unu_path_foto_inicial';
/** the column name for the unu_comentario_inicial field */
const UNU_COMENTARIO_INICIAL = 'usuario_nutrapharm.unu_comentario_inicial';
/** the column name for the unu_path_foto_final field */
const UNU_PATH_FOTO_FINAL = 'usuario_nutrapharm.unu_path_foto_final';
/** the column name for the unu_comentario_final field */
const UNU_COMENTARIO_FINAL = 'usuario_nutrapharm.unu_comentario_final';
/** the column name for the unu_estado field */
const UNU_ESTADO = 'usuario_nutrapharm.unu_estado';
/** the column name for the unu_eliminado field */
const UNU_ELIMINADO = 'usuario_nutrapharm.unu_eliminado';
/** the column name for the created_at field */
const CREATED_AT = 'usuario_nutrapharm.created_at';
/** the column name for the updated_at field */
const UPDATED_AT = 'usuario_nutrapharm.updated_at';
/** The default string format for model objects of the related table **/
const DEFAULT_STRING_FORMAT = 'YAML';
/**
* An identity map to hold any loaded instances of UsuarioNutrapharm objects.
* This must be public so that other peer classes can access this when hydrating from JOIN
* queries.
* @var array UsuarioNutrapharm[]
*/
public static $instances = array();
/**
* holds an array of fieldnames
*
* first dimension keys are the type constants
* e.g. UsuarioNutrapharmPeer::$fieldNames[UsuarioNutrapharmPeer::TYPE_PHPNAME][0] = 'Id'
*/
protected static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('UnuId', 'UnuUa', 'UnuIp', 'UnuIdNutrapharm', 'UnuNombre', 'UnuCorreo', 'UnuPathFotoInicial', 'UnuComentarioInicial', 'UnuPathFotoFinal', 'UnuComentarioFinal', 'UnuEstado', 'UnuEliminado', 'CreatedAt', 'UpdatedAt', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('unuId', 'unuUa', 'unuIp', 'unuIdNutrapharm', 'unuNombre', 'unuCorreo', 'unuPathFotoInicial', 'unuComentarioInicial', 'unuPathFotoFinal', 'unuComentarioFinal', 'unuEstado', 'unuEliminado', 'createdAt', 'updatedAt', ),
BasePeer::TYPE_COLNAME => array (UsuarioNutrapharmPeer::UNU_ID, UsuarioNutrapharmPeer::UNU_UA, UsuarioNutrapharmPeer::UNU_IP, UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM, UsuarioNutrapharmPeer::UNU_NOMBRE, UsuarioNutrapharmPeer::UNU_CORREO, UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL, UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL, UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL, UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL, UsuarioNutrapharmPeer::UNU_ESTADO, UsuarioNutrapharmPeer::UNU_ELIMINADO, UsuarioNutrapharmPeer::CREATED_AT, UsuarioNutrapharmPeer::UPDATED_AT, ),
BasePeer::TYPE_RAW_COLNAME => array ('UNU_ID', 'UNU_UA', 'UNU_IP', 'UNU_ID_NUTRAPHARM', 'UNU_NOMBRE', 'UNU_CORREO', 'UNU_PATH_FOTO_INICIAL', 'UNU_COMENTARIO_INICIAL', 'UNU_PATH_FOTO_FINAL', 'UNU_COMENTARIO_FINAL', 'UNU_ESTADO', 'UNU_ELIMINADO', 'CREATED_AT', 'UPDATED_AT', ),
BasePeer::TYPE_FIELDNAME => array ('unu_id', 'unu_ua', 'unu_ip', 'unu_id_nutrapharm', 'unu_nombre', 'unu_correo', 'unu_path_foto_inicial', 'unu_comentario_inicial', 'unu_path_foto_final', 'unu_comentario_final', 'unu_estado', 'unu_eliminado', 'created_at', 'updated_at', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, )
);
/**
* holds an array of keys for quick access to the fieldnames array
*
* first dimension keys are the type constants
* e.g. UsuarioNutrapharmPeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/
protected static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('UnuId' => 0, 'UnuUa' => 1, 'UnuIp' => 2, 'UnuIdNutrapharm' => 3, 'UnuNombre' => 4, 'UnuCorreo' => 5, 'UnuPathFotoInicial' => 6, 'UnuComentarioInicial' => 7, 'UnuPathFotoFinal' => 8, 'UnuComentarioFinal' => 9, 'UnuEstado' => 10, 'UnuEliminado' => 11, 'CreatedAt' => 12, 'UpdatedAt' => 13, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('unuId' => 0, 'unuUa' => 1, 'unuIp' => 2, 'unuIdNutrapharm' => 3, 'unuNombre' => 4, 'unuCorreo' => 5, 'unuPathFotoInicial' => 6, 'unuComentarioInicial' => 7, 'unuPathFotoFinal' => 8, 'unuComentarioFinal' => 9, 'unuEstado' => 10, 'unuEliminado' => 11, 'createdAt' => 12, 'updatedAt' => 13, ),
BasePeer::TYPE_COLNAME => array (UsuarioNutrapharmPeer::UNU_ID => 0, UsuarioNutrapharmPeer::UNU_UA => 1, UsuarioNutrapharmPeer::UNU_IP => 2, UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM => 3, UsuarioNutrapharmPeer::UNU_NOMBRE => 4, UsuarioNutrapharmPeer::UNU_CORREO => 5, UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL => 6, UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL => 7, UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL => 8, UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL => 9, UsuarioNutrapharmPeer::UNU_ESTADO => 10, UsuarioNutrapharmPeer::UNU_ELIMINADO => 11, UsuarioNutrapharmPeer::CREATED_AT => 12, UsuarioNutrapharmPeer::UPDATED_AT => 13, ),
BasePeer::TYPE_RAW_COLNAME => array ('UNU_ID' => 0, 'UNU_UA' => 1, 'UNU_IP' => 2, 'UNU_ID_NUTRAPHARM' => 3, 'UNU_NOMBRE' => 4, 'UNU_CORREO' => 5, 'UNU_PATH_FOTO_INICIAL' => 6, 'UNU_COMENTARIO_INICIAL' => 7, 'UNU_PATH_FOTO_FINAL' => 8, 'UNU_COMENTARIO_FINAL' => 9, 'UNU_ESTADO' => 10, 'UNU_ELIMINADO' => 11, 'CREATED_AT' => 12, 'UPDATED_AT' => 13, ),
BasePeer::TYPE_FIELDNAME => array ('unu_id' => 0, 'unu_ua' => 1, 'unu_ip' => 2, 'unu_id_nutrapharm' => 3, 'unu_nombre' => 4, 'unu_correo' => 5, 'unu_path_foto_inicial' => 6, 'unu_comentario_inicial' => 7, 'unu_path_foto_final' => 8, 'unu_comentario_final' => 9, 'unu_estado' => 10, 'unu_eliminado' => 11, 'created_at' => 12, 'updated_at' => 13, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, )
);
/**
* Translates a fieldname to another type
*
* @param string $name field name
* @param string $fromType One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @param string $toType One of the class type constants
* @return string translated name of the field.
* @throws PropelException - if the specified name could not be found in the fieldname mappings.
*/
public static function translateFieldName($name, $fromType, $toType)
{
$toNames = UsuarioNutrapharmPeer::getFieldNames($toType);
$key = isset(UsuarioNutrapharmPeer::$fieldKeys[$fromType][$name]) ? UsuarioNutrapharmPeer::$fieldKeys[$fromType][$name] : null;
if ($key === null) {
throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(UsuarioNutrapharmPeer::$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
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @return array A list of field names
* @throws PropelException - if the type is not valid.
*/
public static function getFieldNames($type = BasePeer::TYPE_PHPNAME)
{
if (!array_key_exists($type, UsuarioNutrapharmPeer::$fieldNames)) {
throw new PropelException('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.');
}
return UsuarioNutrapharmPeer::$fieldNames[$type];
}
/**
* Convenience method which changes table.column to alias.column.
*
* Using this method you can maintain SQL abstraction while using column aliases.
* <code>
* $c->addAlias("alias1", TablePeer::TABLE_NAME);
* $c->addJoin(TablePeer::alias("alias1", TablePeer::PRIMARY_KEY_COLUMN), TablePeer::PRIMARY_KEY_COLUMN);
* </code>
* @param string $alias The alias for the current table.
* @param string $column The column name for current table. (i.e. UsuarioNutrapharmPeer::COLUMN_NAME).
* @return string
*/
public static function alias($alias, $column)
{
return str_replace(UsuarioNutrapharmPeer::TABLE_NAME.'.', $alias.'.', $column);
}
/**
* Add all the columns needed to create a new object.
*
* Note: any columns that were marked with lazyLoad="true" in the
* XML schema will not be added to the select list and only loaded
* on demand.
*
* @param Criteria $criteria object containing the columns to add.
* @param string $alias optional table alias
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function addSelectColumns(Criteria $criteria, $alias = null)
{
if (null === $alias) {
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_ID);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_UA);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_IP);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_NOMBRE);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_CORREO);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_ESTADO);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UNU_ELIMINADO);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::CREATED_AT);
$criteria->addSelectColumn(UsuarioNutrapharmPeer::UPDATED_AT);
} else {
$criteria->addSelectColumn($alias . '.unu_id');
$criteria->addSelectColumn($alias . '.unu_ua');
$criteria->addSelectColumn($alias . '.unu_ip');
$criteria->addSelectColumn($alias . '.unu_id_nutrapharm');
$criteria->addSelectColumn($alias . '.unu_nombre');
$criteria->addSelectColumn($alias . '.unu_correo');
$criteria->addSelectColumn($alias . '.unu_path_foto_inicial');
$criteria->addSelectColumn($alias . '.unu_comentario_inicial');
$criteria->addSelectColumn($alias . '.unu_path_foto_final');
$criteria->addSelectColumn($alias . '.unu_comentario_final');
$criteria->addSelectColumn($alias . '.unu_estado');
$criteria->addSelectColumn($alias . '.unu_eliminado');
$criteria->addSelectColumn($alias . '.created_at');
$criteria->addSelectColumn($alias . '.updated_at');
}
}
/**
* Returns the number of rows matching criteria.
*
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param PropelPDO $con
* @return int Number of matching rows.
*/
public static function doCount(Criteria $criteria, $distinct = false, PropelPDO $con = null)
{
// we may modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
$criteria->setPrimaryTableName(UsuarioNutrapharmPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
}
if (!$criteria->hasSelectClause()) {
UsuarioNutrapharmPeer::addSelectColumns($criteria);
}
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
$criteria->setDbName(UsuarioNutrapharmPeer::DATABASE_NAME); // Set the correct dbName
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
// BasePeer returns a PDOStatement
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = (int) $row[0];
} else {
$count = 0; // no rows returned; we infer that means 0 matches.
}
$stmt->closeCursor();
return $count;
}
/**
* Selects one object from the DB.
*
* @param Criteria $criteria object used to create the SELECT statement.
* @param PropelPDO $con
* @return UsuarioNutrapharm
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectOne(Criteria $criteria, PropelPDO $con = null)
{
$critcopy = clone $criteria;
$critcopy->setLimit(1);
$objects = UsuarioNutrapharmPeer::doSelect($critcopy, $con);
if ($objects) {
return $objects[0];
}
return null;
}
/**
* Selects several row from the DB.
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con
* @return array Array of selected Objects
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelect(Criteria $criteria, PropelPDO $con = null)
{
return UsuarioNutrapharmPeer::populateObjects(UsuarioNutrapharmPeer::doSelectStmt($criteria, $con));
}
/**
* Prepares the Criteria object and uses the parent doSelect() method to execute a PDOStatement.
*
* Use this method directly if you want to work with an executed statement directly (for example
* to perform your own object hydration).
*
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con The connection to use
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return PDOStatement The executed PDOStatement object.
* @see BasePeer::doSelect()
*/
public static function doSelectStmt(Criteria $criteria, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
if (!$criteria->hasSelectClause()) {
$criteria = clone $criteria;
UsuarioNutrapharmPeer::addSelectColumns($criteria);
}
// Set the correct dbName
$criteria->setDbName(UsuarioNutrapharmPeer::DATABASE_NAME);
// BasePeer returns a PDOStatement
return BasePeer::doSelect($criteria, $con);
}
/**
* Adds an object to the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doSelect*()
* methods in your stub classes -- you may need to explicitly add objects
* to the cache in order to ensure that the same objects are always returned by doSelect*()
* and retrieveByPK*() calls.
*
* @param UsuarioNutrapharm $obj A UsuarioNutrapharm object.
* @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
*/
public static function addInstanceToPool($obj, $key = null)
{
if (Propel::isInstancePoolingEnabled()) {
if ($key === null) {
$key = (string) $obj->getUnuId();
} // if key === null
UsuarioNutrapharmPeer::$instances[$key] = $obj;
}
}
/**
* Removes an object from the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doDelete
* methods in your stub classes -- you may need to explicitly remove objects
* from the cache in order to prevent returning objects that no longer exist.
*
* @param mixed $value A UsuarioNutrapharm object or a primary key value.
*
* @return void
* @throws PropelException - if the value is invalid.
*/
public static function removeInstanceFromPool($value)
{
if (Propel::isInstancePoolingEnabled() && $value !== null) {
if (is_object($value) && $value instanceof UsuarioNutrapharm) {
$key = (string) $value->getUnuId();
} elseif (is_scalar($value)) {
// assume we've been passed a primary key
$key = (string) $value;
} else {
$e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or UsuarioNutrapharm object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
throw $e;
}
unset(UsuarioNutrapharmPeer::$instances[$key]);
}
} // removeInstanceFromPool()
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param string $key The key (@see getPrimaryKeyHash()) for this instance.
* @return UsuarioNutrapharm Found object or null if 1) no instance exists for specified key or 2) instance pooling has been disabled.
* @see getPrimaryKeyHash()
*/
public static function getInstanceFromPool($key)
{
if (Propel::isInstancePoolingEnabled()) {
if (isset(UsuarioNutrapharmPeer::$instances[$key])) {
return UsuarioNutrapharmPeer::$instances[$key];
}
}
return null; // just to be explicit
}
/**
* Clear the instance pool.
*
* @return void
*/
public static function clearInstancePool($and_clear_all_references = false)
{
if ($and_clear_all_references) {
foreach (UsuarioNutrapharmPeer::$instances as $instance) {
$instance->clearAllReferences(true);
}
}
UsuarioNutrapharmPeer::$instances = array();
}
/**
* Method to invalidate the instance pool of all tables related to usuario_nutrapharm
* by a foreign key with ON DELETE CASCADE
*/
public static function clearRelatedInstancePool()
{
}
/**
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
*
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return string A string version of PK or null if the components of primary key in result array are all null.
*/
public static function getPrimaryKeyHashFromRow($row, $startcol = 0)
{
// If the PK cannot be derived from the row, return null.
if ($row[$startcol] === null) {
return null;
}
return (string) $row[$startcol];
}
/**
* Retrieves the primary key from the DB resultset row
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, an array of the primary key columns will be returned.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return mixed The primary key of the row
*/
public static function getPrimaryKeyFromRow($row, $startcol = 0)
{
return (int) $row[$startcol];
}
/**
* The returned array will contain objects of the default type or
* objects that inherit from the default.
*
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function populateObjects(PDOStatement $stmt)
{
$results = array();
// set the class once to avoid overhead in the loop
$cls = UsuarioNutrapharmPeer::getOMClass();
// populate the object(s)
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key = UsuarioNutrapharmPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj = UsuarioNutrapharmPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, 0, true); // rehydrate
$results[] = $obj;
} else {
$obj = new $cls();
$obj->hydrate($row);
$results[] = $obj;
UsuarioNutrapharmPeer::addInstanceToPool($obj, $key);
} // if key exists
}
$stmt->closeCursor();
return $results;
}
/**
* Populates an object of the default type or an object that inherit from the default.
*
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return array (UsuarioNutrapharm object, last column rank)
*/
public static function populateObject($row, $startcol = 0)
{
$key = UsuarioNutrapharmPeer::getPrimaryKeyHashFromRow($row, $startcol);
if (null !== ($obj = UsuarioNutrapharmPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj->hydrate($row, $startcol, true); // rehydrate
$col = $startcol + UsuarioNutrapharmPeer::NUM_HYDRATE_COLUMNS;
} else {
$cls = UsuarioNutrapharmPeer::OM_CLASS;
$obj = new $cls();
$col = $obj->hydrate($row, $startcol);
UsuarioNutrapharmPeer::addInstanceToPool($obj, $key);
}
return array($obj, $col);
}
/**
* Returns the TableMap related to this peer.
* This method is not needed for general use but a specific application could have a need.
* @return TableMap
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function getTableMap()
{
return Propel::getDatabaseMap(UsuarioNutrapharmPeer::DATABASE_NAME)->getTable(UsuarioNutrapharmPeer::TABLE_NAME);
}
/**
* Add a TableMap instance to the database for this peer class.
*/
public static function buildTableMap()
{
$dbMap = Propel::getDatabaseMap(BaseUsuarioNutrapharmPeer::DATABASE_NAME);
if (!$dbMap->hasTable(BaseUsuarioNutrapharmPeer::TABLE_NAME)) {
$dbMap->addTableObject(new \AppBundle\Model\map\UsuarioNutrapharmTableMap());
}
}
/**
* The class that the Peer will make instances of.
*
*
* @return string ClassName
*/
public static function getOMClass($row = 0, $colnum = 0)
{
return UsuarioNutrapharmPeer::OM_CLASS;
}
/**
* Performs an INSERT on the database, given a UsuarioNutrapharm or Criteria object.
*
* @param mixed $values Criteria or UsuarioNutrapharm object containing data that is used to create the INSERT statement.
* @param PropelPDO $con the PropelPDO connection to use
* @return mixed The new primary key.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doInsert($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
} else {
$criteria = $values->buildCriteria(); // build Criteria from UsuarioNutrapharm object
}
if ($criteria->containsKey(UsuarioNutrapharmPeer::UNU_ID) && $criteria->keyContainsValue(UsuarioNutrapharmPeer::UNU_ID) ) {
throw new PropelException('Cannot insert a value for auto-increment primary key ('.UsuarioNutrapharmPeer::UNU_ID.')');
}
// Set the correct dbName
$criteria->setDbName(UsuarioNutrapharmPeer::DATABASE_NAME);
try {
// use transaction because $criteria could contain info
// for more than one table (I guess, conceivably)
$con->beginTransaction();
$pk = BasePeer::doInsert($criteria, $con);
$con->commit();
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
return $pk;
}
/**
* Performs an UPDATE on the database, given a UsuarioNutrapharm or Criteria object.
*
* @param mixed $values Criteria or UsuarioNutrapharm object containing data that is used to create the UPDATE statement.
* @param PropelPDO $con The connection to use (specify PropelPDO connection object to exert more control over transactions).
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doUpdate($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$selectCriteria = new Criteria(UsuarioNutrapharmPeer::DATABASE_NAME);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$comparison = $criteria->getComparison(UsuarioNutrapharmPeer::UNU_ID);
$value = $criteria->remove(UsuarioNutrapharmPeer::UNU_ID);
if ($value) {
$selectCriteria->add(UsuarioNutrapharmPeer::UNU_ID, $value, $comparison);
} else {
$selectCriteria->setPrimaryTableName(UsuarioNutrapharmPeer::TABLE_NAME);
}
} else { // $values is UsuarioNutrapharm object
$criteria = $values->buildCriteria(); // gets full criteria
$selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s)
}
// set the correct dbName
$criteria->setDbName(UsuarioNutrapharmPeer::DATABASE_NAME);
return BasePeer::doUpdate($selectCriteria, $criteria, $con);
}
/**
* Deletes all rows from the usuario_nutrapharm table.
*
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException
*/
public static function doDeleteAll(PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDeleteAll(UsuarioNutrapharmPeer::TABLE_NAME, $con, UsuarioNutrapharmPeer::DATABASE_NAME);
// Because this db requires some delete cascade/set null emulation, we have to
// clear the cached instance *after* the emulation has happened (since
// instances get re-added by the select statement contained therein).
UsuarioNutrapharmPeer::clearInstancePool();
UsuarioNutrapharmPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Performs a DELETE on the database, given a UsuarioNutrapharm or Criteria object OR a primary key value.
*
* @param mixed $values Criteria or UsuarioNutrapharm object or primary key or array of primary keys
* which is used to create the DELETE statement
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
* if supported by native driver or if emulated using Propel.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doDelete($values, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
}
if ($values instanceof Criteria) {
// invalidate the cache for all objects of this type, since we have no
// way of knowing (without running a query) what objects should be invalidated
// from the cache based on this Criteria.
UsuarioNutrapharmPeer::clearInstancePool();
// rename for clarity
$criteria = clone $values;
} elseif ($values instanceof UsuarioNutrapharm) { // it's a model object
// invalidate the cache for this single object
UsuarioNutrapharmPeer::removeInstanceFromPool($values);
// create criteria based on pk values
$criteria = $values->buildPkeyCriteria();
} else { // it's a primary key, or an array of pks
$criteria = new Criteria(UsuarioNutrapharmPeer::DATABASE_NAME);
$criteria->add(UsuarioNutrapharmPeer::UNU_ID, (array) $values, Criteria::IN);
// invalidate the cache for this object(s)
foreach ((array) $values as $singleval) {
UsuarioNutrapharmPeer::removeInstanceFromPool($singleval);
}
}
// Set the correct dbName
$criteria->setDbName(UsuarioNutrapharmPeer::DATABASE_NAME);
$affectedRows = 0; // initialize var to track total num of affected rows
try {
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDelete($criteria, $con);
UsuarioNutrapharmPeer::clearRelatedInstancePool();
$con->commit();
return $affectedRows;
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
}
/**
* Validates all modified columns of given UsuarioNutrapharm object.
* If parameter $columns is either a single column name or an array of column names
* than only those columns are validated.
*
* NOTICE: This does not apply to primary or foreign keys for now.
*
* @param UsuarioNutrapharm $obj The object to validate.
* @param mixed $cols Column name or array of column names.
*
* @return mixed TRUE if all columns are valid or the error message of the first invalid column.
*/
public static function doValidate($obj, $cols = null)
{
$columns = array();
if ($cols) {
$dbMap = Propel::getDatabaseMap(UsuarioNutrapharmPeer::DATABASE_NAME);
$tableMap = $dbMap->getTable(UsuarioNutrapharmPeer::TABLE_NAME);
if (! is_array($cols)) {
$cols = array($cols);
}
foreach ($cols as $colName) {
if ($tableMap->hasColumn($colName)) {
$get = 'get' . $tableMap->getColumn($colName)->getPhpName();
$columns[$colName] = $obj->$get();
}
}
} else {
}
return BasePeer::doValidate(UsuarioNutrapharmPeer::DATABASE_NAME, UsuarioNutrapharmPeer::TABLE_NAME, $columns);
}
/**
* Retrieve a single object by pkey.
*
* @param int $pk the primary key.
* @param PropelPDO $con the connection to use
* @return UsuarioNutrapharm
*/
public static function retrieveByPK($pk, PropelPDO $con = null)
{
if (null !== ($obj = UsuarioNutrapharmPeer::getInstanceFromPool((string) $pk))) {
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria = new Criteria(UsuarioNutrapharmPeer::DATABASE_NAME);
$criteria->add(UsuarioNutrapharmPeer::UNU_ID, $pk);
$v = UsuarioNutrapharmPeer::doSelect($criteria, $con);
return !empty($v) > 0 ? $v[0] : null;
}
/**
* Retrieve multiple objects by pkey.
*
* @param array $pks List of primary keys
* @param PropelPDO $con the connection to use
* @return UsuarioNutrapharm[]
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function retrieveByPKs($pks, PropelPDO $con = null)
{
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$objs = null;
if (empty($pks)) {
$objs = array();
} else {
$criteria = new Criteria(UsuarioNutrapharmPeer::DATABASE_NAME);
$criteria->add(UsuarioNutrapharmPeer::UNU_ID, $pks, Criteria::IN);
$objs = UsuarioNutrapharmPeer::doSelect($criteria, $con);
}
return $objs;
}
} // BaseUsuarioNutrapharmPeer
// This is the static code needed to register the TableMap for this table with the main Propel class.
//
BaseUsuarioNutrapharmPeer::buildTableMap();
<?php
namespace AppBundle\Model\om;
use \Criteria;
use \Exception;
use \ModelCriteria;
use \ModelJoin;
use \PDO;
use \Propel;
use \PropelCollection;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use AppBundle\Model\EnvioCorreoUsuario;
use AppBundle\Model\UsuarioNutrapharm;
use AppBundle\Model\UsuarioNutrapharmPeer;
use AppBundle\Model\UsuarioNutrapharmQuery;
/**
* @method UsuarioNutrapharmQuery orderByUnuId($order = Criteria::ASC) Order by the unu_id column
* @method UsuarioNutrapharmQuery orderByUnuUa($order = Criteria::ASC) Order by the unu_ua column
* @method UsuarioNutrapharmQuery orderByUnuIp($order = Criteria::ASC) Order by the unu_ip column
* @method UsuarioNutrapharmQuery orderByUnuIdNutrapharm($order = Criteria::ASC) Order by the unu_id_nutrapharm column
* @method UsuarioNutrapharmQuery orderByUnuNombre($order = Criteria::ASC) Order by the unu_nombre column
* @method UsuarioNutrapharmQuery orderByUnuCorreo($order = Criteria::ASC) Order by the unu_correo column
* @method UsuarioNutrapharmQuery orderByUnuPathFotoInicial($order = Criteria::ASC) Order by the unu_path_foto_inicial column
* @method UsuarioNutrapharmQuery orderByUnuComentarioInicial($order = Criteria::ASC) Order by the unu_comentario_inicial column
* @method UsuarioNutrapharmQuery orderByUnuPathFotoFinal($order = Criteria::ASC) Order by the unu_path_foto_final column
* @method UsuarioNutrapharmQuery orderByUnuComentarioFinal($order = Criteria::ASC) Order by the unu_comentario_final column
* @method UsuarioNutrapharmQuery orderByUnuEstado($order = Criteria::ASC) Order by the unu_estado column
* @method UsuarioNutrapharmQuery orderByUnuEliminado($order = Criteria::ASC) Order by the unu_eliminado column
* @method UsuarioNutrapharmQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
* @method UsuarioNutrapharmQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
*
* @method UsuarioNutrapharmQuery groupByUnuId() Group by the unu_id column
* @method UsuarioNutrapharmQuery groupByUnuUa() Group by the unu_ua column
* @method UsuarioNutrapharmQuery groupByUnuIp() Group by the unu_ip column
* @method UsuarioNutrapharmQuery groupByUnuIdNutrapharm() Group by the unu_id_nutrapharm column
* @method UsuarioNutrapharmQuery groupByUnuNombre() Group by the unu_nombre column
* @method UsuarioNutrapharmQuery groupByUnuCorreo() Group by the unu_correo column
* @method UsuarioNutrapharmQuery groupByUnuPathFotoInicial() Group by the unu_path_foto_inicial column
* @method UsuarioNutrapharmQuery groupByUnuComentarioInicial() Group by the unu_comentario_inicial column
* @method UsuarioNutrapharmQuery groupByUnuPathFotoFinal() Group by the unu_path_foto_final column
* @method UsuarioNutrapharmQuery groupByUnuComentarioFinal() Group by the unu_comentario_final column
* @method UsuarioNutrapharmQuery groupByUnuEstado() Group by the unu_estado column
* @method UsuarioNutrapharmQuery groupByUnuEliminado() Group by the unu_eliminado column
* @method UsuarioNutrapharmQuery groupByCreatedAt() Group by the created_at column
* @method UsuarioNutrapharmQuery groupByUpdatedAt() Group by the updated_at column
*
* @method UsuarioNutrapharmQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method UsuarioNutrapharmQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method UsuarioNutrapharmQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method UsuarioNutrapharmQuery leftJoinEnvioCorreoUsuario($relationAlias = null) Adds a LEFT JOIN clause to the query using the EnvioCorreoUsuario relation
* @method UsuarioNutrapharmQuery rightJoinEnvioCorreoUsuario($relationAlias = null) Adds a RIGHT JOIN clause to the query using the EnvioCorreoUsuario relation
* @method UsuarioNutrapharmQuery innerJoinEnvioCorreoUsuario($relationAlias = null) Adds a INNER JOIN clause to the query using the EnvioCorreoUsuario relation
*
* @method UsuarioNutrapharm findOne(PropelPDO $con = null) Return the first UsuarioNutrapharm matching the query
* @method UsuarioNutrapharm findOneOrCreate(PropelPDO $con = null) Return the first UsuarioNutrapharm matching the query, or a new UsuarioNutrapharm object populated from the query conditions when no match is found
*
* @method UsuarioNutrapharm findOneByUnuUa(string $unu_ua) Return the first UsuarioNutrapharm filtered by the unu_ua column
* @method UsuarioNutrapharm findOneByUnuIp(string $unu_ip) Return the first UsuarioNutrapharm filtered by the unu_ip column
* @method UsuarioNutrapharm findOneByUnuIdNutrapharm(string $unu_id_nutrapharm) Return the first UsuarioNutrapharm filtered by the unu_id_nutrapharm column
* @method UsuarioNutrapharm findOneByUnuNombre(string $unu_nombre) Return the first UsuarioNutrapharm filtered by the unu_nombre column
* @method UsuarioNutrapharm findOneByUnuCorreo(string $unu_correo) Return the first UsuarioNutrapharm filtered by the unu_correo column
* @method UsuarioNutrapharm findOneByUnuPathFotoInicial(string $unu_path_foto_inicial) Return the first UsuarioNutrapharm filtered by the unu_path_foto_inicial column
* @method UsuarioNutrapharm findOneByUnuComentarioInicial(string $unu_comentario_inicial) Return the first UsuarioNutrapharm filtered by the unu_comentario_inicial column
* @method UsuarioNutrapharm findOneByUnuPathFotoFinal(string $unu_path_foto_final) Return the first UsuarioNutrapharm filtered by the unu_path_foto_final column
* @method UsuarioNutrapharm findOneByUnuComentarioFinal(string $unu_comentario_final) Return the first UsuarioNutrapharm filtered by the unu_comentario_final column
* @method UsuarioNutrapharm findOneByUnuEstado(int $unu_estado) Return the first UsuarioNutrapharm filtered by the unu_estado column
* @method UsuarioNutrapharm findOneByUnuEliminado(int $unu_eliminado) Return the first UsuarioNutrapharm filtered by the unu_eliminado column
* @method UsuarioNutrapharm findOneByCreatedAt(string $created_at) Return the first UsuarioNutrapharm filtered by the created_at column
* @method UsuarioNutrapharm findOneByUpdatedAt(string $updated_at) Return the first UsuarioNutrapharm filtered by the updated_at column
*
* @method array findByUnuId(int $unu_id) Return UsuarioNutrapharm objects filtered by the unu_id column
* @method array findByUnuUa(string $unu_ua) Return UsuarioNutrapharm objects filtered by the unu_ua column
* @method array findByUnuIp(string $unu_ip) Return UsuarioNutrapharm objects filtered by the unu_ip column
* @method array findByUnuIdNutrapharm(string $unu_id_nutrapharm) Return UsuarioNutrapharm objects filtered by the unu_id_nutrapharm column
* @method array findByUnuNombre(string $unu_nombre) Return UsuarioNutrapharm objects filtered by the unu_nombre column
* @method array findByUnuCorreo(string $unu_correo) Return UsuarioNutrapharm objects filtered by the unu_correo column
* @method array findByUnuPathFotoInicial(string $unu_path_foto_inicial) Return UsuarioNutrapharm objects filtered by the unu_path_foto_inicial column
* @method array findByUnuComentarioInicial(string $unu_comentario_inicial) Return UsuarioNutrapharm objects filtered by the unu_comentario_inicial column
* @method array findByUnuPathFotoFinal(string $unu_path_foto_final) Return UsuarioNutrapharm objects filtered by the unu_path_foto_final column
* @method array findByUnuComentarioFinal(string $unu_comentario_final) Return UsuarioNutrapharm objects filtered by the unu_comentario_final column
* @method array findByUnuEstado(int $unu_estado) Return UsuarioNutrapharm objects filtered by the unu_estado column
* @method array findByUnuEliminado(int $unu_eliminado) Return UsuarioNutrapharm objects filtered by the unu_eliminado column
* @method array findByCreatedAt(string $created_at) Return UsuarioNutrapharm objects filtered by the created_at column
* @method array findByUpdatedAt(string $updated_at) Return UsuarioNutrapharm objects filtered by the updated_at column
*/
abstract class BaseUsuarioNutrapharmQuery extends ModelCriteria
{
/**
* Initializes internal state of BaseUsuarioNutrapharmQuery object.
*
* @param string $dbName The dabase name
* @param string $modelName The phpName of a model, e.g. 'Book'
* @param string $modelAlias The alias for the model in this query, e.g. 'b'
*/
public function __construct($dbName = null, $modelName = null, $modelAlias = null)
{
if (null === $dbName) {
$dbName = 'conn1';
}
if (null === $modelName) {
$modelName = 'AppBundle\\Model\\UsuarioNutrapharm';
}
parent::__construct($dbName, $modelName, $modelAlias);
}
/**
* Returns a new UsuarioNutrapharmQuery object.
*
* @param string $modelAlias The alias of a model in the query
* @param UsuarioNutrapharmQuery|Criteria $criteria Optional Criteria to build the query from
*
* @return UsuarioNutrapharmQuery
*/
public static function create($modelAlias = null, $criteria = null)
{
if ($criteria instanceof UsuarioNutrapharmQuery) {
return $criteria;
}
$query = new UsuarioNutrapharmQuery(null, null, $modelAlias);
if ($criteria instanceof Criteria) {
$query->mergeWith($criteria);
}
return $query;
}
/**
* Find object by primary key.
* Propel uses the instance pool to skip the database if the object exists.
* Go fast if the query is untouched.
*
* <code>
* $obj = $c->findPk(12, $con);
* </code>
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return UsuarioNutrapharm|UsuarioNutrapharm[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if ((null !== ($obj = UsuarioNutrapharmPeer::getInstanceFromPool((string) $key))) && !$this->formatter) {
// the object is already in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(UsuarioNutrapharmPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
if ($this->formatter || $this->modelAlias || $this->with || $this->select
|| $this->selectColumns || $this->asColumns || $this->selectModifiers
|| $this->map || $this->having || $this->joins) {
return $this->findPkComplex($key, $con);
} else {
return $this->findPkSimple($key, $con);
}
}
/**
* Alias of findPk to use instance pooling
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return UsuarioNutrapharm A model object, or null if the key is not found
* @throws PropelException
*/
public function findOneByUnuId($key, $con = null)
{
return $this->findPk($key, $con);
}
/**
* Find object by primary key using raw SQL to go fast.
* Bypass doSelect() and the object formatter by using generated code.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return UsuarioNutrapharm A model object, or null if the key is not found
* @throws PropelException
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `unu_id`, `unu_ua`, `unu_ip`, `unu_id_nutrapharm`, `unu_nombre`, `unu_correo`, `unu_path_foto_inicial`, `unu_comentario_inicial`, `unu_path_foto_final`, `unu_comentario_final`, `unu_estado`, `unu_eliminado`, `created_at`, `updated_at` FROM `usuario_nutrapharm` WHERE `unu_id` = :p0';
try {
$stmt = $con->prepare($sql);
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
}
$obj = null;
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$obj = new UsuarioNutrapharm();
$obj->hydrate($row);
UsuarioNutrapharmPeer::addInstanceToPool($obj, (string) $key);
}
$stmt->closeCursor();
return $obj;
}
/**
* Find object by primary key.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return UsuarioNutrapharm|UsuarioNutrapharm[]|mixed the result, formatted by the current formatter
*/
protected function findPkComplex($key, $con)
{
// As the query uses a PK condition, no limit(1) is necessary.
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKey($key)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
}
/**
* Find objects by primary key
* <code>
* $objs = $c->findPks(array(12, 56, 832), $con);
* </code>
* @param array $keys Primary keys to use for the query
* @param PropelPDO $con an optional connection object
*
* @return PropelObjectCollection|UsuarioNutrapharm[]|mixed the list of results, formatted by the current formatter
*/
public function findPks($keys, $con = null)
{
if ($con === null) {
$con = Propel::getConnection($this->getDbName(), Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKeys($keys)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->format($stmt);
}
/**
* Filter the query by primary key
*
* @param mixed $key Primary key to use for the query
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByPrimaryKey($key)
{
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID, $key, Criteria::EQUAL);
}
/**
* Filter the query by a list of primary keys
*
* @param array $keys The list of primary key to use for the query
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByPrimaryKeys($keys)
{
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID, $keys, Criteria::IN);
}
/**
* Filter the query on the unu_id column
*
* Example usage:
* <code>
* $query->filterByUnuId(1234); // WHERE unu_id = 1234
* $query->filterByUnuId(array(12, 34)); // WHERE unu_id IN (12, 34)
* $query->filterByUnuId(array('min' => 12)); // WHERE unu_id >= 12
* $query->filterByUnuId(array('max' => 12)); // WHERE unu_id <= 12
* </code>
*
* @param mixed $unuId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuId($unuId = null, $comparison = null)
{
if (is_array($unuId)) {
$useMinMax = false;
if (isset($unuId['min'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID, $unuId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($unuId['max'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID, $unuId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID, $unuId, $comparison);
}
/**
* Filter the query on the unu_ua column
*
* Example usage:
* <code>
* $query->filterByUnuUa('fooValue'); // WHERE unu_ua = 'fooValue'
* $query->filterByUnuUa('%fooValue%'); // WHERE unu_ua LIKE '%fooValue%'
* </code>
*
* @param string $unuUa The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuUa($unuUa = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuUa)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuUa)) {
$unuUa = str_replace('*', '%', $unuUa);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_UA, $unuUa, $comparison);
}
/**
* Filter the query on the unu_ip column
*
* Example usage:
* <code>
* $query->filterByUnuIp('fooValue'); // WHERE unu_ip = 'fooValue'
* $query->filterByUnuIp('%fooValue%'); // WHERE unu_ip LIKE '%fooValue%'
* </code>
*
* @param string $unuIp The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuIp($unuIp = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuIp)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuIp)) {
$unuIp = str_replace('*', '%', $unuIp);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_IP, $unuIp, $comparison);
}
/**
* Filter the query on the unu_id_nutrapharm column
*
* Example usage:
* <code>
* $query->filterByUnuIdNutrapharm('fooValue'); // WHERE unu_id_nutrapharm = 'fooValue'
* $query->filterByUnuIdNutrapharm('%fooValue%'); // WHERE unu_id_nutrapharm LIKE '%fooValue%'
* </code>
*
* @param string $unuIdNutrapharm The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuIdNutrapharm($unuIdNutrapharm = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuIdNutrapharm)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuIdNutrapharm)) {
$unuIdNutrapharm = str_replace('*', '%', $unuIdNutrapharm);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID_NUTRAPHARM, $unuIdNutrapharm, $comparison);
}
/**
* Filter the query on the unu_nombre column
*
* Example usage:
* <code>
* $query->filterByUnuNombre('fooValue'); // WHERE unu_nombre = 'fooValue'
* $query->filterByUnuNombre('%fooValue%'); // WHERE unu_nombre LIKE '%fooValue%'
* </code>
*
* @param string $unuNombre The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuNombre($unuNombre = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuNombre)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuNombre)) {
$unuNombre = str_replace('*', '%', $unuNombre);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_NOMBRE, $unuNombre, $comparison);
}
/**
* Filter the query on the unu_correo column
*
* Example usage:
* <code>
* $query->filterByUnuCorreo('fooValue'); // WHERE unu_correo = 'fooValue'
* $query->filterByUnuCorreo('%fooValue%'); // WHERE unu_correo LIKE '%fooValue%'
* </code>
*
* @param string $unuCorreo The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuCorreo($unuCorreo = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuCorreo)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuCorreo)) {
$unuCorreo = str_replace('*', '%', $unuCorreo);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_CORREO, $unuCorreo, $comparison);
}
/**
* Filter the query on the unu_path_foto_inicial column
*
* Example usage:
* <code>
* $query->filterByUnuPathFotoInicial('fooValue'); // WHERE unu_path_foto_inicial = 'fooValue'
* $query->filterByUnuPathFotoInicial('%fooValue%'); // WHERE unu_path_foto_inicial LIKE '%fooValue%'
* </code>
*
* @param string $unuPathFotoInicial The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuPathFotoInicial($unuPathFotoInicial = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuPathFotoInicial)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuPathFotoInicial)) {
$unuPathFotoInicial = str_replace('*', '%', $unuPathFotoInicial);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_PATH_FOTO_INICIAL, $unuPathFotoInicial, $comparison);
}
/**
* Filter the query on the unu_comentario_inicial column
*
* Example usage:
* <code>
* $query->filterByUnuComentarioInicial('fooValue'); // WHERE unu_comentario_inicial = 'fooValue'
* $query->filterByUnuComentarioInicial('%fooValue%'); // WHERE unu_comentario_inicial LIKE '%fooValue%'
* </code>
*
* @param string $unuComentarioInicial The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuComentarioInicial($unuComentarioInicial = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuComentarioInicial)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuComentarioInicial)) {
$unuComentarioInicial = str_replace('*', '%', $unuComentarioInicial);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_COMENTARIO_INICIAL, $unuComentarioInicial, $comparison);
}
/**
* Filter the query on the unu_path_foto_final column
*
* Example usage:
* <code>
* $query->filterByUnuPathFotoFinal('fooValue'); // WHERE unu_path_foto_final = 'fooValue'
* $query->filterByUnuPathFotoFinal('%fooValue%'); // WHERE unu_path_foto_final LIKE '%fooValue%'
* </code>
*
* @param string $unuPathFotoFinal The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuPathFotoFinal($unuPathFotoFinal = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuPathFotoFinal)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuPathFotoFinal)) {
$unuPathFotoFinal = str_replace('*', '%', $unuPathFotoFinal);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_PATH_FOTO_FINAL, $unuPathFotoFinal, $comparison);
}
/**
* Filter the query on the unu_comentario_final column
*
* Example usage:
* <code>
* $query->filterByUnuComentarioFinal('fooValue'); // WHERE unu_comentario_final = 'fooValue'
* $query->filterByUnuComentarioFinal('%fooValue%'); // WHERE unu_comentario_final LIKE '%fooValue%'
* </code>
*
* @param string $unuComentarioFinal The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuComentarioFinal($unuComentarioFinal = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($unuComentarioFinal)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $unuComentarioFinal)) {
$unuComentarioFinal = str_replace('*', '%', $unuComentarioFinal);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_COMENTARIO_FINAL, $unuComentarioFinal, $comparison);
}
/**
* Filter the query on the unu_estado column
*
* Example usage:
* <code>
* $query->filterByUnuEstado(1234); // WHERE unu_estado = 1234
* $query->filterByUnuEstado(array(12, 34)); // WHERE unu_estado IN (12, 34)
* $query->filterByUnuEstado(array('min' => 12)); // WHERE unu_estado >= 12
* $query->filterByUnuEstado(array('max' => 12)); // WHERE unu_estado <= 12
* </code>
*
* @param mixed $unuEstado The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuEstado($unuEstado = null, $comparison = null)
{
if (is_array($unuEstado)) {
$useMinMax = false;
if (isset($unuEstado['min'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ESTADO, $unuEstado['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($unuEstado['max'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ESTADO, $unuEstado['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ESTADO, $unuEstado, $comparison);
}
/**
* Filter the query on the unu_eliminado column
*
* Example usage:
* <code>
* $query->filterByUnuEliminado(1234); // WHERE unu_eliminado = 1234
* $query->filterByUnuEliminado(array(12, 34)); // WHERE unu_eliminado IN (12, 34)
* $query->filterByUnuEliminado(array('min' => 12)); // WHERE unu_eliminado >= 12
* $query->filterByUnuEliminado(array('max' => 12)); // WHERE unu_eliminado <= 12
* </code>
*
* @param mixed $unuEliminado The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUnuEliminado($unuEliminado = null, $comparison = null)
{
if (is_array($unuEliminado)) {
$useMinMax = false;
if (isset($unuEliminado['min'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ELIMINADO, $unuEliminado['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($unuEliminado['max'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ELIMINADO, $unuEliminado['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ELIMINADO, $unuEliminado, $comparison);
}
/**
* Filter the query on the created_at column
*
* Example usage:
* <code>
* $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt('now'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at < '2011-03-13'
* </code>
*
* @param mixed $createdAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByCreatedAt($createdAt = null, $comparison = null)
{
if (is_array($createdAt)) {
$useMinMax = false;
if (isset($createdAt['min'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::CREATED_AT, $createdAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($createdAt['max'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::CREATED_AT, $createdAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::CREATED_AT, $createdAt, $comparison);
}
/**
* Filter the query on the updated_at column
*
* Example usage:
* <code>
* $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt('now'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at < '2011-03-13'
* </code>
*
* @param mixed $updatedAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function filterByUpdatedAt($updatedAt = null, $comparison = null)
{
if (is_array($updatedAt)) {
$useMinMax = false;
if (isset($updatedAt['min'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UPDATED_AT, $updatedAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($updatedAt['max'])) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UPDATED_AT, $updatedAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(UsuarioNutrapharmPeer::UPDATED_AT, $updatedAt, $comparison);
}
/**
* Filter the query by a related EnvioCorreoUsuario object
*
* @param EnvioCorreoUsuario|PropelObjectCollection $envioCorreoUsuario the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByEnvioCorreoUsuario($envioCorreoUsuario, $comparison = null)
{
if ($envioCorreoUsuario instanceof EnvioCorreoUsuario) {
return $this
->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID, $envioCorreoUsuario->getUnuId(), $comparison);
} elseif ($envioCorreoUsuario instanceof PropelObjectCollection) {
return $this
->useEnvioCorreoUsuarioQuery()
->filterByPrimaryKeys($envioCorreoUsuario->getPrimaryKeys())
->endUse();
} else {
throw new PropelException('filterByEnvioCorreoUsuario() only accepts arguments of type EnvioCorreoUsuario or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the EnvioCorreoUsuario relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function joinEnvioCorreoUsuario($relationAlias = null, $joinType = Criteria::INNER_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('EnvioCorreoUsuario');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'EnvioCorreoUsuario');
}
return $this;
}
/**
* Use the EnvioCorreoUsuario relation EnvioCorreoUsuario object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \AppBundle\Model\EnvioCorreoUsuarioQuery A secondary query class using the current class as primary query
*/
public function useEnvioCorreoUsuarioQuery($relationAlias = null, $joinType = Criteria::INNER_JOIN)
{
return $this
->joinEnvioCorreoUsuario($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'EnvioCorreoUsuario', '\AppBundle\Model\EnvioCorreoUsuarioQuery');
}
/**
* Exclude object from result
*
* @param UsuarioNutrapharm $usuarioNutrapharm Object to remove from the list of results
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function prune($usuarioNutrapharm = null)
{
if ($usuarioNutrapharm) {
$this->addUsingAlias(UsuarioNutrapharmPeer::UNU_ID, $usuarioNutrapharm->getUnuId(), Criteria::NOT_EQUAL);
}
return $this;
}
// timestampable behavior
/**
* Filter by the latest updated
*
* @param int $nbDays Maximum age of the latest update in days
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function recentlyUpdated($nbDays = 7)
{
return $this->addUsingAlias(UsuarioNutrapharmPeer::UPDATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by update date desc
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function lastUpdatedFirst()
{
return $this->addDescendingOrderByColumn(UsuarioNutrapharmPeer::UPDATED_AT);
}
/**
* Order by update date asc
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function firstUpdatedFirst()
{
return $this->addAscendingOrderByColumn(UsuarioNutrapharmPeer::UPDATED_AT);
}
/**
* Filter by the latest created
*
* @param int $nbDays Maximum age of in days
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function recentlyCreated($nbDays = 7)
{
return $this->addUsingAlias(UsuarioNutrapharmPeer::CREATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by create date desc
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function lastCreatedFirst()
{
return $this->addDescendingOrderByColumn(UsuarioNutrapharmPeer::CREATED_AT);
}
/**
* Order by create date asc
*
* @return UsuarioNutrapharmQuery The current query, for fluid interface
*/
public function firstCreatedFirst()
{
return $this->addAscendingOrderByColumn(UsuarioNutrapharmPeer::CREATED_AT);
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment