465 lines
8.1 KiB
PHP
465 lines
8.1 KiB
PHP
<?php
|
|
|
|
|
|
abstract class BaseEventI18n extends BaseObject implements Persistent {
|
|
|
|
|
|
|
|
protected static $peer;
|
|
|
|
|
|
|
|
protected $title;
|
|
|
|
|
|
|
|
protected $description;
|
|
|
|
|
|
|
|
protected $id;
|
|
|
|
|
|
|
|
protected $culture;
|
|
|
|
|
|
protected $aEvent;
|
|
|
|
|
|
protected $alreadyInSave = false;
|
|
|
|
|
|
protected $alreadyInValidation = false;
|
|
|
|
|
|
public function getTitle()
|
|
{
|
|
|
|
return $this->title;
|
|
}
|
|
|
|
|
|
public function getDescription()
|
|
{
|
|
|
|
return $this->description;
|
|
}
|
|
|
|
|
|
public function getId()
|
|
{
|
|
|
|
return $this->id;
|
|
}
|
|
|
|
|
|
public function getCulture()
|
|
{
|
|
|
|
return $this->culture;
|
|
}
|
|
|
|
|
|
public function setTitle($v)
|
|
{
|
|
|
|
|
|
|
|
if ($v !== null && !is_string($v)) {
|
|
$v = (string) $v;
|
|
}
|
|
|
|
if ($this->title !== $v) {
|
|
$this->title = $v;
|
|
$this->modifiedColumns[] = EventI18nPeer::TITLE;
|
|
}
|
|
|
|
}
|
|
|
|
public function setDescription($v)
|
|
{
|
|
|
|
|
|
|
|
if ($v !== null && !is_string($v)) {
|
|
$v = (string) $v;
|
|
}
|
|
|
|
if ($this->description !== $v) {
|
|
$this->description = $v;
|
|
$this->modifiedColumns[] = EventI18nPeer::DESCRIPTION;
|
|
}
|
|
|
|
}
|
|
|
|
public function setId($v)
|
|
{
|
|
|
|
|
|
|
|
if ($v !== null && !is_int($v) && is_numeric($v)) {
|
|
$v = (int) $v;
|
|
}
|
|
|
|
if ($this->id !== $v) {
|
|
$this->id = $v;
|
|
$this->modifiedColumns[] = EventI18nPeer::ID;
|
|
}
|
|
|
|
if ($this->aEvent !== null && $this->aEvent->getId() !== $v) {
|
|
$this->aEvent = null;
|
|
}
|
|
|
|
}
|
|
|
|
public function setCulture($v)
|
|
{
|
|
|
|
|
|
|
|
if ($v !== null && !is_string($v)) {
|
|
$v = (string) $v;
|
|
}
|
|
|
|
if ($this->culture !== $v) {
|
|
$this->culture = $v;
|
|
$this->modifiedColumns[] = EventI18nPeer::CULTURE;
|
|
}
|
|
|
|
}
|
|
|
|
public function hydrate(ResultSet $rs, $startcol = 1)
|
|
{
|
|
try {
|
|
|
|
$this->title = $rs->getString($startcol + 0);
|
|
|
|
$this->description = $rs->getString($startcol + 1);
|
|
|
|
$this->id = $rs->getInt($startcol + 2);
|
|
|
|
$this->culture = $rs->getString($startcol + 3);
|
|
|
|
$this->resetModified();
|
|
|
|
$this->setNew(false);
|
|
|
|
return $startcol + 4;
|
|
} catch (Exception $e) {
|
|
throw new PropelException("Error populating EventI18n object", $e);
|
|
}
|
|
}
|
|
|
|
|
|
public function delete($con = null)
|
|
{
|
|
if ($this->isDeleted()) {
|
|
throw new PropelException("This object has already been deleted.");
|
|
}
|
|
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(EventI18nPeer::DATABASE_NAME);
|
|
}
|
|
|
|
try {
|
|
$con->begin();
|
|
EventI18nPeer::doDelete($this, $con);
|
|
$this->setDeleted(true);
|
|
$con->commit();
|
|
} catch (PropelException $e) {
|
|
$con->rollback();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
|
|
public function save($con = null)
|
|
{
|
|
if ($this->isDeleted()) {
|
|
throw new PropelException("You cannot save an object that has been deleted.");
|
|
}
|
|
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(EventI18nPeer::DATABASE_NAME);
|
|
}
|
|
|
|
try {
|
|
$con->begin();
|
|
$affectedRows = $this->doSave($con);
|
|
$con->commit();
|
|
return $affectedRows;
|
|
} catch (PropelException $e) {
|
|
$con->rollback();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
|
|
protected function doSave($con)
|
|
{
|
|
$affectedRows = 0; if (!$this->alreadyInSave) {
|
|
$this->alreadyInSave = true;
|
|
|
|
|
|
|
|
if ($this->aEvent !== null) {
|
|
if ($this->aEvent->isModified() || $this->aEvent->getCurrentEventI18n()->isModified()) {
|
|
$affectedRows += $this->aEvent->save($con);
|
|
}
|
|
$this->setEvent($this->aEvent);
|
|
}
|
|
|
|
|
|
if ($this->isModified()) {
|
|
if ($this->isNew()) {
|
|
$pk = EventI18nPeer::doInsert($this, $con);
|
|
$affectedRows += 1;
|
|
$this->setNew(false);
|
|
} else {
|
|
$affectedRows += EventI18nPeer::doUpdate($this, $con);
|
|
}
|
|
$this->resetModified(); }
|
|
|
|
$this->alreadyInSave = false;
|
|
}
|
|
return $affectedRows;
|
|
}
|
|
|
|
protected $validationFailures = array();
|
|
|
|
|
|
public function getValidationFailures()
|
|
{
|
|
return $this->validationFailures;
|
|
}
|
|
|
|
|
|
public function validate($columns = null)
|
|
{
|
|
$res = $this->doValidate($columns);
|
|
if ($res === true) {
|
|
$this->validationFailures = array();
|
|
return true;
|
|
} else {
|
|
$this->validationFailures = $res;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
protected function doValidate($columns = null)
|
|
{
|
|
if (!$this->alreadyInValidation) {
|
|
$this->alreadyInValidation = true;
|
|
$retval = null;
|
|
|
|
$failureMap = array();
|
|
|
|
|
|
|
|
if ($this->aEvent !== null) {
|
|
if (!$this->aEvent->validate($columns)) {
|
|
$failureMap = array_merge($failureMap, $this->aEvent->getValidationFailures());
|
|
}
|
|
}
|
|
|
|
|
|
if (($retval = EventI18nPeer::doValidate($this, $columns)) !== true) {
|
|
$failureMap = array_merge($failureMap, $retval);
|
|
}
|
|
|
|
|
|
|
|
$this->alreadyInValidation = false;
|
|
}
|
|
|
|
return (!empty($failureMap) ? $failureMap : true);
|
|
}
|
|
|
|
|
|
public function getByName($name, $type = BasePeer::TYPE_PHPNAME)
|
|
{
|
|
$pos = EventI18nPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
|
|
return $this->getByPosition($pos);
|
|
}
|
|
|
|
|
|
public function getByPosition($pos)
|
|
{
|
|
switch($pos) {
|
|
case 0:
|
|
return $this->getTitle();
|
|
break;
|
|
case 1:
|
|
return $this->getDescription();
|
|
break;
|
|
case 2:
|
|
return $this->getId();
|
|
break;
|
|
case 3:
|
|
return $this->getCulture();
|
|
break;
|
|
default:
|
|
return null;
|
|
break;
|
|
} }
|
|
|
|
|
|
public function toArray($keyType = BasePeer::TYPE_PHPNAME)
|
|
{
|
|
$keys = EventI18nPeer::getFieldNames($keyType);
|
|
$result = array(
|
|
$keys[0] => $this->getTitle(),
|
|
$keys[1] => $this->getDescription(),
|
|
$keys[2] => $this->getId(),
|
|
$keys[3] => $this->getCulture(),
|
|
);
|
|
return $result;
|
|
}
|
|
|
|
|
|
public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME)
|
|
{
|
|
$pos = EventI18nPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
|
|
return $this->setByPosition($pos, $value);
|
|
}
|
|
|
|
|
|
public function setByPosition($pos, $value)
|
|
{
|
|
switch($pos) {
|
|
case 0:
|
|
$this->setTitle($value);
|
|
break;
|
|
case 1:
|
|
$this->setDescription($value);
|
|
break;
|
|
case 2:
|
|
$this->setId($value);
|
|
break;
|
|
case 3:
|
|
$this->setCulture($value);
|
|
break;
|
|
} }
|
|
|
|
|
|
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
|
|
{
|
|
$keys = EventI18nPeer::getFieldNames($keyType);
|
|
|
|
if (array_key_exists($keys[0], $arr)) $this->setTitle($arr[$keys[0]]);
|
|
if (array_key_exists($keys[1], $arr)) $this->setDescription($arr[$keys[1]]);
|
|
if (array_key_exists($keys[2], $arr)) $this->setId($arr[$keys[2]]);
|
|
if (array_key_exists($keys[3], $arr)) $this->setCulture($arr[$keys[3]]);
|
|
}
|
|
|
|
|
|
public function buildCriteria()
|
|
{
|
|
$criteria = new Criteria(EventI18nPeer::DATABASE_NAME);
|
|
|
|
if ($this->isColumnModified(EventI18nPeer::TITLE)) $criteria->add(EventI18nPeer::TITLE, $this->title);
|
|
if ($this->isColumnModified(EventI18nPeer::DESCRIPTION)) $criteria->add(EventI18nPeer::DESCRIPTION, $this->description);
|
|
if ($this->isColumnModified(EventI18nPeer::ID)) $criteria->add(EventI18nPeer::ID, $this->id);
|
|
if ($this->isColumnModified(EventI18nPeer::CULTURE)) $criteria->add(EventI18nPeer::CULTURE, $this->culture);
|
|
|
|
return $criteria;
|
|
}
|
|
|
|
|
|
public function buildPkeyCriteria()
|
|
{
|
|
$criteria = new Criteria(EventI18nPeer::DATABASE_NAME);
|
|
|
|
$criteria->add(EventI18nPeer::ID, $this->id);
|
|
$criteria->add(EventI18nPeer::CULTURE, $this->culture);
|
|
|
|
return $criteria;
|
|
}
|
|
|
|
|
|
public function getPrimaryKey()
|
|
{
|
|
$pks = array();
|
|
|
|
$pks[0] = $this->getId();
|
|
|
|
$pks[1] = $this->getCulture();
|
|
|
|
return $pks;
|
|
}
|
|
|
|
|
|
public function setPrimaryKey($keys)
|
|
{
|
|
|
|
$this->setId($keys[0]);
|
|
|
|
$this->setCulture($keys[1]);
|
|
|
|
}
|
|
|
|
|
|
public function copyInto($copyObj, $deepCopy = false)
|
|
{
|
|
|
|
$copyObj->setTitle($this->title);
|
|
|
|
$copyObj->setDescription($this->description);
|
|
|
|
|
|
$copyObj->setNew(true);
|
|
|
|
$copyObj->setId(NULL);
|
|
$copyObj->setCulture(NULL);
|
|
}
|
|
|
|
|
|
public function copy($deepCopy = false)
|
|
{
|
|
$clazz = get_class($this);
|
|
$copyObj = new $clazz();
|
|
$this->copyInto($copyObj, $deepCopy);
|
|
return $copyObj;
|
|
}
|
|
|
|
|
|
public function getPeer()
|
|
{
|
|
if (self::$peer === null) {
|
|
self::$peer = new EventI18nPeer();
|
|
}
|
|
return self::$peer;
|
|
}
|
|
|
|
|
|
public function setEvent($v)
|
|
{
|
|
|
|
|
|
if ($v === null) {
|
|
$this->setId(NULL);
|
|
} else {
|
|
$this->setId($v->getId());
|
|
}
|
|
|
|
|
|
$this->aEvent = $v;
|
|
}
|
|
|
|
|
|
|
|
public function getEvent($con = null)
|
|
{
|
|
if ($this->aEvent === null && ($this->id !== null)) {
|
|
include_once 'lib/model/om/BaseEventPeer.php';
|
|
|
|
$this->aEvent = EventPeer::retrieveByPK($this->id, $con);
|
|
|
|
|
|
}
|
|
return $this->aEvent;
|
|
}
|
|
|
|
}
|