deblan.tv/vendor/trinity/src/Trinity/Bundle/MediaBundle/Model/om/BaseCategoryQuery.php
2015-03-02 21:57:49 +01:00

1104 lines
43 KiB
PHP

<?php
namespace Trinity\Bundle\MediaBundle\Model\om;
use \Criteria;
use \Exception;
use \ModelCriteria;
use \ModelJoin;
use \PDO;
use \Propel;
use \PropelCollection;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use Trinity\Bundle\MediaBundle\Model\Category;
use Trinity\Bundle\MediaBundle\Model\CategoryPeer;
use Trinity\Bundle\MediaBundle\Model\CategoryQuery;
use Trinity\Bundle\MediaBundle\Model\Media;
/**
* @method CategoryQuery orderById($order = Criteria::ASC) Order by the id column
* @method CategoryQuery orderByLabel($order = Criteria::ASC) Order by the label column
* @method CategoryQuery orderByCategoryId($order = Criteria::ASC) Order by the category_id column
* @method CategoryQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
* @method CategoryQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
* @method CategoryQuery orderBySlug($order = Criteria::ASC) Order by the slug column
* @method CategoryQuery orderByTreeLeft($order = Criteria::ASC) Order by the tree_left column
* @method CategoryQuery orderByTreeRight($order = Criteria::ASC) Order by the tree_right column
* @method CategoryQuery orderByTreeLevel($order = Criteria::ASC) Order by the tree_level column
*
* @method CategoryQuery groupById() Group by the id column
* @method CategoryQuery groupByLabel() Group by the label column
* @method CategoryQuery groupByCategoryId() Group by the category_id column
* @method CategoryQuery groupByCreatedAt() Group by the created_at column
* @method CategoryQuery groupByUpdatedAt() Group by the updated_at column
* @method CategoryQuery groupBySlug() Group by the slug column
* @method CategoryQuery groupByTreeLeft() Group by the tree_left column
* @method CategoryQuery groupByTreeRight() Group by the tree_right column
* @method CategoryQuery groupByTreeLevel() Group by the tree_level column
*
* @method CategoryQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method CategoryQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method CategoryQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method CategoryQuery leftJoinCategoryRelatedByCategoryId($relationAlias = null) Adds a LEFT JOIN clause to the query using the CategoryRelatedByCategoryId relation
* @method CategoryQuery rightJoinCategoryRelatedByCategoryId($relationAlias = null) Adds a RIGHT JOIN clause to the query using the CategoryRelatedByCategoryId relation
* @method CategoryQuery innerJoinCategoryRelatedByCategoryId($relationAlias = null) Adds a INNER JOIN clause to the query using the CategoryRelatedByCategoryId relation
*
* @method CategoryQuery leftJoinMedia($relationAlias = null) Adds a LEFT JOIN clause to the query using the Media relation
* @method CategoryQuery rightJoinMedia($relationAlias = null) Adds a RIGHT JOIN clause to the query using the Media relation
* @method CategoryQuery innerJoinMedia($relationAlias = null) Adds a INNER JOIN clause to the query using the Media relation
*
* @method CategoryQuery leftJoinCategoryRelatedById($relationAlias = null) Adds a LEFT JOIN clause to the query using the CategoryRelatedById relation
* @method CategoryQuery rightJoinCategoryRelatedById($relationAlias = null) Adds a RIGHT JOIN clause to the query using the CategoryRelatedById relation
* @method CategoryQuery innerJoinCategoryRelatedById($relationAlias = null) Adds a INNER JOIN clause to the query using the CategoryRelatedById relation
*
* @method Category findOne(PropelPDO $con = null) Return the first Category matching the query
* @method Category findOneOrCreate(PropelPDO $con = null) Return the first Category matching the query, or a new Category object populated from the query conditions when no match is found
*
* @method Category findOneByLabel(string $label) Return the first Category filtered by the label column
* @method Category findOneByCategoryId(int $category_id) Return the first Category filtered by the category_id column
* @method Category findOneByCreatedAt(string $created_at) Return the first Category filtered by the created_at column
* @method Category findOneByUpdatedAt(string $updated_at) Return the first Category filtered by the updated_at column
* @method Category findOneBySlug(string $slug) Return the first Category filtered by the slug column
* @method Category findOneByTreeLeft(int $tree_left) Return the first Category filtered by the tree_left column
* @method Category findOneByTreeRight(int $tree_right) Return the first Category filtered by the tree_right column
* @method Category findOneByTreeLevel(int $tree_level) Return the first Category filtered by the tree_level column
*
* @method array findById(int $id) Return Category objects filtered by the id column
* @method array findByLabel(string $label) Return Category objects filtered by the label column
* @method array findByCategoryId(int $category_id) Return Category objects filtered by the category_id column
* @method array findByCreatedAt(string $created_at) Return Category objects filtered by the created_at column
* @method array findByUpdatedAt(string $updated_at) Return Category objects filtered by the updated_at column
* @method array findBySlug(string $slug) Return Category objects filtered by the slug column
* @method array findByTreeLeft(int $tree_left) Return Category objects filtered by the tree_left column
* @method array findByTreeRight(int $tree_right) Return Category objects filtered by the tree_right column
* @method array findByTreeLevel(int $tree_level) Return Category objects filtered by the tree_level column
*/
abstract class BaseCategoryQuery extends ModelCriteria
{
/**
* Initializes internal state of BaseCategoryQuery object.
*
* @param string $dbName The dabase name
* @param string $modelName The phpName of a model, e.g. 'Book'
* @param string $modelAlias The alias for the model in this query, e.g. 'b'
*/
public function __construct($dbName = 'default', $modelName = 'Trinity\\Bundle\\MediaBundle\\Model\\Category', $modelAlias = null)
{
parent::__construct($dbName, $modelName, $modelAlias);
}
/**
* Returns a new CategoryQuery object.
*
* @param string $modelAlias The alias of a model in the query
* @param CategoryQuery|Criteria $criteria Optional Criteria to build the query from
*
* @return CategoryQuery
*/
public static function create($modelAlias = null, $criteria = null)
{
if ($criteria instanceof CategoryQuery) {
return $criteria;
}
$query = new CategoryQuery();
if (null !== $modelAlias) {
$query->setModelAlias($modelAlias);
}
if ($criteria instanceof Criteria) {
$query->mergeWith($criteria);
}
return $query;
}
/**
* Find object by primary key.
* Propel uses the instance pool to skip the database if the object exists.
* Go fast if the query is untouched.
*
* <code>
* $obj = $c->findPk(12, $con);
* </code>
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return Category|Category[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if ((null !== ($obj = CategoryPeer::getInstanceFromPool((string) $key))) && !$this->formatter) {
// the object is alredy in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(CategoryPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
if ($this->formatter || $this->modelAlias || $this->with || $this->select
|| $this->selectColumns || $this->asColumns || $this->selectModifiers
|| $this->map || $this->having || $this->joins) {
return $this->findPkComplex($key, $con);
} else {
return $this->findPkSimple($key, $con);
}
}
/**
* Alias of findPk to use instance pooling
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return Category A model object, or null if the key is not found
* @throws PropelException
*/
public function findOneById($key, $con = null)
{
return $this->findPk($key, $con);
}
/**
* Find object by primary key using raw SQL to go fast.
* Bypass doSelect() and the object formatter by using generated code.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return Category A model object, or null if the key is not found
* @throws PropelException
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `id`, `label`, `category_id`, `created_at`, `updated_at`, `slug`, `tree_left`, `tree_right`, `tree_level` FROM `media_category` WHERE `id` = :p0';
try {
$stmt = $con->prepare($sql);
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
$stmt->execute();
} catch (Exception $e) {
Propel::log($e->getMessage(), Propel::LOG_ERR);
throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
}
$obj = null;
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$obj = new Category();
$obj->hydrate($row);
CategoryPeer::addInstanceToPool($obj, (string) $key);
}
$stmt->closeCursor();
return $obj;
}
/**
* Find object by primary key.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return Category|Category[]|mixed the result, formatted by the current formatter
*/
protected function findPkComplex($key, $con)
{
// As the query uses a PK condition, no limit(1) is necessary.
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKey($key)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
}
/**
* Find objects by primary key
* <code>
* $objs = $c->findPks(array(12, 56, 832), $con);
* </code>
* @param array $keys Primary keys to use for the query
* @param PropelPDO $con an optional connection object
*
* @return PropelObjectCollection|Category[]|mixed the list of results, formatted by the current formatter
*/
public function findPks($keys, $con = null)
{
if ($con === null) {
$con = Propel::getConnection($this->getDbName(), Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKeys($keys)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->format($stmt);
}
/**
* Filter the query by primary key
*
* @param mixed $key Primary key to use for the query
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterByPrimaryKey($key)
{
return $this->addUsingAlias(CategoryPeer::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 CategoryQuery The current query, for fluid interface
*/
public function filterByPrimaryKeys($keys)
{
return $this->addUsingAlias(CategoryPeer::ID, $keys, Criteria::IN);
}
/**
* Filter the query on the id column
*
* Example usage:
* <code>
* $query->filterById(1234); // WHERE id = 1234
* $query->filterById(array(12, 34)); // WHERE id IN (12, 34)
* $query->filterById(array('min' => 12)); // WHERE id >= 12
* $query->filterById(array('max' => 12)); // WHERE id <= 12
* </code>
*
* @param mixed $id The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterById($id = null, $comparison = null)
{
if (is_array($id)) {
$useMinMax = false;
if (isset($id['min'])) {
$this->addUsingAlias(CategoryPeer::ID, $id['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($id['max'])) {
$this->addUsingAlias(CategoryPeer::ID, $id['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CategoryPeer::ID, $id, $comparison);
}
/**
* Filter the query on the label column
*
* Example usage:
* <code>
* $query->filterByLabel('fooValue'); // WHERE label = 'fooValue'
* $query->filterByLabel('%fooValue%'); // WHERE label LIKE '%fooValue%'
* </code>
*
* @param string $label 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 CategoryQuery The current query, for fluid interface
*/
public function filterByLabel($label = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($label)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $label)) {
$label = str_replace('*', '%', $label);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(CategoryPeer::LABEL, $label, $comparison);
}
/**
* Filter the query on the category_id column
*
* Example usage:
* <code>
* $query->filterByCategoryId(1234); // WHERE category_id = 1234
* $query->filterByCategoryId(array(12, 34)); // WHERE category_id IN (12, 34)
* $query->filterByCategoryId(array('min' => 12)); // WHERE category_id >= 12
* $query->filterByCategoryId(array('max' => 12)); // WHERE category_id <= 12
* </code>
*
* @see filterByCategoryRelatedByCategoryId()
*
* @param mixed $categoryId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterByCategoryId($categoryId = null, $comparison = null)
{
if (is_array($categoryId)) {
$useMinMax = false;
if (isset($categoryId['min'])) {
$this->addUsingAlias(CategoryPeer::CATEGORY_ID, $categoryId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($categoryId['max'])) {
$this->addUsingAlias(CategoryPeer::CATEGORY_ID, $categoryId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CategoryPeer::CATEGORY_ID, $categoryId, $comparison);
}
/**
* Filter the query on the created_at column
*
* Example usage:
* <code>
* $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt('now'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'
* </code>
*
* @param mixed $createdAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterByCreatedAt($createdAt = null, $comparison = null)
{
if (is_array($createdAt)) {
$useMinMax = false;
if (isset($createdAt['min'])) {
$this->addUsingAlias(CategoryPeer::CREATED_AT, $createdAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($createdAt['max'])) {
$this->addUsingAlias(CategoryPeer::CREATED_AT, $createdAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CategoryPeer::CREATED_AT, $createdAt, $comparison);
}
/**
* Filter the query on the updated_at column
*
* Example usage:
* <code>
* $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt('now'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'
* </code>
*
* @param mixed $updatedAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterByUpdatedAt($updatedAt = null, $comparison = null)
{
if (is_array($updatedAt)) {
$useMinMax = false;
if (isset($updatedAt['min'])) {
$this->addUsingAlias(CategoryPeer::UPDATED_AT, $updatedAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($updatedAt['max'])) {
$this->addUsingAlias(CategoryPeer::UPDATED_AT, $updatedAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CategoryPeer::UPDATED_AT, $updatedAt, $comparison);
}
/**
* Filter the query on the slug column
*
* Example usage:
* <code>
* $query->filterBySlug('fooValue'); // WHERE slug = 'fooValue'
* $query->filterBySlug('%fooValue%'); // WHERE slug LIKE '%fooValue%'
* </code>
*
* @param string $slug 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 CategoryQuery The current query, for fluid interface
*/
public function filterBySlug($slug = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($slug)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $slug)) {
$slug = str_replace('*', '%', $slug);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(CategoryPeer::SLUG, $slug, $comparison);
}
/**
* Filter the query on the tree_left column
*
* Example usage:
* <code>
* $query->filterByTreeLeft(1234); // WHERE tree_left = 1234
* $query->filterByTreeLeft(array(12, 34)); // WHERE tree_left IN (12, 34)
* $query->filterByTreeLeft(array('min' => 12)); // WHERE tree_left >= 12
* $query->filterByTreeLeft(array('max' => 12)); // WHERE tree_left <= 12
* </code>
*
* @param mixed $treeLeft The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterByTreeLeft($treeLeft = null, $comparison = null)
{
if (is_array($treeLeft)) {
$useMinMax = false;
if (isset($treeLeft['min'])) {
$this->addUsingAlias(CategoryPeer::TREE_LEFT, $treeLeft['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($treeLeft['max'])) {
$this->addUsingAlias(CategoryPeer::TREE_LEFT, $treeLeft['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CategoryPeer::TREE_LEFT, $treeLeft, $comparison);
}
/**
* Filter the query on the tree_right column
*
* Example usage:
* <code>
* $query->filterByTreeRight(1234); // WHERE tree_right = 1234
* $query->filterByTreeRight(array(12, 34)); // WHERE tree_right IN (12, 34)
* $query->filterByTreeRight(array('min' => 12)); // WHERE tree_right >= 12
* $query->filterByTreeRight(array('max' => 12)); // WHERE tree_right <= 12
* </code>
*
* @param mixed $treeRight The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterByTreeRight($treeRight = null, $comparison = null)
{
if (is_array($treeRight)) {
$useMinMax = false;
if (isset($treeRight['min'])) {
$this->addUsingAlias(CategoryPeer::TREE_RIGHT, $treeRight['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($treeRight['max'])) {
$this->addUsingAlias(CategoryPeer::TREE_RIGHT, $treeRight['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CategoryPeer::TREE_RIGHT, $treeRight, $comparison);
}
/**
* Filter the query on the tree_level column
*
* Example usage:
* <code>
* $query->filterByTreeLevel(1234); // WHERE tree_level = 1234
* $query->filterByTreeLevel(array(12, 34)); // WHERE tree_level IN (12, 34)
* $query->filterByTreeLevel(array('min' => 12)); // WHERE tree_level >= 12
* $query->filterByTreeLevel(array('max' => 12)); // WHERE tree_level <= 12
* </code>
*
* @param mixed $treeLevel The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
*/
public function filterByTreeLevel($treeLevel = null, $comparison = null)
{
if (is_array($treeLevel)) {
$useMinMax = false;
if (isset($treeLevel['min'])) {
$this->addUsingAlias(CategoryPeer::TREE_LEVEL, $treeLevel['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($treeLevel['max'])) {
$this->addUsingAlias(CategoryPeer::TREE_LEVEL, $treeLevel['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CategoryPeer::TREE_LEVEL, $treeLevel, $comparison);
}
/**
* Filter the query by a related Category object
*
* @param Category|PropelObjectCollection $category The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByCategoryRelatedByCategoryId($category, $comparison = null)
{
if ($category instanceof Category) {
return $this
->addUsingAlias(CategoryPeer::CATEGORY_ID, $category->getId(), $comparison);
} elseif ($category instanceof PropelObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this
->addUsingAlias(CategoryPeer::CATEGORY_ID, $category->toKeyValue('PrimaryKey', 'Id'), $comparison);
} else {
throw new PropelException('filterByCategoryRelatedByCategoryId() only accepts arguments of type Category or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the CategoryRelatedByCategoryId relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return CategoryQuery The current query, for fluid interface
*/
public function joinCategoryRelatedByCategoryId($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('CategoryRelatedByCategoryId');
// 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, 'CategoryRelatedByCategoryId');
}
return $this;
}
/**
* Use the CategoryRelatedByCategoryId relation Category 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 \Trinity\Bundle\MediaBundle\Model\CategoryQuery A secondary query class using the current class as primary query
*/
public function useCategoryRelatedByCategoryIdQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinCategoryRelatedByCategoryId($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'CategoryRelatedByCategoryId', '\Trinity\Bundle\MediaBundle\Model\CategoryQuery');
}
/**
* Filter the query by a related Media object
*
* @param Media|PropelObjectCollection $media the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByMedia($media, $comparison = null)
{
if ($media instanceof Media) {
return $this
->addUsingAlias(CategoryPeer::ID, $media->getCategoryId(), $comparison);
} elseif ($media instanceof PropelObjectCollection) {
return $this
->useMediaQuery()
->filterByPrimaryKeys($media->getPrimaryKeys())
->endUse();
} else {
throw new PropelException('filterByMedia() only accepts arguments of type Media or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the Media relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return CategoryQuery The current query, for fluid interface
*/
public function joinMedia($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('Media');
// 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, 'Media');
}
return $this;
}
/**
* Use the Media relation Media 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 \Trinity\Bundle\MediaBundle\Model\MediaQuery A secondary query class using the current class as primary query
*/
public function useMediaQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinMedia($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'Media', '\Trinity\Bundle\MediaBundle\Model\MediaQuery');
}
/**
* Filter the query by a related Category object
*
* @param Category|PropelObjectCollection $category the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CategoryQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByCategoryRelatedById($category, $comparison = null)
{
if ($category instanceof Category) {
return $this
->addUsingAlias(CategoryPeer::ID, $category->getCategoryId(), $comparison);
} elseif ($category instanceof PropelObjectCollection) {
return $this
->useCategoryRelatedByIdQuery()
->filterByPrimaryKeys($category->getPrimaryKeys())
->endUse();
} else {
throw new PropelException('filterByCategoryRelatedById() only accepts arguments of type Category or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the CategoryRelatedById relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return CategoryQuery The current query, for fluid interface
*/
public function joinCategoryRelatedById($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('CategoryRelatedById');
// 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, 'CategoryRelatedById');
}
return $this;
}
/**
* Use the CategoryRelatedById relation Category 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 \Trinity\Bundle\MediaBundle\Model\CategoryQuery A secondary query class using the current class as primary query
*/
public function useCategoryRelatedByIdQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinCategoryRelatedById($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'CategoryRelatedById', '\Trinity\Bundle\MediaBundle\Model\CategoryQuery');
}
/**
* Exclude object from result
*
* @param Category $category Object to remove from the list of results
*
* @return CategoryQuery The current query, for fluid interface
*/
public function prune($category = null)
{
if ($category) {
$this->addUsingAlias(CategoryPeer::ID, $category->getId(), Criteria::NOT_EQUAL);
}
return $this;
}
// timestampable behavior
/**
* Filter by the latest updated
*
* @param int $nbDays Maximum age of the latest update in days
*
* @return CategoryQuery The current query, for fluid interface
*/
public function recentlyUpdated($nbDays = 7)
{
return $this->addUsingAlias(CategoryPeer::UPDATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by update date desc
*
* @return CategoryQuery The current query, for fluid interface
*/
public function lastUpdatedFirst()
{
return $this->addDescendingOrderByColumn(CategoryPeer::UPDATED_AT);
}
/**
* Order by update date asc
*
* @return CategoryQuery The current query, for fluid interface
*/
public function firstUpdatedFirst()
{
return $this->addAscendingOrderByColumn(CategoryPeer::UPDATED_AT);
}
/**
* Filter by the latest created
*
* @param int $nbDays Maximum age of in days
*
* @return CategoryQuery The current query, for fluid interface
*/
public function recentlyCreated($nbDays = 7)
{
return $this->addUsingAlias(CategoryPeer::CREATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by create date desc
*
* @return CategoryQuery The current query, for fluid interface
*/
public function lastCreatedFirst()
{
return $this->addDescendingOrderByColumn(CategoryPeer::CREATED_AT);
}
/**
* Order by create date asc
*
* @return CategoryQuery The current query, for fluid interface
*/
public function firstCreatedFirst()
{
return $this->addAscendingOrderByColumn(CategoryPeer::CREATED_AT);
}
// sluggable behavior
/**
* Find one object based on its slug
*
* @param string $slug The value to use as filter.
* @param PropelPDO $con The optional connection object
*
* @return Category the result, formatted by the current formatter
*/
public function findOneBySlug($slug, $con = null)
{
return $this->filterBySlug($slug)->findOne($con);
}
// nested_set behavior
/**
* Filter the query to restrict the result to descendants of an object
*
* @param Category $category The object to use for descendant search
*
* @return CategoryQuery The current query, for fluid interface
*/
public function descendantsOf($category)
{
return $this
->addUsingAlias(CategoryPeer::LEFT_COL, $category->getLeftValue(), Criteria::GREATER_THAN)
->addUsingAlias(CategoryPeer::LEFT_COL, $category->getRightValue(), Criteria::LESS_THAN);
}
/**
* Filter the query to restrict the result to the branch of an object.
* Same as descendantsOf(), except that it includes the object passed as parameter in the result
*
* @param Category $category The object to use for branch search
*
* @return CategoryQuery The current query, for fluid interface
*/
public function branchOf($category)
{
return $this
->addUsingAlias(CategoryPeer::LEFT_COL, $category->getLeftValue(), Criteria::GREATER_EQUAL)
->addUsingAlias(CategoryPeer::LEFT_COL, $category->getRightValue(), Criteria::LESS_EQUAL);
}
/**
* Filter the query to restrict the result to children of an object
*
* @param Category $category The object to use for child search
*
* @return CategoryQuery The current query, for fluid interface
*/
public function childrenOf($category)
{
return $this
->descendantsOf($category)
->addUsingAlias(CategoryPeer::LEVEL_COL, $category->getLevel() + 1, Criteria::EQUAL);
}
/**
* Filter the query to restrict the result to siblings of an object.
* The result does not include the object passed as parameter.
*
* @param Category $category The object to use for sibling search
* @param PropelPDO $con Connection to use.
*
* @return CategoryQuery The current query, for fluid interface
*/
public function siblingsOf($category, PropelPDO $con = null)
{
if ($category->isRoot()) {
return $this->
add(CategoryPeer::LEVEL_COL, '1<>1', Criteria::CUSTOM);
} else {
return $this
->childrenOf($category->getParent($con))
->prune($category);
}
}
/**
* Filter the query to restrict the result to ancestors of an object
*
* @param Category $category The object to use for ancestors search
*
* @return CategoryQuery The current query, for fluid interface
*/
public function ancestorsOf($category)
{
return $this
->addUsingAlias(CategoryPeer::LEFT_COL, $category->getLeftValue(), Criteria::LESS_THAN)
->addUsingAlias(CategoryPeer::RIGHT_COL, $category->getRightValue(), Criteria::GREATER_THAN);
}
/**
* Filter the query to restrict the result to roots of an object.
* Same as ancestorsOf(), except that it includes the object passed as parameter in the result
*
* @param Category $category The object to use for roots search
*
* @return CategoryQuery The current query, for fluid interface
*/
public function rootsOf($category)
{
return $this
->addUsingAlias(CategoryPeer::LEFT_COL, $category->getLeftValue(), Criteria::LESS_EQUAL)
->addUsingAlias(CategoryPeer::RIGHT_COL, $category->getRightValue(), Criteria::GREATER_EQUAL);
}
/**
* Order the result by branch, i.e. natural tree order
*
* @param bool $reverse if true, reverses the order
*
* @return CategoryQuery The current query, for fluid interface
*/
public function orderByBranch($reverse = false)
{
if ($reverse) {
return $this
->addDescendingOrderByColumn(CategoryPeer::LEFT_COL);
} else {
return $this
->addAscendingOrderByColumn(CategoryPeer::LEFT_COL);
}
}
/**
* Order the result by level, the closer to the root first
*
* @param bool $reverse if true, reverses the order
*
* @return CategoryQuery The current query, for fluid interface
*/
public function orderByLevel($reverse = false)
{
if ($reverse) {
return $this
->addAscendingOrderByColumn(CategoryPeer::RIGHT_COL);
} else {
return $this
->addDescendingOrderByColumn(CategoryPeer::RIGHT_COL);
}
}
/**
* Returns the root node for the tree
*
* @param PropelPDO $con Connection to use.
*
* @return Category The tree root object
*/
public function findRoot($con = null)
{
return $this
->addUsingAlias(CategoryPeer::LEFT_COL, 1, Criteria::EQUAL)
->findOne($con);
}
/**
* Returns the tree of objects
*
* @param PropelPDO $con Connection to use.
*
* @return mixed the list of results, formatted by the current formatter
*/
public function findTree($con = null)
{
return $this
->orderByBranch()
->find($con);
}
}