532 lines
13 KiB
PHP
532 lines
13 KiB
PHP
<?php
|
|
|
|
|
|
abstract class BaseCourseI18nPeer {
|
|
|
|
|
|
const DATABASE_NAME = 'propel';
|
|
|
|
|
|
const TABLE_NAME = 'Course_i18n';
|
|
|
|
|
|
const CLASS_DEFAULT = 'lib.model.CourseI18n';
|
|
|
|
|
|
const NUM_COLUMNS = 4;
|
|
|
|
|
|
const NUM_LAZY_LOAD_COLUMNS = 0;
|
|
|
|
|
|
|
|
const TITLE = 'Course_i18n.TITLE';
|
|
|
|
|
|
const DESCRIPTION = 'Course_i18n.DESCRIPTION';
|
|
|
|
|
|
const ID = 'Course_i18n.ID';
|
|
|
|
|
|
const CULTURE = 'Course_i18n.CULTURE';
|
|
|
|
|
|
private static $phpNameMap = null;
|
|
|
|
|
|
|
|
private static $fieldNames = array (
|
|
BasePeer::TYPE_PHPNAME => array ('Title', 'Description', 'Id', 'Culture', ),
|
|
BasePeer::TYPE_COLNAME => array (CourseI18nPeer::TITLE, CourseI18nPeer::DESCRIPTION, CourseI18nPeer::ID, CourseI18nPeer::CULTURE, ),
|
|
BasePeer::TYPE_FIELDNAME => array ('title', 'description', 'id', 'culture', ),
|
|
BasePeer::TYPE_NUM => array (0, 1, 2, 3, )
|
|
);
|
|
|
|
|
|
private static $fieldKeys = array (
|
|
BasePeer::TYPE_PHPNAME => array ('Title' => 0, 'Description' => 1, 'Id' => 2, 'Culture' => 3, ),
|
|
BasePeer::TYPE_COLNAME => array (CourseI18nPeer::TITLE => 0, CourseI18nPeer::DESCRIPTION => 1, CourseI18nPeer::ID => 2, CourseI18nPeer::CULTURE => 3, ),
|
|
BasePeer::TYPE_FIELDNAME => array ('title' => 0, 'description' => 1, 'id' => 2, 'culture' => 3, ),
|
|
BasePeer::TYPE_NUM => array (0, 1, 2, 3, )
|
|
);
|
|
|
|
|
|
public static function getMapBuilder()
|
|
{
|
|
include_once 'lib/model/map/CourseI18nMapBuilder.php';
|
|
return BasePeer::getMapBuilder('lib.model.map.CourseI18nMapBuilder');
|
|
}
|
|
|
|
public static function getPhpNameMap()
|
|
{
|
|
if (self::$phpNameMap === null) {
|
|
$map = CourseI18nPeer::getTableMap();
|
|
$columns = $map->getColumns();
|
|
$nameMap = array();
|
|
foreach ($columns as $column) {
|
|
$nameMap[$column->getPhpName()] = $column->getColumnName();
|
|
}
|
|
self::$phpNameMap = $nameMap;
|
|
}
|
|
return self::$phpNameMap;
|
|
}
|
|
|
|
static public function translateFieldName($name, $fromType, $toType)
|
|
{
|
|
$toNames = self::getFieldNames($toType);
|
|
$key = isset(self::$fieldKeys[$fromType][$name]) ? self::$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(self::$fieldKeys[$fromType], true));
|
|
}
|
|
return $toNames[$key];
|
|
}
|
|
|
|
|
|
|
|
static public function getFieldNames($type = BasePeer::TYPE_PHPNAME)
|
|
{
|
|
if (!array_key_exists($type, self::$fieldNames)) {
|
|
throw new PropelException('Method getFieldNames() expects the parameter $type to be one of the class constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM. ' . $type . ' was given.');
|
|
}
|
|
return self::$fieldNames[$type];
|
|
}
|
|
|
|
|
|
public static function alias($alias, $column)
|
|
{
|
|
return str_replace(CourseI18nPeer::TABLE_NAME.'.', $alias.'.', $column);
|
|
}
|
|
|
|
|
|
public static function addSelectColumns(Criteria $criteria)
|
|
{
|
|
|
|
$criteria->addSelectColumn(CourseI18nPeer::TITLE);
|
|
|
|
$criteria->addSelectColumn(CourseI18nPeer::DESCRIPTION);
|
|
|
|
$criteria->addSelectColumn(CourseI18nPeer::ID);
|
|
|
|
$criteria->addSelectColumn(CourseI18nPeer::CULTURE);
|
|
|
|
}
|
|
|
|
const COUNT = 'COUNT(Course_i18n.ID)';
|
|
const COUNT_DISTINCT = 'COUNT(DISTINCT Course_i18n.ID)';
|
|
|
|
|
|
public static function doCount(Criteria $criteria, $distinct = false, $con = null)
|
|
{
|
|
$criteria = clone $criteria;
|
|
|
|
$criteria->clearSelectColumns()->clearOrderByColumns();
|
|
if ($distinct || in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
|
|
$criteria->addSelectColumn(CourseI18nPeer::COUNT_DISTINCT);
|
|
} else {
|
|
$criteria->addSelectColumn(CourseI18nPeer::COUNT);
|
|
}
|
|
|
|
foreach($criteria->getGroupByColumns() as $column)
|
|
{
|
|
$criteria->addSelectColumn($column);
|
|
}
|
|
|
|
$rs = CourseI18nPeer::doSelectRS($criteria, $con);
|
|
if ($rs->next()) {
|
|
return $rs->getInt(1);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
public static function doSelectOne(Criteria $criteria, $con = null)
|
|
{
|
|
$critcopy = clone $criteria;
|
|
$critcopy->setLimit(1);
|
|
$objects = CourseI18nPeer::doSelect($critcopy, $con);
|
|
if ($objects) {
|
|
return $objects[0];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public static function doSelect(Criteria $criteria, $con = null)
|
|
{
|
|
return CourseI18nPeer::populateObjects(CourseI18nPeer::doSelectRS($criteria, $con));
|
|
}
|
|
|
|
public static function doSelectRS(Criteria $criteria, $con = null)
|
|
{
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(self::DATABASE_NAME);
|
|
}
|
|
|
|
if (!$criteria->getSelectColumns()) {
|
|
$criteria = clone $criteria;
|
|
CourseI18nPeer::addSelectColumns($criteria);
|
|
}
|
|
|
|
$criteria->setDbName(self::DATABASE_NAME);
|
|
|
|
return BasePeer::doSelect($criteria, $con);
|
|
}
|
|
|
|
public static function populateObjects(ResultSet $rs)
|
|
{
|
|
$results = array();
|
|
|
|
$cls = CourseI18nPeer::getOMClass();
|
|
$cls = Propel::import($cls);
|
|
while($rs->next()) {
|
|
|
|
$obj = new $cls();
|
|
$obj->hydrate($rs);
|
|
$results[] = $obj;
|
|
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
|
|
public static function doCountJoinCourse(Criteria $criteria, $distinct = false, $con = null)
|
|
{
|
|
$criteria = clone $criteria;
|
|
|
|
$criteria->clearSelectColumns()->clearOrderByColumns();
|
|
if ($distinct || in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
|
|
$criteria->addSelectColumn(CourseI18nPeer::COUNT_DISTINCT);
|
|
} else {
|
|
$criteria->addSelectColumn(CourseI18nPeer::COUNT);
|
|
}
|
|
|
|
foreach($criteria->getGroupByColumns() as $column)
|
|
{
|
|
$criteria->addSelectColumn($column);
|
|
}
|
|
|
|
$criteria->addJoin(CourseI18nPeer::ID, CoursePeer::ID);
|
|
|
|
$rs = CourseI18nPeer::doSelectRS($criteria, $con);
|
|
if ($rs->next()) {
|
|
return $rs->getInt(1);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public static function doSelectJoinCourse(Criteria $c, $con = null)
|
|
{
|
|
$c = clone $c;
|
|
|
|
if ($c->getDbName() == Propel::getDefaultDB()) {
|
|
$c->setDbName(self::DATABASE_NAME);
|
|
}
|
|
|
|
CourseI18nPeer::addSelectColumns($c);
|
|
$startcol = (CourseI18nPeer::NUM_COLUMNS - CourseI18nPeer::NUM_LAZY_LOAD_COLUMNS) + 1;
|
|
CoursePeer::addSelectColumns($c);
|
|
|
|
$c->addJoin(CourseI18nPeer::ID, CoursePeer::ID);
|
|
$rs = BasePeer::doSelect($c, $con);
|
|
$results = array();
|
|
|
|
while($rs->next()) {
|
|
|
|
$omClass = CourseI18nPeer::getOMClass();
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj1 = new $cls();
|
|
$obj1->hydrate($rs);
|
|
|
|
$omClass = CoursePeer::getOMClass();
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj2 = new $cls();
|
|
$obj2->hydrate($rs, $startcol);
|
|
|
|
$newObject = true;
|
|
foreach($results as $temp_obj1) {
|
|
$temp_obj2 = $temp_obj1->getCourse(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
|
|
$newObject = false;
|
|
$temp_obj2->addCourseI18n($obj1); break;
|
|
}
|
|
}
|
|
if ($newObject) {
|
|
$obj2->initCourseI18ns();
|
|
$obj2->addCourseI18n($obj1); }
|
|
$results[] = $obj1;
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
|
|
|
|
public static function doCountJoinAll(Criteria $criteria, $distinct = false, $con = null)
|
|
{
|
|
$criteria = clone $criteria;
|
|
|
|
$criteria->clearSelectColumns()->clearOrderByColumns();
|
|
if ($distinct || in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
|
|
$criteria->addSelectColumn(CourseI18nPeer::COUNT_DISTINCT);
|
|
} else {
|
|
$criteria->addSelectColumn(CourseI18nPeer::COUNT);
|
|
}
|
|
|
|
foreach($criteria->getGroupByColumns() as $column)
|
|
{
|
|
$criteria->addSelectColumn($column);
|
|
}
|
|
|
|
$criteria->addJoin(CourseI18nPeer::ID, CoursePeer::ID);
|
|
|
|
$rs = CourseI18nPeer::doSelectRS($criteria, $con);
|
|
if ($rs->next()) {
|
|
return $rs->getInt(1);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public static function doSelectJoinAll(Criteria $c, $con = null)
|
|
{
|
|
$c = clone $c;
|
|
|
|
if ($c->getDbName() == Propel::getDefaultDB()) {
|
|
$c->setDbName(self::DATABASE_NAME);
|
|
}
|
|
|
|
CourseI18nPeer::addSelectColumns($c);
|
|
$startcol2 = (CourseI18nPeer::NUM_COLUMNS - CourseI18nPeer::NUM_LAZY_LOAD_COLUMNS) + 1;
|
|
|
|
CoursePeer::addSelectColumns($c);
|
|
$startcol3 = $startcol2 + CoursePeer::NUM_COLUMNS;
|
|
|
|
$c->addJoin(CourseI18nPeer::ID, CoursePeer::ID);
|
|
|
|
$rs = BasePeer::doSelect($c, $con);
|
|
$results = array();
|
|
|
|
while($rs->next()) {
|
|
|
|
$omClass = CourseI18nPeer::getOMClass();
|
|
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj1 = new $cls();
|
|
$obj1->hydrate($rs);
|
|
|
|
|
|
|
|
$omClass = CoursePeer::getOMClass();
|
|
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj2 = new $cls();
|
|
$obj2->hydrate($rs, $startcol2);
|
|
|
|
$newObject = true;
|
|
for ($j=0, $resCount=count($results); $j < $resCount; $j++) {
|
|
$temp_obj1 = $results[$j];
|
|
$temp_obj2 = $temp_obj1->getCourse(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
|
|
$newObject = false;
|
|
$temp_obj2->addCourseI18n($obj1); break;
|
|
}
|
|
}
|
|
|
|
if ($newObject) {
|
|
$obj2->initCourseI18ns();
|
|
$obj2->addCourseI18n($obj1);
|
|
}
|
|
|
|
$results[] = $obj1;
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
|
|
public static function getTableMap()
|
|
{
|
|
return Propel::getDatabaseMap(self::DATABASE_NAME)->getTable(self::TABLE_NAME);
|
|
}
|
|
|
|
|
|
public static function getOMClass()
|
|
{
|
|
return CourseI18nPeer::CLASS_DEFAULT;
|
|
}
|
|
|
|
|
|
public static function doInsert($values, $con = null)
|
|
{
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(self::DATABASE_NAME);
|
|
}
|
|
|
|
if ($values instanceof Criteria) {
|
|
$criteria = clone $values; } else {
|
|
$criteria = $values->buildCriteria(); }
|
|
|
|
|
|
$criteria->setDbName(self::DATABASE_NAME);
|
|
|
|
try {
|
|
$con->begin();
|
|
$pk = BasePeer::doInsert($criteria, $con);
|
|
$con->commit();
|
|
} catch(PropelException $e) {
|
|
$con->rollback();
|
|
throw $e;
|
|
}
|
|
|
|
return $pk;
|
|
}
|
|
|
|
|
|
public static function doUpdate($values, $con = null)
|
|
{
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(self::DATABASE_NAME);
|
|
}
|
|
|
|
$selectCriteria = new Criteria(self::DATABASE_NAME);
|
|
|
|
if ($values instanceof Criteria) {
|
|
$criteria = clone $values;
|
|
$comparison = $criteria->getComparison(CourseI18nPeer::ID);
|
|
$selectCriteria->add(CourseI18nPeer::ID, $criteria->remove(CourseI18nPeer::ID), $comparison);
|
|
|
|
$comparison = $criteria->getComparison(CourseI18nPeer::CULTURE);
|
|
$selectCriteria->add(CourseI18nPeer::CULTURE, $criteria->remove(CourseI18nPeer::CULTURE), $comparison);
|
|
|
|
} else { $criteria = $values->buildCriteria(); $selectCriteria = $values->buildPkeyCriteria(); }
|
|
|
|
$criteria->setDbName(self::DATABASE_NAME);
|
|
|
|
return BasePeer::doUpdate($selectCriteria, $criteria, $con);
|
|
}
|
|
|
|
|
|
public static function doDeleteAll($con = null)
|
|
{
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(self::DATABASE_NAME);
|
|
}
|
|
$affectedRows = 0; try {
|
|
$con->begin();
|
|
$affectedRows += BasePeer::doDeleteAll(CourseI18nPeer::TABLE_NAME, $con);
|
|
$con->commit();
|
|
return $affectedRows;
|
|
} catch (PropelException $e) {
|
|
$con->rollback();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
|
|
public static function doDelete($values, $con = null)
|
|
{
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(CourseI18nPeer::DATABASE_NAME);
|
|
}
|
|
|
|
if ($values instanceof Criteria) {
|
|
$criteria = clone $values; } elseif ($values instanceof CourseI18n) {
|
|
|
|
$criteria = $values->buildPkeyCriteria();
|
|
} else {
|
|
$criteria = new Criteria(self::DATABASE_NAME);
|
|
if(count($values) == count($values, COUNT_RECURSIVE))
|
|
{
|
|
$values = array($values);
|
|
}
|
|
$vals = array();
|
|
foreach($values as $value)
|
|
{
|
|
|
|
$vals[0][] = $value[0];
|
|
$vals[1][] = $value[1];
|
|
}
|
|
|
|
$criteria->add(CourseI18nPeer::ID, $vals[0], Criteria::IN);
|
|
$criteria->add(CourseI18nPeer::CULTURE, $vals[1], Criteria::IN);
|
|
}
|
|
|
|
$criteria->setDbName(self::DATABASE_NAME);
|
|
|
|
$affectedRows = 0;
|
|
try {
|
|
$con->begin();
|
|
|
|
$affectedRows += BasePeer::doDelete($criteria, $con);
|
|
$con->commit();
|
|
return $affectedRows;
|
|
} catch (PropelException $e) {
|
|
$con->rollback();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
|
|
public static function doValidate(CourseI18n $obj, $cols = null)
|
|
{
|
|
$columns = array();
|
|
|
|
if ($cols) {
|
|
$dbMap = Propel::getDatabaseMap(CourseI18nPeer::DATABASE_NAME);
|
|
$tableMap = $dbMap->getTable(CourseI18nPeer::TABLE_NAME);
|
|
|
|
if (! is_array($cols)) {
|
|
$cols = array($cols);
|
|
}
|
|
|
|
foreach($cols as $colName) {
|
|
if ($tableMap->containsColumn($colName)) {
|
|
$get = 'get' . $tableMap->getColumn($colName)->getPhpName();
|
|
$columns[$colName] = $obj->$get();
|
|
}
|
|
}
|
|
} else {
|
|
|
|
}
|
|
|
|
$res = BasePeer::doValidate(CourseI18nPeer::DATABASE_NAME, CourseI18nPeer::TABLE_NAME, $columns);
|
|
if ($res !== true) {
|
|
$request = sfContext::getInstance()->getRequest();
|
|
foreach ($res as $failed) {
|
|
$col = CourseI18nPeer::translateFieldname($failed->getColumn(), BasePeer::TYPE_COLNAME, BasePeer::TYPE_PHPNAME);
|
|
$request->setError($col, $failed->getMessage());
|
|
}
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
|
|
public static function retrieveByPK( $id, $culture, $con = null) {
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(self::DATABASE_NAME);
|
|
}
|
|
$criteria = new Criteria();
|
|
$criteria->add(CourseI18nPeer::ID, $id);
|
|
$criteria->add(CourseI18nPeer::CULTURE, $culture);
|
|
$v = CourseI18nPeer::doSelect($criteria, $con);
|
|
|
|
return !empty($v) ? $v[0] : null;
|
|
}
|
|
}
|
|
if (Propel::isInit()) {
|
|
try {
|
|
BaseCourseI18nPeer::getMapBuilder();
|
|
} catch (Exception $e) {
|
|
Propel::log('Could not initialize Peer: ' . $e->getMessage(), Propel::LOG_ERR);
|
|
}
|
|
} else {
|
|
require_once 'lib/model/map/CourseI18nMapBuilder.php';
|
|
Propel::registerMapBuilder('lib.model.map.CourseI18nMapBuilder');
|
|
}
|