setModelAlias($modelAlias); } if ($criteria instanceof Criteria) { $query->mergeWith($criteria); } return $query; } /** * Find object by primary key * Use instance pooling to avoid a database query if the object exists * * $obj = $c->findPk(12, $con); * * @param mixed $key Primary key to use for the query * @param PropelPDO $con an optional connection object * * @return CcPlayoutHistoryTemplateField|array|mixed the result, formatted by the current formatter */ public function findPk($key, $con = null) { if ((null !== ($obj = CcPlayoutHistoryTemplateFieldPeer::getInstanceFromPool((string) $key))) && $this->getFormatter()->isObjectFormatter()) { // the object is alredy in the instance pool return $obj; } else { // the object has not been requested yet, or the formatter is not an object formatter $criteria = $this->isKeepQuery() ? clone $this : $this; $stmt = $criteria ->filterByPrimaryKey($key) ->getSelectStatement($con); return $criteria->getFormatter()->init($criteria)->formatOne($stmt); } } /** * Find objects by primary key * * $objs = $c->findPks(array(12, 56, 832), $con); * * @param array $keys Primary keys to use for the query * @param PropelPDO $con an optional connection object * * @return PropelObjectCollection|array|mixed the list of results, formatted by the current formatter */ public function findPks($keys, $con = null) { $criteria = $this->isKeepQuery() ? clone $this : $this; return $this ->filterByPrimaryKeys($keys) ->find($con); } /** * Filter the query by primary key * * @param mixed $key Primary key to use for the query * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByPrimaryKey($key) { return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::ID, $key, Criteria::EQUAL); } /** * Filter the query by a list of primary keys * * @param array $keys The list of primary key to use for the query * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByPrimaryKeys($keys) { return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::ID, $keys, Criteria::IN); } /** * Filter the query on the id column * * @param int|array $dbId The value to use as filter. * Accepts an associative array('min' => $minValue, 'max' => $maxValue) * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByDbId($dbId = null, $comparison = null) { if (is_array($dbId) && null === $comparison) { $comparison = Criteria::IN; } return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::ID, $dbId, $comparison); } /** * Filter the query on the template_id column * * @param int|array $dbTemplateId The value to use as filter. * Accepts an associative array('min' => $minValue, 'max' => $maxValue) * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByDbTemplateId($dbTemplateId = null, $comparison = null) { if (is_array($dbTemplateId)) { $useMinMax = false; if (isset($dbTemplateId['min'])) { $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::TEMPLATE_ID, $dbTemplateId['min'], Criteria::GREATER_EQUAL); $useMinMax = true; } if (isset($dbTemplateId['max'])) { $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::TEMPLATE_ID, $dbTemplateId['max'], Criteria::LESS_EQUAL); $useMinMax = true; } if ($useMinMax) { return $this; } if (null === $comparison) { $comparison = Criteria::IN; } } return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::TEMPLATE_ID, $dbTemplateId, $comparison); } /** * Filter the query on the name column * * @param string $dbName The value to use as filter. * Accepts wildcards (* and % trigger a LIKE) * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByDbName($dbName = null, $comparison = null) { if (null === $comparison) { if (is_array($dbName)) { $comparison = Criteria::IN; } elseif (preg_match('/[\%\*]/', $dbName)) { $dbName = str_replace('*', '%', $dbName); $comparison = Criteria::LIKE; } } return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::NAME, $dbName, $comparison); } /** * Filter the query on the label column * * @param string $dbLabel The value to use as filter. * Accepts wildcards (* and % trigger a LIKE) * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByDbLabel($dbLabel = null, $comparison = null) { if (null === $comparison) { if (is_array($dbLabel)) { $comparison = Criteria::IN; } elseif (preg_match('/[\%\*]/', $dbLabel)) { $dbLabel = str_replace('*', '%', $dbLabel); $comparison = Criteria::LIKE; } } return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::LABEL, $dbLabel, $comparison); } /** * Filter the query on the type column * * @param string $dbType The value to use as filter. * Accepts wildcards (* and % trigger a LIKE) * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByDbType($dbType = null, $comparison = null) { if (null === $comparison) { if (is_array($dbType)) { $comparison = Criteria::IN; } elseif (preg_match('/[\%\*]/', $dbType)) { $dbType = str_replace('*', '%', $dbType); $comparison = Criteria::LIKE; } } return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::TYPE, $dbType, $comparison); } /** * Filter the query on the is_file_md column * * @param boolean|string $dbIsFileMD The value to use as filter. * Accepts strings ('false', 'off', '-', 'no', 'n', and '0' are false, the rest is true) * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByDbIsFileMD($dbIsFileMD = null, $comparison = null) { if (is_string($dbIsFileMD)) { $is_file_md = in_array(strtolower($dbIsFileMD), array('false', 'off', '-', 'no', 'n', '0')) ? false : true; } return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::IS_FILE_MD, $dbIsFileMD, $comparison); } /** * Filter the query on the position column * * @param int|array $dbPosition The value to use as filter. * Accepts an associative array('min' => $minValue, 'max' => $maxValue) * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByDbPosition($dbPosition = null, $comparison = null) { if (is_array($dbPosition)) { $useMinMax = false; if (isset($dbPosition['min'])) { $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::POSITION, $dbPosition['min'], Criteria::GREATER_EQUAL); $useMinMax = true; } if (isset($dbPosition['max'])) { $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::POSITION, $dbPosition['max'], Criteria::LESS_EQUAL); $useMinMax = true; } if ($useMinMax) { return $this; } if (null === $comparison) { $comparison = Criteria::IN; } } return $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::POSITION, $dbPosition, $comparison); } /** * Filter the query by a related CcPlayoutHistoryTemplate object * * @param CcPlayoutHistoryTemplate $ccPlayoutHistoryTemplate the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function filterByCcPlayoutHistoryTemplate($ccPlayoutHistoryTemplate, $comparison = null) { return $this ->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::TEMPLATE_ID, $ccPlayoutHistoryTemplate->getDbId(), $comparison); } /** * Adds a JOIN clause to the query using the CcPlayoutHistoryTemplate relation * * @param string $relationAlias optional alias for the relation * @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join' * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function joinCcPlayoutHistoryTemplate($relationAlias = '', $joinType = Criteria::INNER_JOIN) { $tableMap = $this->getTableMap(); $relationMap = $tableMap->getRelation('CcPlayoutHistoryTemplate'); // create a ModelJoin object for this join $join = new ModelJoin(); $join->setJoinType($joinType); $join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias); if ($previousJoin = $this->getPreviousJoin()) { $join->setPreviousJoin($previousJoin); } // add the ModelJoin to the current object if($relationAlias) { $this->addAlias($relationAlias, $relationMap->getRightTable()->getName()); $this->addJoinObject($join, $relationAlias); } else { $this->addJoinObject($join, 'CcPlayoutHistoryTemplate'); } return $this; } /** * Use the CcPlayoutHistoryTemplate relation CcPlayoutHistoryTemplate object * * @see useQuery() * * @param string $relationAlias optional alias for the relation, * to be used as main alias in the secondary query * @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join' * * @return CcPlayoutHistoryTemplateQuery A secondary query class using the current class as primary query */ public function useCcPlayoutHistoryTemplateQuery($relationAlias = '', $joinType = Criteria::INNER_JOIN) { return $this ->joinCcPlayoutHistoryTemplate($relationAlias, $joinType) ->useQuery($relationAlias ? $relationAlias : 'CcPlayoutHistoryTemplate', 'CcPlayoutHistoryTemplateQuery'); } /** * Exclude object from result * * @param CcPlayoutHistoryTemplateField $ccPlayoutHistoryTemplateField Object to remove from the list of results * * @return CcPlayoutHistoryTemplateFieldQuery The current query, for fluid interface */ public function prune($ccPlayoutHistoryTemplateField = null) { if ($ccPlayoutHistoryTemplateField) { $this->addUsingAlias(CcPlayoutHistoryTemplateFieldPeer::ID, $ccPlayoutHistoryTemplateField->getDbId(), Criteria::NOT_EQUAL); } return $this; } } // BaseCcPlayoutHistoryTemplateFieldQuery