643 lines
16 KiB
PHP
643 lines
16 KiB
PHP
<?php
|
|
|
|
|
|
abstract class BaseEmployeePeer {
|
|
|
|
|
|
const DATABASE_NAME = 'propel';
|
|
|
|
|
|
const TABLE_NAME = 'Employee';
|
|
|
|
|
|
const CLASS_DEFAULT = 'lib.model.Employee';
|
|
|
|
|
|
const NUM_COLUMNS = 11;
|
|
|
|
|
|
const NUM_LAZY_LOAD_COLUMNS = 0;
|
|
|
|
|
|
|
|
const ID = 'Employee.ID';
|
|
|
|
|
|
const NAME = 'Employee.NAME';
|
|
|
|
|
|
const DEGREES = 'Employee.DEGREES';
|
|
|
|
|
|
const PHONE = 'Employee.PHONE';
|
|
|
|
|
|
const CELLPHONE = 'Employee.CELLPHONE';
|
|
|
|
|
|
const EMAIL = 'Employee.EMAIL';
|
|
|
|
|
|
const PICTURE = 'Employee.PICTURE';
|
|
|
|
|
|
const ACTIVE = 'Employee.ACTIVE';
|
|
|
|
|
|
const POSITION = 'Employee.POSITION';
|
|
|
|
|
|
const SLUG = 'Employee.SLUG';
|
|
|
|
|
|
const SORT_ORDER = 'Employee.SORT_ORDER';
|
|
|
|
|
|
private static $phpNameMap = null;
|
|
|
|
|
|
|
|
private static $fieldNames = array (
|
|
BasePeer::TYPE_PHPNAME => array ('Id', 'Name', 'Degrees', 'Phone', 'Cellphone', 'Email', 'Picture', 'Active', 'Position', 'Slug', 'SortOrder', ),
|
|
BasePeer::TYPE_COLNAME => array (EmployeePeer::ID, EmployeePeer::NAME, EmployeePeer::DEGREES, EmployeePeer::PHONE, EmployeePeer::CELLPHONE, EmployeePeer::EMAIL, EmployeePeer::PICTURE, EmployeePeer::ACTIVE, EmployeePeer::POSITION, EmployeePeer::SLUG, EmployeePeer::SORT_ORDER, ),
|
|
BasePeer::TYPE_FIELDNAME => array ('id', 'name', 'degrees', 'phone', 'cellphone', 'email', 'picture', 'active', 'position', 'slug', 'sort_order', ),
|
|
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, )
|
|
);
|
|
|
|
|
|
private static $fieldKeys = array (
|
|
BasePeer::TYPE_PHPNAME => array ('Id' => 0, 'Name' => 1, 'Degrees' => 2, 'Phone' => 3, 'Cellphone' => 4, 'Email' => 5, 'Picture' => 6, 'Active' => 7, 'Position' => 8, 'Slug' => 9, 'SortOrder' => 10, ),
|
|
BasePeer::TYPE_COLNAME => array (EmployeePeer::ID => 0, EmployeePeer::NAME => 1, EmployeePeer::DEGREES => 2, EmployeePeer::PHONE => 3, EmployeePeer::CELLPHONE => 4, EmployeePeer::EMAIL => 5, EmployeePeer::PICTURE => 6, EmployeePeer::ACTIVE => 7, EmployeePeer::POSITION => 8, EmployeePeer::SLUG => 9, EmployeePeer::SORT_ORDER => 10, ),
|
|
BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'name' => 1, 'degrees' => 2, 'phone' => 3, 'cellphone' => 4, 'email' => 5, 'picture' => 6, 'active' => 7, 'position' => 8, 'slug' => 9, 'sort_order' => 10, ),
|
|
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, )
|
|
);
|
|
|
|
|
|
public static function getMapBuilder()
|
|
{
|
|
include_once 'lib/model/map/EmployeeMapBuilder.php';
|
|
return BasePeer::getMapBuilder('lib.model.map.EmployeeMapBuilder');
|
|
}
|
|
|
|
public static function getPhpNameMap()
|
|
{
|
|
if (self::$phpNameMap === null) {
|
|
$map = EmployeePeer::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(EmployeePeer::TABLE_NAME.'.', $alias.'.', $column);
|
|
}
|
|
|
|
|
|
public static function addSelectColumns(Criteria $criteria)
|
|
{
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::ID);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::NAME);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::DEGREES);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::PHONE);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::CELLPHONE);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::EMAIL);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::PICTURE);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::ACTIVE);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::POSITION);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::SLUG);
|
|
|
|
$criteria->addSelectColumn(EmployeePeer::SORT_ORDER);
|
|
|
|
}
|
|
|
|
const COUNT = 'COUNT(Employee.ID)';
|
|
const COUNT_DISTINCT = 'COUNT(DISTINCT Employee.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(EmployeePeer::COUNT_DISTINCT);
|
|
} else {
|
|
$criteria->addSelectColumn(EmployeePeer::COUNT);
|
|
}
|
|
|
|
foreach($criteria->getGroupByColumns() as $column)
|
|
{
|
|
$criteria->addSelectColumn($column);
|
|
}
|
|
|
|
$rs = EmployeePeer::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 = EmployeePeer::doSelect($critcopy, $con);
|
|
if ($objects) {
|
|
return $objects[0];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public static function doSelect(Criteria $criteria, $con = null)
|
|
{
|
|
return EmployeePeer::populateObjects(EmployeePeer::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;
|
|
EmployeePeer::addSelectColumns($criteria);
|
|
}
|
|
|
|
$criteria->setDbName(self::DATABASE_NAME);
|
|
|
|
return BasePeer::doSelect($criteria, $con);
|
|
}
|
|
|
|
public static function populateObjects(ResultSet $rs)
|
|
{
|
|
$results = array();
|
|
|
|
$cls = EmployeePeer::getOMClass();
|
|
$cls = Propel::import($cls);
|
|
while($rs->next()) {
|
|
|
|
$obj = new $cls();
|
|
$obj->hydrate($rs);
|
|
$results[] = $obj;
|
|
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
|
|
public static function doCountJoinLuEmployeePosition(Criteria $criteria, $distinct = false, $con = null)
|
|
{
|
|
$criteria = clone $criteria;
|
|
|
|
$criteria->clearSelectColumns()->clearOrderByColumns();
|
|
if ($distinct || in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
|
|
$criteria->addSelectColumn(EmployeePeer::COUNT_DISTINCT);
|
|
} else {
|
|
$criteria->addSelectColumn(EmployeePeer::COUNT);
|
|
}
|
|
|
|
foreach($criteria->getGroupByColumns() as $column)
|
|
{
|
|
$criteria->addSelectColumn($column);
|
|
}
|
|
|
|
$criteria->addJoin(EmployeePeer::POSITION, LuEmployeePositionPeer::ID);
|
|
|
|
$rs = EmployeePeer::doSelectRS($criteria, $con);
|
|
if ($rs->next()) {
|
|
return $rs->getInt(1);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public static function doSelectJoinLuEmployeePosition(Criteria $c, $con = null)
|
|
{
|
|
$c = clone $c;
|
|
|
|
if ($c->getDbName() == Propel::getDefaultDB()) {
|
|
$c->setDbName(self::DATABASE_NAME);
|
|
}
|
|
|
|
EmployeePeer::addSelectColumns($c);
|
|
$startcol = (EmployeePeer::NUM_COLUMNS - EmployeePeer::NUM_LAZY_LOAD_COLUMNS) + 1;
|
|
LuEmployeePositionPeer::addSelectColumns($c);
|
|
|
|
$c->addJoin(EmployeePeer::POSITION, LuEmployeePositionPeer::ID);
|
|
$rs = BasePeer::doSelect($c, $con);
|
|
$results = array();
|
|
|
|
while($rs->next()) {
|
|
|
|
$omClass = EmployeePeer::getOMClass();
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj1 = new $cls();
|
|
$obj1->hydrate($rs);
|
|
|
|
$omClass = LuEmployeePositionPeer::getOMClass();
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj2 = new $cls();
|
|
$obj2->hydrate($rs, $startcol);
|
|
|
|
$newObject = true;
|
|
foreach($results as $temp_obj1) {
|
|
$temp_obj2 = $temp_obj1->getLuEmployeePosition(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
|
|
$newObject = false;
|
|
$temp_obj2->addEmployee($obj1); break;
|
|
}
|
|
}
|
|
if ($newObject) {
|
|
$obj2->initEmployees();
|
|
$obj2->addEmployee($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(EmployeePeer::COUNT_DISTINCT);
|
|
} else {
|
|
$criteria->addSelectColumn(EmployeePeer::COUNT);
|
|
}
|
|
|
|
foreach($criteria->getGroupByColumns() as $column)
|
|
{
|
|
$criteria->addSelectColumn($column);
|
|
}
|
|
|
|
$criteria->addJoin(EmployeePeer::POSITION, LuEmployeePositionPeer::ID);
|
|
|
|
$rs = EmployeePeer::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);
|
|
}
|
|
|
|
EmployeePeer::addSelectColumns($c);
|
|
$startcol2 = (EmployeePeer::NUM_COLUMNS - EmployeePeer::NUM_LAZY_LOAD_COLUMNS) + 1;
|
|
|
|
LuEmployeePositionPeer::addSelectColumns($c);
|
|
$startcol3 = $startcol2 + LuEmployeePositionPeer::NUM_COLUMNS;
|
|
|
|
$c->addJoin(EmployeePeer::POSITION, LuEmployeePositionPeer::ID);
|
|
|
|
$rs = BasePeer::doSelect($c, $con);
|
|
$results = array();
|
|
|
|
while($rs->next()) {
|
|
|
|
$omClass = EmployeePeer::getOMClass();
|
|
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj1 = new $cls();
|
|
$obj1->hydrate($rs);
|
|
|
|
|
|
|
|
$omClass = LuEmployeePositionPeer::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->getLuEmployeePosition(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
|
|
$newObject = false;
|
|
$temp_obj2->addEmployee($obj1); break;
|
|
}
|
|
}
|
|
|
|
if ($newObject) {
|
|
$obj2->initEmployees();
|
|
$obj2->addEmployee($obj1);
|
|
}
|
|
|
|
$results[] = $obj1;
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
|
|
|
|
public static function doSelectWithI18n(Criteria $c, $culture = null, $con = null)
|
|
{
|
|
if ($culture === null)
|
|
{
|
|
$culture = sfContext::getInstance()->getUser()->getCulture();
|
|
}
|
|
|
|
if ($c->getDbName() == Propel::getDefaultDB())
|
|
{
|
|
$c->setDbName(self::DATABASE_NAME);
|
|
}
|
|
|
|
EmployeePeer::addSelectColumns($c);
|
|
$startcol = (EmployeePeer::NUM_COLUMNS - EmployeePeer::NUM_LAZY_LOAD_COLUMNS) + 1;
|
|
|
|
EmployeeI18nPeer::addSelectColumns($c);
|
|
|
|
$c->addJoin(EmployeePeer::ID, EmployeeI18nPeer::ID);
|
|
$c->add(EmployeeI18nPeer::CULTURE, $culture);
|
|
|
|
$rs = BasePeer::doSelect($c, $con);
|
|
$results = array();
|
|
|
|
while($rs->next()) {
|
|
|
|
$omClass = EmployeePeer::getOMClass();
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj1 = new $cls();
|
|
$obj1->hydrate($rs);
|
|
$obj1->setCulture($culture);
|
|
|
|
$omClass = EmployeeI18nPeer::getOMClass($rs, $startcol);
|
|
|
|
$cls = Propel::import($omClass);
|
|
$obj2 = new $cls();
|
|
$obj2->hydrate($rs, $startcol);
|
|
|
|
$obj1->setEmployeeI18nForCulture($obj2, $culture);
|
|
$obj2->setEmployee($obj1);
|
|
|
|
$results[] = $obj1;
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
|
|
public static function getTableMap()
|
|
{
|
|
return Propel::getDatabaseMap(self::DATABASE_NAME)->getTable(self::TABLE_NAME);
|
|
}
|
|
|
|
|
|
public static function getOMClass()
|
|
{
|
|
return EmployeePeer::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(EmployeePeer::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(EmployeePeer::ID);
|
|
$selectCriteria->add(EmployeePeer::ID, $criteria->remove(EmployeePeer::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 += EmployeePeer::doOnDeleteCascade(new Criteria(), $con);
|
|
$affectedRows += BasePeer::doDeleteAll(EmployeePeer::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(EmployeePeer::DATABASE_NAME);
|
|
}
|
|
|
|
if ($values instanceof Criteria) {
|
|
$criteria = clone $values; } elseif ($values instanceof Employee) {
|
|
|
|
$criteria = $values->buildPkeyCriteria();
|
|
} else {
|
|
$criteria = new Criteria(self::DATABASE_NAME);
|
|
$criteria->add(EmployeePeer::ID, (array) $values, Criteria::IN);
|
|
}
|
|
|
|
$criteria->setDbName(self::DATABASE_NAME);
|
|
|
|
$affectedRows = 0;
|
|
try {
|
|
$con->begin();
|
|
$affectedRows += EmployeePeer::doOnDeleteCascade($criteria, $con);
|
|
$affectedRows += BasePeer::doDelete($criteria, $con);
|
|
$con->commit();
|
|
return $affectedRows;
|
|
} catch (PropelException $e) {
|
|
$con->rollback();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
|
|
protected static function doOnDeleteCascade(Criteria $criteria, Connection $con)
|
|
{
|
|
$affectedRows = 0;
|
|
|
|
$objects = EmployeePeer::doSelect($criteria, $con);
|
|
foreach($objects as $obj) {
|
|
|
|
|
|
include_once 'lib/model/EmployeeI18n.php';
|
|
|
|
$c = new Criteria();
|
|
|
|
$c->add(EmployeeI18nPeer::ID, $obj->getId());
|
|
$affectedRows += EmployeeI18nPeer::doDelete($c, $con);
|
|
}
|
|
return $affectedRows;
|
|
}
|
|
|
|
|
|
public static function doValidate(Employee $obj, $cols = null)
|
|
{
|
|
$columns = array();
|
|
|
|
if ($cols) {
|
|
$dbMap = Propel::getDatabaseMap(EmployeePeer::DATABASE_NAME);
|
|
$tableMap = $dbMap->getTable(EmployeePeer::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(EmployeePeer::DATABASE_NAME, EmployeePeer::TABLE_NAME, $columns);
|
|
if ($res !== true) {
|
|
$request = sfContext::getInstance()->getRequest();
|
|
foreach ($res as $failed) {
|
|
$col = EmployeePeer::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(EmployeePeer::DATABASE_NAME);
|
|
|
|
$criteria->add(EmployeePeer::ID, $pk);
|
|
|
|
|
|
$v = EmployeePeer::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(EmployeePeer::ID, $pks, Criteria::IN);
|
|
$objs = EmployeePeer::doSelect($criteria, $con);
|
|
}
|
|
return $objs;
|
|
}
|
|
|
|
}
|
|
if (Propel::isInit()) {
|
|
try {
|
|
BaseEmployeePeer::getMapBuilder();
|
|
} catch (Exception $e) {
|
|
Propel::log('Could not initialize Peer: ' . $e->getMessage(), Propel::LOG_ERR);
|
|
}
|
|
} else {
|
|
require_once 'lib/model/map/EmployeeMapBuilder.php';
|
|
Propel::registerMapBuilder('lib.model.map.EmployeeMapBuilder');
|
|
}
|