本文整理汇总了PHP中Lista::save方法的典型用法代码示例。如果您正苦于以下问题:PHP Lista::save方法的具体用法?PHP Lista::save怎么用?PHP Lista::save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Lista
的用法示例。
在下文中一共展示了Lista::save方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doSave
/**
* 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 coresponding set
// method. This object relates to these object(s) by a
// foreign key reference.
if ($this->aPartido !== null) {
if ($this->aPartido->isModified() || $this->aPartido->isNew()) {
$affectedRows += $this->aPartido->save($con);
}
$this->setPartido($this->aPartido);
}
if ($this->aLista !== null) {
if ($this->aLista->isModified() || $this->aLista->isNew()) {
$affectedRows += $this->aLista->save($con);
}
$this->setLista($this->aLista);
}
// If this object has been modified, then save it to the database.
if ($this->isModified()) {
if ($this->isNew()) {
$pk = PartidoListaPeer::doInsert($this, $con);
$affectedRows += 1;
// we are assuming that there is only 1 row per doInsert() which
// should always be true here (even though technically
// BasePeer::doInsert() can insert multiple rows).
$this->setNew(false);
} else {
$affectedRows += PartidoListaPeer::doUpdate($this, $con);
}
$this->resetModified();
// [HL] After being saved an object is no longer 'modified'
}
$this->alreadyInSave = false;
}
return $affectedRows;
}
示例2: doSave
/**
* 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 coresponding set
// method. This object relates to these object(s) by a
// foreign key reference.
if ($this->aAudiolibro !== null) {
if ($this->aAudiolibro->isModified() || $this->aAudiolibro->isNew()) {
$affectedRows += $this->aAudiolibro->save($con);
}
$this->setAudiolibro($this->aAudiolibro);
}
if ($this->aLista !== null) {
if ($this->aLista->isModified() || $this->aLista->isNew()) {
$affectedRows += $this->aLista->save($con);
}
$this->setLista($this->aLista);
}
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;
}
示例3: postCrealista
public function postCrealista()
{
$fecha_fin = Input::get('fecha');
$fecha_fin_carbon = Carbon::parse($fecha_fin);
$fecha_inicio_carbon = $fecha_fin_carbon->subDays(Input::get('tipo_lista'))->toDateString();
$lista = new Lista();
$lista->fecha_inicio = $fecha_inicio_carbon;
$lista->fecha_fin = $fecha_fin;
$lista->save();
$trabajadores_activos = VistaEmpleado::where('activo', 1)->count();
$trabajadores = VistaEmpleado::where('activo', 1)->get();
foreach ($trabajadores as $trabajador) {
$asistencia = new Asistencia();
$asistencia->lista_id = $lista->id;
$asistencia->empleado_id = $trabajador->id;
$asistencia->save();
if ($trabajador->departamento_id == 2) {
$bono_mtto = new BonoMtto();
$bono_mtto->asistencia_id = $asistencia->id;
$bono_mtto->save();
}
}
return Redirect::to('personal-operativo/asistencia/' . $lista->id);
}
示例4: execute
protected function execute($arguments = array(), $options = array())
{
// initialize the database connection
$databaseManager = new sfDatabaseManager($this->configuration);
$connection = $databaseManager->getDatabase($options['connection'] ? $options['connection'] : null)->getConnection();
$handle = fopen("php://stdin", "r");
$line = fgets($handle);
while ($line = fgets($handle)) {
$data = explode(";", "{$line}");
$c = new Criteria();
$c->add(PartidoPeer::ABREVIATURA, $data[5]);
$partido = PartidoPeer::doSelectOne($c);
if (!$partido) {
echo "Not found: (" . $data[5] . ")\n";
continue;
}
$circu = CircunscripcionPeer::retrieveByPK($data[4]);
$convocatoria = ConvocatoriaPeer::retrieveByPK($data[3]);
$c = new Criteria();
$c->add(ListaPeer::CONVOCATORIA_ID, $data[3]);
$c->add(ListaPeer::CIRCUNSCRIPCION_ID, $data[4]);
$c->add(ListaPeer::PARTIDO_ID, $partido->getId());
$lista = ListaPeer::doSelectOne($c);
if (!$lista) {
$lista = new Lista();
$lista->setPartido($partido);
$lista->setCircunscripcion($circu);
$lista->setConvocatoria($convocatoria);
$lista->save();
echo "Created lista ({$partido}, {$circu})\n";
}
$politicos = false;
$c = new Criteria();
$c->add("concat(nombre, ' ', apellidos)", trim($data[2]));
//$c->add('fullname', utf8_encode( trim($data[2]) ), Criteria::EQUAL);
$politicos = PoliticoPeer::doSelect($c);
if (count($politicos) != 0) {
echo "(ASIGNADO) " . $data[2] . "\n";
$politico = $politicos[0];
} else {
echo "(NUEVO) " . $data[2] . "\n";
$politico = new Politico();
$nombreApellidos = explode(" ", $data[2]);
$nombre = array_shift($nombreApellidos);
$apellidos = implode(" ", $nombreApellidos);
$politico->setNombre($nombre);
$politico->setApellidos($apellidos);
if ($data[7] != '1') {
if (count($data) > 10 && trim($data[10]) != '') {
$c = new Criteria();
$c->add(PartidoPeer::ABREVIATURA, $data[5]);
$partido = PartidoPeer::doSelectOne($c);
if ($partido) {
$politico->setPartido($partido);
}
} else {
$politico->setPartido($lista->getPartido());
}
}
if ($data[1] && trim($data[1]) != '') {
$politico->setSexo($data[1] == "hombre" ? 'H' : 'M');
}
$politico->save();
$politicoI18n = new PoliticoI18n();
$politicoI18n->setPolitico($politico);
$politicoI18n->setCulture('es');
$politicoI18n->save();
$politicoI18n = new PoliticoI18n();
$politicoI18n->setPolitico($politico);
$politicoI18n->setCulture('ca');
$politicoI18n->save();
}
$c = new Criteria();
$c->add(PoliticoListaPeer::LISTA_ID, $lista->getId());
$c->add(PoliticoListaPeer::POLITICO_ID, $politico->getId());
$pl = PoliticoListaPeer::doSelectOne($c);
if (!$pl) {
$pl = new PoliticoLista();
$pl->setLista($lista);
$pl->setPolitico($politico);
} else {
echo "Ya estaba.\n";
}
if ($data[6] != '1') {
$pl->setOrden($data[0]);
}
$pl->save();
//echo $data[2];
}
fclose($handle);
}
示例5: execute
protected function execute($arguments = array(), $options = array())
{
// initialize the database connection
$databaseManager = new sfDatabaseManager($this->configuration);
$connection = $databaseManager->getDatabase($options['connection'] ? $options['connection'] : null)->getConnection();
$handle = fopen("php://stdin", "r");
$line = fgets($handle);
while ($line = fgets($handle)) {
$data = explode(";", "{$line}");
$c = new Criteria();
$c->add(GeoPeer::NOMBRE, $data[3]);
$geos = GeoPeer::doSelect($c);
$aGeo = false;
foreach ($geos as $geo) {
if ($geo->getGeoRelatedByGeoId() != null && $geo->getGeoRelatedByGeoId()->getCodigo() && $geo->getGeoRelatedByGeoId()->getCodigo() != '') {
//echo 'geo: ' . $geo->getNombre() . "\n";
$aGeo = $geo;
}
}
if (!$aGeo) {
echo 'Geo not found: (' . $data[3] . ")\n";
continue;
}
$c = new Criteria();
$c->add(PartidoPeer::ABREVIATURA, $data[5]);
$partido = PartidoPeer::doSelectOne($c);
if (!$partido) {
$partido = new Partido();
$partido->setAbreviatura($data[5]);
$partido->setIsActive(true);
$partido->setNombre($data[5], 'es');
$partido->setNombre($data[5], 'ca');
$partido->save();
echo "Created partido ({$partido})\n";
}
$c = new Criteria();
$c->add(CircunscripcionPeer::GEO_ID, $aGeo->getId());
$circu = CircunscripcionPeer::doSelectOne($c);
$c = new Criteria();
$c->addJoin(ConvocatoriaPeer::ELECCION_ID, EleccionPeer::ID);
$c->addJoin(EleccionInstitucionPeer::ELECCION_ID, EleccionPeer::ID);
$c->addJoin(InstitucionPeer::ID, EleccionInstitucionPeer::INSTITUCION_ID);
$c->add(InstitucionPeer::GEO_ID, $aGeo->getId());
$convocatoria = ConvocatoriaPeer::doSelectOne($c);
if (!$convocatoria) {
echo "Convocatoria not found: ({$geo})\n";
continue;
}
$c = new Criteria();
$c->add(ListaPeer::CONVOCATORIA_ID, $convocatoria->getId());
$c->add(ListaPeer::CIRCUNSCRIPCION_ID, $circu->getId());
$c->add(ListaPeer::PARTIDO_ID, $partido->getId());
$lista = ListaPeer::doSelectOne($c);
if (!$lista) {
$lista = new Lista();
$lista->setPartido($partido);
$lista->setCircunscripcion($circu);
$lista->setConvocatoria($convocatoria);
$lista->save();
echo "Created lista ({$partido}, {$circu})\n";
}
$politicos = false;
$c = new Criteria();
$c->add("concat(nombre, ' ', apellidos)", trim($data[2]));
//$c->add('fullname', utf8_encode( trim($data[2]) ), Criteria::EQUAL);
$politicos = PoliticoPeer::doSelect($c);
if (count($politicos) != 0) {
echo "(ASIGNADO) " . $data[2] . "\n";
$politico = $politicos[0];
} else {
echo "(NUEVO) " . $data[2] . "\n";
$politico = new Politico();
$nombreApellidos = explode(" ", $data[2]);
$nombre = array_shift($nombreApellidos);
$apellidos = implode(" ", $nombreApellidos);
$politico->setNombre($nombre);
$politico->setApellidos($apellidos);
if ($data[7] != '1') {
if (trim($data[10]) != '') {
$c = new Criteria();
$c->add(PartidoPeer::ABREVIATURA, $data[5]);
$partido = PartidoPeer::doSelectOne($c);
if ($partido) {
$politico->setPartido($partido);
}
} else {
$politico->setPartido($lista->getPartido());
}
}
$politico->setSexo($data[1] == "hombre" ? 'H' : 'M');
$politico->save();
$politicoI18n = new PoliticoI18n();
$politicoI18n->setPolitico($politico);
$politicoI18n->setCulture('es');
$politicoI18n->save();
$politicoI18n = new PoliticoI18n();
$politicoI18n->setPolitico($politico);
$politicoI18n->setCulture('ca');
$politicoI18n->save();
}
//.........这里部分代码省略.........