class ProductAssociatedContentQuery extends ProductAssociatedContentQuery

Skeleton subclass for performing query and update operations on the 'productassociatedcontent' table.

You should add additional methods to this class to meet the application requirements. This class will only be generated as long as it does not already exist in the output directory.

Methods

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\ProductAssociatedContent', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\ProductAssociatedContentQuery object.

create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildProductAssociatedContentQuery object.

findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

ObjectCollection|array|mixed
findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

filterByProductId( mixed $productId = null, string $comparison = null)

Filter the query on the product_id column

filterByContentId( mixed $contentId = null, string $comparison = null)

Filter the query on the content_id column

filterByPosition( mixed $position = null, string $comparison = null)

Filter the query on the position column

filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

filterByProduct( Product|ObjectCollection $product, string $comparison = null)

Filter the query by a related \Thelia\Model\Product object

joinProduct( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Product relation

useProductQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Product relation Product object

filterByContent( Content|ObjectCollection $content, string $comparison = null)

Filter the query by a related \Thelia\Model\Content object

joinContent( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Content relation

useContentQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Content relation Content object

prune( ProductAssociatedContent $productAssociatedContent = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the productassociatedcontent table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildProductAssociatedContent or Criteria object OR a primary key value.

recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

recentlyCreated( int $nbDays = 7)

Filter by the latest created

ChildProductAssociatedContentQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildProductAssociatedContentQuery
orderByProductId($order = Criteria::ASC)

Order by the product_id column

ChildProductAssociatedContentQuery
orderByContentId($order = Criteria::ASC)

Order by the content_id column

ChildProductAssociatedContentQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildProductAssociatedContentQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildProductAssociatedContentQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildProductAssociatedContentQuery
groupById()

Group by the id column

ChildProductAssociatedContentQuery
groupByProductId()

Group by the product_id column

ChildProductAssociatedContentQuery
groupByContentId()

Group by the content_id column

ChildProductAssociatedContentQuery
groupByPosition()

Group by the position column

ChildProductAssociatedContentQuery
groupByCreatedAt()

Group by the created_at column

ChildProductAssociatedContentQuery
groupByUpdatedAt()

Group by the updated_at column

ChildProductAssociatedContentQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildProductAssociatedContentQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildProductAssociatedContentQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildProductAssociatedContentQuery
leftJoinProduct($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Product relation

ChildProductAssociatedContentQuery
rightJoinProduct($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Product relation

ChildProductAssociatedContentQuery
innerJoinProduct($relationAlias = null)

Adds a INNER JOIN clause to the query using the Product relation

ChildProductAssociatedContentQuery
leftJoinContent($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Content relation

ChildProductAssociatedContentQuery
rightJoinContent($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Content relation

ChildProductAssociatedContentQuery
innerJoinContent($relationAlias = null)

Adds a INNER JOIN clause to the query using the Content relation

ChildProductAssociatedContent
findOne( ConnectionInterface $con = null)

Return the first ChildProductAssociatedContent matching the query

ChildProductAssociatedContent
findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildProductAssociatedContent matching the query, or a new ChildProductAssociatedContent object populated from the query conditions when no match is found

ChildProductAssociatedContent
findOneById( int $id)

Return the first ChildProductAssociatedContent filtered by the id column

ChildProductAssociatedContent
findOneByProductId( int $product_id)

Return the first ChildProductAssociatedContent filtered by the product_id column

ChildProductAssociatedContent
findOneByContentId( int $content_id)

Return the first ChildProductAssociatedContent filtered by the content_id column

ChildProductAssociatedContent
findOneByPosition( int $position)

Return the first ChildProductAssociatedContent filtered by the position column

ChildProductAssociatedContent
findOneByCreatedAt( string $created_at)

Return the first ChildProductAssociatedContent filtered by the created_at column

ChildProductAssociatedContent
findOneByUpdatedAt( string $updated_at)

Return the first ChildProductAssociatedContent filtered by the updated_at column

array
findById( int $id)

Return ChildProductAssociatedContent objects filtered by the id column

array
findByProductId( int $product_id)

Return ChildProductAssociatedContent objects filtered by the product_id column

array
findByContentId( int $content_id)

Return ChildProductAssociatedContent objects filtered by the content_id column

array
findByPosition( int $position)

Return ChildProductAssociatedContent objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildProductAssociatedContent objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildProductAssociatedContent objects filtered by the updated_at column

Details

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\ProductAssociatedContent', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\ProductAssociatedContentQuery object.

Parameters

string $dbName The database name
string $modelName The phpName of a model, e.g. 'Book'
string $modelAlias The alias for the model in this query, e.g. 'b'

static ProductAssociatedContentQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildProductAssociatedContentQuery object.

Parameters

string $modelAlias The alias of a model in the query
Criteria $criteria Optional Criteria to build the query from

Return Value

ProductAssociatedContentQuery

ProductAssociatedContent|array|mixed findPk( mixed $key, ConnectionInterface $con = null)

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.

$obj = $c->findPk(12, $con);

Parameters

mixed $key Primary key to use for the query
ConnectionInterface $con an optional connection object

Return Value

ProductAssociatedContent|array|mixed the result, formatted by the current formatter

ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

ProductAssociatedContentQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

Parameters

array $keys The list of primary key to use for the query

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

Example usage: $query->filterById(1234); // WHERE id = 1234 $query->filterById(array(12, 34)); // WHERE id IN (12, 34) $query->filterById(array('min' => 12)); // WHERE id > 12

Parameters

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.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery filterByProductId( mixed $productId = null, string $comparison = null)

Filter the query on the product_id column

Example usage: $query->filterByProductId(1234); // WHERE productid = 1234 $query->filterByProductId(array(12, 34)); // WHERE productid IN (12, 34) $query->filterByProductId(array('min' => 12)); // WHERE product_id > 12

Parameters

mixed $productId 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.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

See also

filterByProduct()

ProductAssociatedContentQuery filterByContentId( mixed $contentId = null, string $comparison = null)

Filter the query on the content_id column

Example usage: $query->filterByContentId(1234); // WHERE contentid = 1234 $query->filterByContentId(array(12, 34)); // WHERE contentid IN (12, 34) $query->filterByContentId(array('min' => 12)); // WHERE content_id > 12

Parameters

mixed $contentId 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.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

See also

filterByContent()

ProductAssociatedContentQuery filterByPosition( mixed $position = null, string $comparison = null)

Filter the query on the position column

Example usage: $query->filterByPosition(1234); // WHERE position = 1234 $query->filterByPosition(array(12, 34)); // WHERE position IN (12, 34) $query->filterByPosition(array('min' => 12)); // WHERE position > 12

Parameters

mixed $position 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.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

Example usage: $query->filterByCreatedAt('2011-03-14'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt('now'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'

Parameters

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.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

Example usage: $query->filterByUpdatedAt('2011-03-14'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt('now'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'

Parameters

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.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery filterByProduct( Product|ObjectCollection $product, string $comparison = null)

Filter the query by a related \Thelia\Model\Product object

Parameters

Product|ObjectCollection $product The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery joinProduct( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Product relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductQuery useProductQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Product relation Product object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

ProductQuery A secondary query class using the current class as primary query

See also

useQuery()

ProductAssociatedContentQuery filterByContent( Content|ObjectCollection $content, string $comparison = null)

Filter the query by a related \Thelia\Model\Content object

Parameters

Content|ObjectCollection $content The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery joinContent( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Content relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ContentQuery useContentQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Content relation Content object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

ContentQuery A secondary query class using the current class as primary query

See also

useQuery()

ProductAssociatedContentQuery prune( ProductAssociatedContent $productAssociatedContent = null)

Exclude object from result

Parameters

ProductAssociatedContent $productAssociatedContent Object to remove from the list of results

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the productassociatedcontent table.

Parameters

ConnectionInterface $con the connection to use

Return Value

int The number of affected rows (if supported by underlying database driver).

int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildProductAssociatedContent or Criteria object OR a primary key value.

Parameters

ConnectionInterface $con

Return Value

int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows if supported by native driver or if emulated using Propel.

Exceptions

PropelException Any exceptions caught during processing will be rethrown wrapped into a PropelException.

ProductAssociatedContentQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery lastUpdatedFirst()

Order by update date desc

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery firstUpdatedFirst()

Order by update date asc

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery lastCreatedFirst()

Order by create date desc

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ProductAssociatedContentQuery firstCreatedFirst()

Order by create date asc

Return Value

ProductAssociatedContentQuery The current query, for fluid interface

ChildProductAssociatedContentQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery orderByProductId($order = Criteria::ASC)

Order by the product_id column

Parameters

$order

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery orderByContentId($order = Criteria::ASC)

Order by the content_id column

Parameters

$order

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery groupById()

Group by the id column

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery groupByProductId()

Group by the product_id column

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery groupByContentId()

Group by the content_id column

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery groupByPosition()

Group by the position column

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery leftJoinProduct($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Product relation

Parameters

$relationAlias

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery rightJoinProduct($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Product relation

Parameters

$relationAlias

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery innerJoinProduct($relationAlias = null)

Adds a INNER JOIN clause to the query using the Product relation

Parameters

$relationAlias

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery leftJoinContent($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Content relation

Parameters

$relationAlias

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery rightJoinContent($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Content relation

Parameters

$relationAlias

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContentQuery innerJoinContent($relationAlias = null)

Adds a INNER JOIN clause to the query using the Content relation

Parameters

$relationAlias

Return Value

ChildProductAssociatedContentQuery

ChildProductAssociatedContent findOne( ConnectionInterface $con = null)

Return the first ChildProductAssociatedContent matching the query

Parameters

ConnectionInterface $con

Return Value

ChildProductAssociatedContent

ChildProductAssociatedContent findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildProductAssociatedContent matching the query, or a new ChildProductAssociatedContent object populated from the query conditions when no match is found

Parameters

ConnectionInterface $con

Return Value

ChildProductAssociatedContent

ChildProductAssociatedContent findOneById( int $id)

Return the first ChildProductAssociatedContent filtered by the id column

Parameters

int $id

Return Value

ChildProductAssociatedContent

ChildProductAssociatedContent findOneByProductId( int $product_id)

Return the first ChildProductAssociatedContent filtered by the product_id column

Parameters

int $product_id

Return Value

ChildProductAssociatedContent

ChildProductAssociatedContent findOneByContentId( int $content_id)

Return the first ChildProductAssociatedContent filtered by the content_id column

Parameters

int $content_id

Return Value

ChildProductAssociatedContent

ChildProductAssociatedContent findOneByPosition( int $position)

Return the first ChildProductAssociatedContent filtered by the position column

Parameters

int $position

Return Value

ChildProductAssociatedContent

ChildProductAssociatedContent findOneByCreatedAt( string $created_at)

Return the first ChildProductAssociatedContent filtered by the created_at column

Parameters

string $created_at

Return Value

ChildProductAssociatedContent

ChildProductAssociatedContent findOneByUpdatedAt( string $updated_at)

Return the first ChildProductAssociatedContent filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildProductAssociatedContent

array findById( int $id)

Return ChildProductAssociatedContent objects filtered by the id column

Parameters

int $id

Return Value

array

array findByProductId( int $product_id)

Return ChildProductAssociatedContent objects filtered by the product_id column

Parameters

int $product_id

Return Value

array

array findByContentId( int $content_id)

Return ChildProductAssociatedContent objects filtered by the content_id column

Parameters

int $content_id

Return Value

array

array findByPosition( int $position)

Return ChildProductAssociatedContent objects filtered by the position column

Parameters

int $position

Return Value

array

array findByCreatedAt( string $created_at)

Return ChildProductAssociatedContent objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

array findByUpdatedAt( string $updated_at)

Return ChildProductAssociatedContent objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array