Methods

__construct()

__construct(string $dbName, string $modelName, string $modelAlias)

Initializes internal state of \Thelia\Model\Base\ContentVersionQuery 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'

create()

create(string $modelAlias, \Propel\Runtime\ActiveQuery\Criteria $criteria) : \Thelia\Model\ContentVersionQuery

Returns a new ChildContentVersionQuery object.

Parameters

string $modelAlias

The alias of a model in the query

\Propel\Runtime\ActiveQuery\Criteria $criteria

Optional Criteria to build the query from

Returns

\Thelia\Model\ContentVersionQuery

findPk()

findPk( $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\ContentVersion|array|mixed

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(array(12, 34), $con);

Parameters

$key
\Propel\Runtime\Connection\ConnectionInterface $con

an optional connection object

Returns

\Thelia\Model\ContentVersion|array|mixed —

the result, formatted by the current formatter

findPks()

findPks(array $keys, \Propel\Runtime\Connection\ConnectionInterface $con) : \Propel\Runtime\Collection\ObjectCollection|array|mixed

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

Parameters

array $keys

Primary keys to use for the query

\Propel\Runtime\Connection\ConnectionInterface $con

an optional connection object

Returns

\Propel\Runtime\Collection\ObjectCollection|array|mixed —

the list of results, formatted by the current formatter

filterByPrimaryKey()

filterByPrimaryKey(mixed $key) : \Thelia\Model\ContentVersionQuery

Filter the query by primary key

Parameters

mixed $key

Primary key to use for the query

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByPrimaryKeys()

filterByPrimaryKeys(array $keys) : \Thelia\Model\ContentVersionQuery

Filter the query by a list of primary keys

Parameters

array $keys

The list of primary key to use for the query

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterById()

filterById(mixed $id, string $comparison) : \Thelia\Model\ContentVersionQuery

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

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByVisible()

filterByVisible(mixed $visible, string $comparison) : \Thelia\Model\ContentVersionQuery

Filter the query on the visible column

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

Parameters

mixed $visible

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

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByPosition()

filterByPosition(mixed $position, string $comparison) : \Thelia\Model\ContentVersionQuery

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

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByCreatedAt()

filterByCreatedAt(mixed $createdAt, string $comparison) : \Thelia\Model\ContentVersionQuery

Filter the query on the created_at column

Example usage: $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'

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

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByUpdatedAt()

filterByUpdatedAt(mixed $updatedAt, string $comparison) : \Thelia\Model\ContentVersionQuery

Filter the query on the updated_at column

Example usage: $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'

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

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByVersion()

filterByVersion(mixed $version, string $comparison) : \Thelia\Model\ContentVersionQuery

Filter the query on the version column

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

Parameters

mixed $version

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

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByVersionCreatedAt()

filterByVersionCreatedAt(mixed $versionCreatedAt, string $comparison) : \Thelia\Model\ContentVersionQuery

Filter the query on the version_created_at column

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

Parameters

mixed $versionCreatedAt

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

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByVersionCreatedBy()

filterByVersionCreatedBy(string $versionCreatedBy, string $comparison) : \Thelia\Model\ContentVersionQuery

Filter the query on the version_created_by column

Example usage: $query->filterByVersionCreatedBy('fooValue'); // WHERE version_created_by = 'fooValue' $query->filterByVersionCreatedBy('%fooValue%'); // WHERE version_created_by LIKE '%fooValue%'

Parameters

string $versionCreatedBy

The value to use as filter. Accepts wildcards (* and % trigger a LIKE)

string $comparison

Operator to use for the column comparison, defaults to Criteria::EQUAL

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

filterByContent()

filterByContent(\Thelia\Model\Content|\Propel\Runtime\Collection\ObjectCollection $content, string $comparison) : \Thelia\Model\ContentVersionQuery

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

Parameters

\Thelia\Model\Content|\Propel\Runtime\Collection\ObjectCollection $content

The related object(s) to use as filter

string $comparison

Operator to use for the column comparison, defaults to Criteria::EQUAL

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

joinContent()

joinContent(string $relationAlias, string $joinType) : \Thelia\Model\ContentVersionQuery

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'

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

useContentQuery()

useContentQuery(string $relationAlias, string $joinType) : \Thelia\Model\ContentQuery

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'

Returns

\Thelia\Model\ContentQuery

A secondary query class using the current class as primary query

prune()

prune(\Thelia\Model\ContentVersion $contentVersion) : \Thelia\Model\ContentVersionQuery

Exclude object from result

Parameters

\Thelia\Model\ContentVersion $contentVersion

Object to remove from the list of results

Returns

\Thelia\Model\ContentVersionQuery

The current query, for fluid interface

doDeleteAll()

doDeleteAll(\Propel\Runtime\Connection\ConnectionInterface $con) : int

Deletes all rows from the content_version table.

Parameters

\Propel\Runtime\Connection\ConnectionInterface $con

the connection to use

Returns

int —

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

delete()

delete(\Propel\Runtime\Connection\ConnectionInterface $con) : int

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

Parameters

\Propel\Runtime\Connection\ConnectionInterface $con

the connection to use

Throws

\Propel\Runtime\Exception\PropelException

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

Returns

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.

orderById()

orderById($order =) : \Thelia\Model\ContentVersionQuery

Order by the id column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

orderByVisible()

orderByVisible($order =) : \Thelia\Model\ContentVersionQuery

Order by the visible column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

orderByPosition()

orderByPosition($order =) : \Thelia\Model\ContentVersionQuery

Order by the position column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

orderByCreatedAt()

orderByCreatedAt($order =) : \Thelia\Model\ContentVersionQuery

Order by the created_at column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

orderByUpdatedAt()

orderByUpdatedAt($order =) : \Thelia\Model\ContentVersionQuery

Order by the updated_at column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

orderByVersion()

orderByVersion($order =) : \Thelia\Model\ContentVersionQuery

Order by the version column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

orderByVersionCreatedAt()

orderByVersionCreatedAt($order =) : \Thelia\Model\ContentVersionQuery

Order by the version_created_at column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

orderByVersionCreatedBy()

orderByVersionCreatedBy($order =) : \Thelia\Model\ContentVersionQuery

Order by the version_created_by column

Parameters

$order =

Returns

\Thelia\Model\ContentVersionQuery

groupById()

groupById() : \Thelia\Model\ContentVersionQuery

Group by the id column

Returns

\Thelia\Model\ContentVersionQuery

groupByVisible()

groupByVisible() : \Thelia\Model\ContentVersionQuery

Group by the visible column

Returns

\Thelia\Model\ContentVersionQuery

groupByPosition()

groupByPosition() : \Thelia\Model\ContentVersionQuery

Group by the position column

Returns

\Thelia\Model\ContentVersionQuery

groupByCreatedAt()

groupByCreatedAt() : \Thelia\Model\ContentVersionQuery

Group by the created_at column

Returns

\Thelia\Model\ContentVersionQuery

groupByUpdatedAt()

groupByUpdatedAt() : \Thelia\Model\ContentVersionQuery

Group by the updated_at column

Returns

\Thelia\Model\ContentVersionQuery

groupByVersion()

groupByVersion() : \Thelia\Model\ContentVersionQuery

Group by the version column

Returns

\Thelia\Model\ContentVersionQuery

groupByVersionCreatedAt()

groupByVersionCreatedAt() : \Thelia\Model\ContentVersionQuery

Group by the version_created_at column

Returns

\Thelia\Model\ContentVersionQuery

groupByVersionCreatedBy()

groupByVersionCreatedBy() : \Thelia\Model\ContentVersionQuery

Group by the version_created_by column

Returns

\Thelia\Model\ContentVersionQuery

leftJoin()

leftJoin(mixed $relation) : \Thelia\Model\ContentVersionQuery

Adds a LEFT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\ContentVersionQuery

rightJoin()

rightJoin(mixed $relation) : \Thelia\Model\ContentVersionQuery

Adds a RIGHT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\ContentVersionQuery

innerJoin()

innerJoin(mixed $relation) : \Thelia\Model\ContentVersionQuery

Adds a INNER JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\ContentVersionQuery

leftJoinContent()

leftJoinContent($relationAlias =) : \Thelia\Model\ContentVersionQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\ContentVersionQuery

rightJoinContent()

rightJoinContent($relationAlias =) : \Thelia\Model\ContentVersionQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\ContentVersionQuery

innerJoinContent()

innerJoinContent($relationAlias =) : \Thelia\Model\ContentVersionQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\ContentVersionQuery

findOne()

findOne(ConnectionInterface $con) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion matching the query

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\ContentVersion

findOneOrCreate()

findOneOrCreate(ConnectionInterface $con) : \Thelia\Model\ContentVersion

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

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\ContentVersion

findOneById()

findOneById(int $id) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the id column

Parameters

int $id

Returns

\Thelia\Model\ContentVersion

findOneByVisible()

findOneByVisible(int $visible) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the visible column

Parameters

int $visible

Returns

\Thelia\Model\ContentVersion

findOneByPosition()

findOneByPosition(int $position) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the position column

Parameters

int $position

Returns

\Thelia\Model\ContentVersion

findOneByCreatedAt()

findOneByCreatedAt(string $created_at) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the created_at column

Parameters

string $created_at

Returns

\Thelia\Model\ContentVersion

findOneByUpdatedAt()

findOneByUpdatedAt(string $updated_at) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the updated_at column

Parameters

string $updated_at

Returns

\Thelia\Model\ContentVersion

findOneByVersion()

findOneByVersion(int $version) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the version column

Parameters

int $version

Returns

\Thelia\Model\ContentVersion

findOneByVersionCreatedAt()

findOneByVersionCreatedAt(string $version_created_at) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the version_created_at column

Parameters

string $version_created_at

Returns

\Thelia\Model\ContentVersion

findOneByVersionCreatedBy()

findOneByVersionCreatedBy(string $version_created_by) : \Thelia\Model\ContentVersion

Return the first ChildContentVersion filtered by the version_created_by column

Parameters

string $version_created_by

Returns

\Thelia\Model\ContentVersion

findById()

findById(int $id) : array

Return ChildContentVersion objects filtered by the id column

Parameters

int $id

Returns

array

findByVisible()

findByVisible(int $visible) : array

Return ChildContentVersion objects filtered by the visible column

Parameters

int $visible

Returns

array

findByPosition()

findByPosition(int $position) : array

Return ChildContentVersion objects filtered by the position column

Parameters

int $position

Returns

array

findByCreatedAt()

findByCreatedAt(string $created_at) : array

Return ChildContentVersion objects filtered by the created_at column

Parameters

string $created_at

Returns

array

findByUpdatedAt()

findByUpdatedAt(string $updated_at) : array

Return ChildContentVersion objects filtered by the updated_at column

Parameters

string $updated_at

Returns

array

findByVersion()

findByVersion(int $version) : array

Return ChildContentVersion objects filtered by the version column

Parameters

int $version

Returns

array

findByVersionCreatedAt()

findByVersionCreatedAt(string $version_created_at) : array

Return ChildContentVersion objects filtered by the version_created_at column

Parameters

string $version_created_at

Returns

array

findByVersionCreatedBy()

findByVersionCreatedBy(string $version_created_by) : array

Return ChildContentVersion objects filtered by the version_created_by column

Parameters

string $version_created_by

Returns

array

findPkSimple()

findPkSimple(mixed $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\ContentVersion

Find object by primary key using raw SQL to go fast.

Bypass doSelect() and the object formatter by using generated code.

Parameters

mixed $key

Primary key to use for the query

\Propel\Runtime\Connection\ConnectionInterface $con

A connection object

Returns

\Thelia\Model\ContentVersion

A model object, or null if the key is not found

findPkComplex()

findPkComplex(mixed $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\ContentVersion|array|mixed

Find object by primary key.

Parameters

mixed $key

Primary key to use for the query

\Propel\Runtime\Connection\ConnectionInterface $con

A connection object

Returns

\Thelia\Model\ContentVersion|array|mixed —

the result, formatted by the current formatter