Files
pae.co.at/trunk copy/proactiveenglish/lib/model/om/BaseEmployeeI18n.php
2017-03-02 21:57:21 -06:00

465 lines
8.2 KiB
PHP

<?php
abstract class BaseEmployeeI18n extends BaseObject implements Persistent {
protected static $peer;
protected $biography;
protected $title;
protected $id;
protected $culture;
protected $aEmployee;
protected $alreadyInSave = false;
protected $alreadyInValidation = false;
public function getBiography()
{
return $this->biography;
}
public function getTitle()
{
return $this->title;
}
public function getId()
{
return $this->id;
}
public function getCulture()
{
return $this->culture;
}
public function setBiography($v)
{
if ($v !== null && !is_string($v)) {
$v = (string) $v;
}
if ($this->biography !== $v) {
$this->biography = $v;
$this->modifiedColumns[] = EmployeeI18nPeer::BIOGRAPHY;
}
}
public function setTitle($v)
{
if ($v !== null && !is_string($v)) {
$v = (string) $v;
}
if ($this->title !== $v) {
$this->title = $v;
$this->modifiedColumns[] = EmployeeI18nPeer::TITLE;
}
}
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[] = EmployeeI18nPeer::ID;
}
if ($this->aEmployee !== null && $this->aEmployee->getId() !== $v) {
$this->aEmployee = null;
}
}
public function setCulture($v)
{
if ($v !== null && !is_string($v)) {
$v = (string) $v;
}
if ($this->culture !== $v) {
$this->culture = $v;
$this->modifiedColumns[] = EmployeeI18nPeer::CULTURE;
}
}
public function hydrate(ResultSet $rs, $startcol = 1)
{
try {
$this->biography = $rs->getString($startcol + 0);
$this->title = $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 EmployeeI18n 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(EmployeeI18nPeer::DATABASE_NAME);
}
try {
$con->begin();
EmployeeI18nPeer::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(EmployeeI18nPeer::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->aEmployee !== null) {
if ($this->aEmployee->isModified() || $this->aEmployee->getCurrentEmployeeI18n()->isModified()) {
$affectedRows += $this->aEmployee->save($con);
}
$this->setEmployee($this->aEmployee);
}
if ($this->isModified()) {
if ($this->isNew()) {
$pk = EmployeeI18nPeer::doInsert($this, $con);
$affectedRows += 1;
$this->setNew(false);
} else {
$affectedRows += EmployeeI18nPeer::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->aEmployee !== null) {
if (!$this->aEmployee->validate($columns)) {
$failureMap = array_merge($failureMap, $this->aEmployee->getValidationFailures());
}
}
if (($retval = EmployeeI18nPeer::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 = EmployeeI18nPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
return $this->getByPosition($pos);
}
public function getByPosition($pos)
{
switch($pos) {
case 0:
return $this->getBiography();
break;
case 1:
return $this->getTitle();
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 = EmployeeI18nPeer::getFieldNames($keyType);
$result = array(
$keys[0] => $this->getBiography(),
$keys[1] => $this->getTitle(),
$keys[2] => $this->getId(),
$keys[3] => $this->getCulture(),
);
return $result;
}
public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME)
{
$pos = EmployeeI18nPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);
return $this->setByPosition($pos, $value);
}
public function setByPosition($pos, $value)
{
switch($pos) {
case 0:
$this->setBiography($value);
break;
case 1:
$this->setTitle($value);
break;
case 2:
$this->setId($value);
break;
case 3:
$this->setCulture($value);
break;
} }
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
{
$keys = EmployeeI18nPeer::getFieldNames($keyType);
if (array_key_exists($keys[0], $arr)) $this->setBiography($arr[$keys[0]]);
if (array_key_exists($keys[1], $arr)) $this->setTitle($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(EmployeeI18nPeer::DATABASE_NAME);
if ($this->isColumnModified(EmployeeI18nPeer::BIOGRAPHY)) $criteria->add(EmployeeI18nPeer::BIOGRAPHY, $this->biography);
if ($this->isColumnModified(EmployeeI18nPeer::TITLE)) $criteria->add(EmployeeI18nPeer::TITLE, $this->title);
if ($this->isColumnModified(EmployeeI18nPeer::ID)) $criteria->add(EmployeeI18nPeer::ID, $this->id);
if ($this->isColumnModified(EmployeeI18nPeer::CULTURE)) $criteria->add(EmployeeI18nPeer::CULTURE, $this->culture);
return $criteria;
}
public function buildPkeyCriteria()
{
$criteria = new Criteria(EmployeeI18nPeer::DATABASE_NAME);
$criteria->add(EmployeeI18nPeer::ID, $this->id);
$criteria->add(EmployeeI18nPeer::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->setBiography($this->biography);
$copyObj->setTitle($this->title);
$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 EmployeeI18nPeer();
}
return self::$peer;
}
public function setEmployee($v)
{
if ($v === null) {
$this->setId(NULL);
} else {
$this->setId($v->getId());
}
$this->aEmployee = $v;
}
public function getEmployee($con = null)
{
if ($this->aEmployee === null && ($this->id !== null)) {
include_once 'lib/model/om/BaseEmployeePeer.php';
$this->aEmployee = EmployeePeer::retrieveByPK($this->id, $con);
}
return $this->aEmployee;
}
}