本文整理汇总了PHP中JobPeer::getOMClass方法的典型用法代码示例。如果您正苦于以下问题:PHP JobPeer::getOMClass方法的具体用法?PHP JobPeer::getOMClass怎么用?PHP JobPeer::getOMClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JobPeer
的用法示例。
在下文中一共展示了JobPeer::getOMClass方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doSelectJoinAllExceptChart
/**
* Selects a collection of Job objects pre-filled with all related objects except Chart.
*
* @param Criteria $criteria
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of Job objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAllExceptChart(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$criteria = clone $criteria;
// Set the correct dbName if it has not been overridden
// $criteria->getDbName() will return the same object if not set to another value
// so == check is okay and faster
if ($criteria->getDbName() == Propel::getDefaultDB()) {
$criteria->setDbName(JobPeer::DATABASE_NAME);
}
JobPeer::addSelectColumns($criteria);
$startcol2 = JobPeer::NUM_HYDRATE_COLUMNS;
UserPeer::addSelectColumns($criteria);
$startcol3 = $startcol2 + UserPeer::NUM_HYDRATE_COLUMNS;
$criteria->addJoin(JobPeer::USER_ID, UserPeer::ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = JobPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = JobPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://www.propelorm.org/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$cls = JobPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
JobPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined User rows
$key2 = UserPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = UserPeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = UserPeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
UserPeer::addInstanceToPool($obj2, $key2);
}
// if $obj2 already loaded
// Add the $obj1 (Job) to the collection in $obj2 (User)
$obj2->addJob($obj1);
}
// if joined row is not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
示例2: doSelectJoinAll
/**
* Selects a collection of Delivery objects pre-filled with all related objects.
*
* @param Criteria $c
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of Delivery objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
foreach (sfMixer::getCallables('BaseDeliveryPeer:doSelectJoinAll:doSelectJoinAll') as $callable) {
call_user_func($callable, 'BaseDeliveryPeer', $c, $con);
}
$c = clone $c;
// Set the correct dbName if it has not been overridden
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
DeliveryPeer::addSelectColumns($c);
$startcol2 = DeliveryPeer::NUM_COLUMNS - DeliveryPeer::NUM_LAZY_LOAD_COLUMNS;
JobPeer::addSelectColumns($c);
$startcol3 = $startcol2 + (JobPeer::NUM_COLUMNS - JobPeer::NUM_LAZY_LOAD_COLUMNS);
$c->addJoin(array(DeliveryPeer::JOB_ID), array(JobPeer::ID), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = DeliveryPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = DeliveryPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://propel.phpdb.org/trac/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$omClass = DeliveryPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj1 = new $cls();
$obj1->hydrate($row);
DeliveryPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined Job rows
$key2 = JobPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = JobPeer::getInstanceFromPool($key2);
if (!$obj2) {
$omClass = JobPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
JobPeer::addInstanceToPool($obj2, $key2);
}
// if obj2 loaded
// Add the $obj1 (Delivery) to the collection in $obj2 (Job)
$obj2->addDelivery($obj1);
}
// if joined row not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
示例3: doSelectJoinAllExceptUserGroup
public static function doSelectJoinAllExceptUserGroup(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
AclPeer::addSelectColumns($c);
$startcol2 = AclPeer::NUM_COLUMNS - AclPeer::NUM_LAZY_LOAD_COLUMNS + 1;
JobPeer::addSelectColumns($c);
$startcol3 = $startcol2 + JobPeer::NUM_COLUMNS;
$c->addJoin(AclPeer::JOB_ID, JobPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = AclPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = JobPeer::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->getJob();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addAcl($obj1);
break;
}
}
if ($newObject) {
$obj2->initAcls();
$obj2->addAcl($obj1);
}
$results[] = $obj1;
}
return $results;
}
示例4: doSelectJoinAllExceptAcademicCostComponent
public static function doSelectJoinAllExceptAcademicCostComponent(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
VStuPaymentPeer::addSelectColumns($c);
$startcol2 = VStuPaymentPeer::NUM_COLUMNS - VStuPaymentPeer::NUM_LAZY_LOAD_COLUMNS + 1;
AcademicCostPeer::addSelectColumns($c);
$startcol3 = $startcol2 + AcademicCostPeer::NUM_COLUMNS;
JobPeer::addSelectColumns($c);
$startcol4 = $startcol3 + JobPeer::NUM_COLUMNS;
AcademicProcessPeer::addSelectColumns($c);
$startcol5 = $startcol4 + AcademicProcessPeer::NUM_COLUMNS;
PaymentModelPeer::addSelectColumns($c);
$startcol6 = $startcol5 + PaymentModelPeer::NUM_COLUMNS;
TransactionStatusPeer::addSelectColumns($c);
$startcol7 = $startcol6 + TransactionStatusPeer::NUM_COLUMNS;
$c->addJoin(VStuPaymentPeer::ACADEMIC_COST_ID, AcademicCostPeer::ID);
$c->addJoin(VStuPaymentPeer::JOB_ID, JobPeer::ID);
$c->addJoin(VStuPaymentPeer::ACADEMIC_PROCESS_ID, AcademicProcessPeer::ID);
$c->addJoin(VStuPaymentPeer::PAYMENT_MODEL_ID, PaymentModelPeer::ID);
$c->addJoin(VStuPaymentPeer::TRANSACTION_STATUS_ID, TransactionStatusPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = VStuPaymentPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = AcademicCostPeer::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->getAcademicCost();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addVStuPayment($obj1);
break;
}
}
if ($newObject) {
$obj2->initVStuPayments();
$obj2->addVStuPayment($obj1);
}
$omClass = JobPeer::getOMClass();
$cls = Propel::import($omClass);
$obj3 = new $cls();
$obj3->hydrate($rs, $startcol3);
$newObject = true;
for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
$temp_obj1 = $results[$j];
$temp_obj3 = $temp_obj1->getJob();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addVStuPayment($obj1);
break;
}
}
if ($newObject) {
$obj3->initVStuPayments();
$obj3->addVStuPayment($obj1);
}
$omClass = AcademicProcessPeer::getOMClass();
$cls = Propel::import($omClass);
$obj4 = new $cls();
$obj4->hydrate($rs, $startcol4);
$newObject = true;
for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
$temp_obj1 = $results[$j];
$temp_obj4 = $temp_obj1->getAcademicProcess();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addVStuPayment($obj1);
break;
}
}
if ($newObject) {
$obj4->initVStuPayments();
$obj4->addVStuPayment($obj1);
}
$omClass = PaymentModelPeer::getOMClass();
$cls = Propel::import($omClass);
$obj5 = new $cls();
$obj5->hydrate($rs, $startcol5);
$newObject = true;
for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
$temp_obj1 = $results[$j];
$temp_obj5 = $temp_obj1->getPaymentModel();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addVStuPayment($obj1);
break;
}
}
if ($newObject) {
$obj5->initVStuPayments();
//.........这里部分代码省略.........
示例5: doSelectWithI18n
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);
}
JobPeer::addSelectColumns($c);
$startcol = JobPeer::NUM_COLUMNS - JobPeer::NUM_LAZY_LOAD_COLUMNS + 1;
JobI18nPeer::addSelectColumns($c);
$c->addJoin(JobPeer::ID, JobI18nPeer::ID);
$c->add(JobI18nPeer::CULTURE, $culture);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = JobPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$obj1->setCulture($culture);
$omClass = JobI18nPeer::getOMClass($rs, $startcol);
$cls = Propel::import($omClass);
$obj2 = new $cls();
$obj2->hydrate($rs, $startcol);
$obj1->setJobI18nForCulture($obj2, $culture);
$obj2->setJob($obj1);
$results[] = $obj1;
}
return $results;
}
示例6: doSelectJoinAllExceptStatus
/**
* Selects a collection of Job objects pre-filled with all related objects except Status.
*
* @param Criteria $c
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of Job objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAllExceptStatus(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$c = clone $c;
// Set the correct dbName if it has not been overridden
// $c->getDbName() will return the same object if not set to another value
// so == check is okay and faster
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
JobPeer::addSelectColumns($c);
$startcol2 = JobPeer::NUM_COLUMNS - JobPeer::NUM_LAZY_LOAD_COLUMNS;
PublicationPeer::addSelectColumns($c);
$startcol3 = $startcol2 + (PublicationPeer::NUM_COLUMNS - PublicationPeer::NUM_LAZY_LOAD_COLUMNS);
ProjectPeer::addSelectColumns($c);
$startcol4 = $startcol3 + (ProjectPeer::NUM_COLUMNS - ProjectPeer::NUM_LAZY_LOAD_COLUMNS);
$c->addJoin(array(JobPeer::PUBLICATION_ID), array(PublicationPeer::ID), $join_behavior);
$c->addJoin(array(JobPeer::PROJECT_ID), array(ProjectPeer::ID), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = JobPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = JobPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://propel.phpdb.org/trac/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$omClass = JobPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj1 = new $cls();
$obj1->hydrate($row);
JobPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined Publication rows
$key2 = PublicationPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = PublicationPeer::getInstanceFromPool($key2);
if (!$obj2) {
$omClass = PublicationPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
PublicationPeer::addInstanceToPool($obj2, $key2);
}
// if $obj2 already loaded
// Add the $obj1 (Job) to the collection in $obj2 (Publication)
$obj2->addJob($obj1);
}
// if joined row is not null
// Add objects for joined Project rows
$key3 = ProjectPeer::getPrimaryKeyHashFromRow($row, $startcol3);
if ($key3 !== null) {
$obj3 = ProjectPeer::getInstanceFromPool($key3);
if (!$obj3) {
$omClass = ProjectPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj3 = new $cls();
$obj3->hydrate($row, $startcol3);
ProjectPeer::addInstanceToPool($obj3, $key3);
}
// if $obj3 already loaded
// Add the $obj1 (Job) to the collection in $obj3 (Project)
$obj3->addJob($obj1);
}
// if joined row is not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}