initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,465 @@
<?php
abstract class BaseCourseI18n extends BaseObject implements Persistent {
protected static $peer;
protected $title;
protected $description;
protected $id;
protected $culture;
protected $aCourse;
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[] = CourseI18nPeer::TITLE;
}
}
public function setDescription($v)
{
if ($v !== null && !is_string($v)) {
$v = (string) $v;
}
if ($this->description !== $v) {
$this->description = $v;
$this->modifiedColumns[] = CourseI18nPeer::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[] = CourseI18nPeer::ID;
}
if ($this->aCourse !== null && $this->aCourse->getId() !== $v) {
$this->aCourse = null;
}
}
public function setCulture($v)
{
if ($v !== null && !is_string($v)) {
$v = (string) $v;
}
if ($this->culture !== $v) {
$this->culture = $v;
$this->modifiedColumns[] = CourseI18nPeer::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 CourseI18n 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(CourseI18nPeer::DATABASE_NAME);
}
try {
$con->begin();
CourseI18nPeer::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(CourseI18nPeer::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->aCourse !== null) {
if ($this->aCourse->isModified() || $this->aCourse->getCurrentCourseI18n()->isModified()) {
$affectedRows += $this->aCourse->save($con);
}
$this->setCourse($this->aCourse);
}
if ($this->isModified()) {
if ($this->isNew()) {
$pk = CourseI18nPeer::doInsert($this, $con);
$affectedRows += 1;
$this->setNew(false);
} else {
$affectedRows += CourseI18nPeer::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->aCourse !== null) {
if (!$this->aCourse->validate($columns)) {
$failureMap = array_merge($failureMap, $this->aCourse->getValidationFailures());
}
}
if (($retval = CourseI18nPeer::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 = CourseI18nPeer::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 = CourseI18nPeer::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 = CourseI18nPeer::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 = CourseI18nPeer::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(CourseI18nPeer::DATABASE_NAME);
if ($this->isColumnModified(CourseI18nPeer::TITLE)) $criteria->add(CourseI18nPeer::TITLE, $this->title);
if ($this->isColumnModified(CourseI18nPeer::DESCRIPTION)) $criteria->add(CourseI18nPeer::DESCRIPTION, $this->description);
if ($this->isColumnModified(CourseI18nPeer::ID)) $criteria->add(CourseI18nPeer::ID, $this->id);
if ($this->isColumnModified(CourseI18nPeer::CULTURE)) $criteria->add(CourseI18nPeer::CULTURE, $this->culture);
return $criteria;
}
public function buildPkeyCriteria()
{
$criteria = new Criteria(CourseI18nPeer::DATABASE_NAME);
$criteria->add(CourseI18nPeer::ID, $this->id);
$criteria->add(CourseI18nPeer::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 CourseI18nPeer();
}
return self::$peer;
}
public function setCourse($v)
{
if ($v === null) {
$this->setId(NULL);
} else {
$this->setId($v->getId());
}
$this->aCourse = $v;
}
public function getCourse($con = null)
{
if ($this->aCourse === null && ($this->id !== null)) {
include_once 'lib/model/om/BaseCoursePeer.php';
$this->aCourse = CoursePeer::retrieveByPK($this->id, $con);
}
return $this->aCourse;
}
}