mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
384 lines
9.6 KiB
PHP
Executable File
384 lines
9.6 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
abstract class BaseWorkorderTechPeer {
|
|
|
|
|
|
const DATABASE_NAME = 'propel';
|
|
|
|
|
|
const TABLE_NAME = 'workorder_tech';
|
|
|
|
|
|
const CLASS_DEFAULT = 'lib.model.WorkorderTech';
|
|
|
|
|
|
const NUM_COLUMNS = 5;
|
|
|
|
|
|
const NUM_LAZY_LOAD_COLUMNS = 0;
|
|
|
|
|
|
|
|
const ID = 'workorder_tech.ID';
|
|
|
|
|
|
const WORKORDER_ID = 'workorder_tech.WORKORDER_ID';
|
|
|
|
|
|
const USER_ID = 'workorder_tech.USER_ID';
|
|
|
|
|
|
const CREATED_AT = 'workorder_tech.CREATED_AT';
|
|
|
|
|
|
const UPDATED_AT = 'workorder_tech.UPDATED_AT';
|
|
|
|
|
|
private static $phpNameMap = null;
|
|
|
|
|
|
|
|
private static $fieldNames = array (
|
|
BasePeer::TYPE_PHPNAME => array ('Id', 'WorkorderId', 'UserId', 'CreatedAt', 'UpdatedAt', ),
|
|
BasePeer::TYPE_COLNAME => array (WorkorderTechPeer::ID, WorkorderTechPeer::WORKORDER_ID, WorkorderTechPeer::USER_ID, WorkorderTechPeer::CREATED_AT, WorkorderTechPeer::UPDATED_AT, ),
|
|
BasePeer::TYPE_FIELDNAME => array ('id', 'workorder_id', 'user_id', 'created_at', 'updated_at', ),
|
|
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
|
|
);
|
|
|
|
|
|
private static $fieldKeys = array (
|
|
BasePeer::TYPE_PHPNAME => array ('Id' => 0, 'WorkorderId' => 1, 'UserId' => 2, 'CreatedAt' => 3, 'UpdatedAt' => 4, ),
|
|
BasePeer::TYPE_COLNAME => array (WorkorderTechPeer::ID => 0, WorkorderTechPeer::WORKORDER_ID => 1, WorkorderTechPeer::USER_ID => 2, WorkorderTechPeer::CREATED_AT => 3, WorkorderTechPeer::UPDATED_AT => 4, ),
|
|
BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'workorder_id' => 1, 'user_id' => 2, 'created_at' => 3, 'updated_at' => 4, ),
|
|
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
|
|
);
|
|
|
|
|
|
public static function getMapBuilder()
|
|
{
|
|
include_once 'lib/model/map/WorkorderTechMapBuilder.php';
|
|
return BasePeer::getMapBuilder('lib.model.map.WorkorderTechMapBuilder');
|
|
}
|
|
|
|
public static function getPhpNameMap()
|
|
{
|
|
if (self::$phpNameMap === null) {
|
|
$map = WorkorderTechPeer::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(WorkorderTechPeer::TABLE_NAME.'.', $alias.'.', $column);
|
|
}
|
|
|
|
|
|
public static function addSelectColumns(Criteria $criteria)
|
|
{
|
|
|
|
$criteria->addSelectColumn(WorkorderTechPeer::ID);
|
|
|
|
$criteria->addSelectColumn(WorkorderTechPeer::WORKORDER_ID);
|
|
|
|
$criteria->addSelectColumn(WorkorderTechPeer::USER_ID);
|
|
|
|
$criteria->addSelectColumn(WorkorderTechPeer::CREATED_AT);
|
|
|
|
$criteria->addSelectColumn(WorkorderTechPeer::UPDATED_AT);
|
|
|
|
}
|
|
|
|
const COUNT = 'COUNT(workorder_tech.ID)';
|
|
const COUNT_DISTINCT = 'COUNT(DISTINCT workorder_tech.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(WorkorderTechPeer::COUNT_DISTINCT);
|
|
} else {
|
|
$criteria->addSelectColumn(WorkorderTechPeer::COUNT);
|
|
}
|
|
|
|
foreach($criteria->getGroupByColumns() as $column)
|
|
{
|
|
$criteria->addSelectColumn($column);
|
|
}
|
|
|
|
$rs = WorkorderTechPeer::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 = WorkorderTechPeer::doSelect($critcopy, $con);
|
|
if ($objects) {
|
|
return $objects[0];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public static function doSelect(Criteria $criteria, $con = null)
|
|
{
|
|
return WorkorderTechPeer::populateObjects(WorkorderTechPeer::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;
|
|
WorkorderTechPeer::addSelectColumns($criteria);
|
|
}
|
|
|
|
$criteria->setDbName(self::DATABASE_NAME);
|
|
|
|
return BasePeer::doSelect($criteria, $con);
|
|
}
|
|
|
|
public static function populateObjects(ResultSet $rs)
|
|
{
|
|
$results = array();
|
|
|
|
$cls = WorkorderTechPeer::getOMClass();
|
|
$cls = Propel::import($cls);
|
|
while($rs->next()) {
|
|
|
|
$obj = new $cls();
|
|
$obj->hydrate($rs);
|
|
$results[] = $obj;
|
|
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
public static function getTableMap()
|
|
{
|
|
return Propel::getDatabaseMap(self::DATABASE_NAME)->getTable(self::TABLE_NAME);
|
|
}
|
|
|
|
|
|
public static function getOMClass()
|
|
{
|
|
return WorkorderTechPeer::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->remove(WorkorderTechPeer::ID);
|
|
|
|
$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(WorkorderTechPeer::ID);
|
|
$selectCriteria->add(WorkorderTechPeer::ID, $criteria->remove(WorkorderTechPeer::ID), $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(WorkorderTechPeer::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(WorkorderTechPeer::DATABASE_NAME);
|
|
}
|
|
|
|
if ($values instanceof Criteria) {
|
|
$criteria = clone $values; } elseif ($values instanceof WorkorderTech) {
|
|
|
|
$criteria = $values->buildPkeyCriteria();
|
|
} else {
|
|
$criteria = new Criteria(self::DATABASE_NAME);
|
|
$criteria->add(WorkorderTechPeer::ID, (array) $values, 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(WorkorderTech $obj, $cols = null)
|
|
{
|
|
$columns = array();
|
|
|
|
if ($cols) {
|
|
$dbMap = Propel::getDatabaseMap(WorkorderTechPeer::DATABASE_NAME);
|
|
$tableMap = $dbMap->getTable(WorkorderTechPeer::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(WorkorderTechPeer::DATABASE_NAME, WorkorderTechPeer::TABLE_NAME, $columns);
|
|
if ($res !== true) {
|
|
$request = sfContext::getInstance()->getRequest();
|
|
foreach ($res as $failed) {
|
|
$col = WorkorderTechPeer::translateFieldname($failed->getColumn(), BasePeer::TYPE_COLNAME, BasePeer::TYPE_PHPNAME);
|
|
$request->setError($col, $failed->getMessage());
|
|
}
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
|
|
public static function retrieveByPK($pk, $con = null)
|
|
{
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(self::DATABASE_NAME);
|
|
}
|
|
|
|
$criteria = new Criteria(WorkorderTechPeer::DATABASE_NAME);
|
|
|
|
$criteria->add(WorkorderTechPeer::ID, $pk);
|
|
|
|
|
|
$v = WorkorderTechPeer::doSelect($criteria, $con);
|
|
|
|
return !empty($v) > 0 ? $v[0] : null;
|
|
}
|
|
|
|
|
|
public static function retrieveByPKs($pks, $con = null)
|
|
{
|
|
if ($con === null) {
|
|
$con = Propel::getConnection(self::DATABASE_NAME);
|
|
}
|
|
|
|
$objs = null;
|
|
if (empty($pks)) {
|
|
$objs = array();
|
|
} else {
|
|
$criteria = new Criteria();
|
|
$criteria->add(WorkorderTechPeer::ID, $pks, Criteria::IN);
|
|
$objs = WorkorderTechPeer::doSelect($criteria, $con);
|
|
}
|
|
return $objs;
|
|
}
|
|
|
|
}
|
|
if (Propel::isInit()) {
|
|
try {
|
|
BaseWorkorderTechPeer::getMapBuilder();
|
|
} catch (Exception $e) {
|
|
Propel::log('Could not initialize Peer: ' . $e->getMessage(), Propel::LOG_ERR);
|
|
}
|
|
} else {
|
|
require_once 'lib/model/map/WorkorderTechMapBuilder.php';
|
|
Propel::registerMapBuilder('lib.model.map.WorkorderTechMapBuilder');
|
|
}
|