class ContentDocumentQuery extends ModelCriteria

Base class that represents a query for the 'content_document' table.

Methods

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

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

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

Returns a new ChildContentDocumentQuery object.

ContentDocument|array|mixed
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

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

Filter the query on the content_id column

filterByFile( string $file = null, string $comparison = null)

Filter the query on the file column

filterByVisible( mixed $visible = null, string $comparison = null)

Filter the query on the visible 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

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

filterByContentDocumentI18n( ContentDocumentI18n|ObjectCollection $contentDocumentI18n, string $comparison = null)

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

joinContentDocumentI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the ContentDocumentI18n relation

useContentDocumentI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the ContentDocumentI18n relation ContentDocumentI18n object

prune( ContentDocument $contentDocument = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the content_document table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildContentDocument 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

lastUpdatedFirst()

Order by update date desc

firstUpdatedFirst()

Order by update date asc

lastCreatedFirst()

Order by create date desc

firstCreatedFirst()

Order by create date asc

joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

ChildContentDocumentQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildContentDocumentQuery
orderByContentId($order = Criteria::ASC)

Order by the content_id column

ChildContentDocumentQuery
orderByFile($order = Criteria::ASC)

Order by the file column

ChildContentDocumentQuery
orderByVisible($order = Criteria::ASC)

Order by the visible column

ChildContentDocumentQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildContentDocumentQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildContentDocumentQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildContentDocumentQuery
groupById()

Group by the id column

ChildContentDocumentQuery
groupByContentId()

Group by the content_id column

ChildContentDocumentQuery
groupByFile()

Group by the file column

ChildContentDocumentQuery
groupByVisible()

Group by the visible column

ChildContentDocumentQuery
groupByPosition()

Group by the position column

ChildContentDocumentQuery
groupByCreatedAt()

Group by the created_at column

ChildContentDocumentQuery
groupByUpdatedAt()

Group by the updated_at column

ChildContentDocumentQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildContentDocumentQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildContentDocumentQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildContentDocumentQuery
leftJoinContent($relationAlias = null)

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

ChildContentDocumentQuery
rightJoinContent($relationAlias = null)

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

ChildContentDocumentQuery
innerJoinContent($relationAlias = null)

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

ChildContentDocumentQuery
leftJoinContentDocumentI18n($relationAlias = null)

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

ChildContentDocumentQuery
rightJoinContentDocumentI18n($relationAlias = null)

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

ChildContentDocumentQuery
innerJoinContentDocumentI18n($relationAlias = null)

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

ChildContentDocument
findOne( ConnectionInterface $con = null)

Return the first ChildContentDocument matching the query

ChildContentDocument
findOneOrCreate( ConnectionInterface $con = null)

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

ChildContentDocument
findOneById( int $id)

Return the first ChildContentDocument filtered by the id column

ChildContentDocument
findOneByContentId( int $content_id)

Return the first ChildContentDocument filtered by the content_id column

ChildContentDocument
findOneByFile( string $file)

Return the first ChildContentDocument filtered by the file column

ChildContentDocument
findOneByVisible( int $visible)

Return the first ChildContentDocument filtered by the visible column

ChildContentDocument
findOneByPosition( int $position)

Return the first ChildContentDocument filtered by the position column

ChildContentDocument
findOneByCreatedAt( string $created_at)

Return the first ChildContentDocument filtered by the created_at column

ChildContentDocument
findOneByUpdatedAt( string $updated_at)

Return the first ChildContentDocument filtered by the updated_at column

array
findById( int $id)

Return ChildContentDocument objects filtered by the id column

array
findByContentId( int $content_id)

Return ChildContentDocument objects filtered by the content_id column

array
findByFile( string $file)

Return ChildContentDocument objects filtered by the file column

array
findByVisible( int $visible)

Return ChildContentDocument objects filtered by the visible column

array
findByPosition( int $position)

Return ChildContentDocument objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildContentDocument objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildContentDocument objects filtered by the updated_at column

Details

at line 83
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\ContentDocument', string $modelAlias = null)

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

at line 96
static ContentDocumentQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildContentDocumentQuery object.

Parameters

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

Return Value

ContentDocumentQuery

at line 126
ContentDocument|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

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

at line 208
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

at line 229
ContentDocumentQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 242
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

at line 266
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

at line 309
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

See also

filterByContent()

at line 347
ContentDocumentQuery filterByFile( string $file = null, string $comparison = null)

Filter the query on the file column

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

Parameters

string $file 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

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 379
ContentDocumentQuery filterByVisible( mixed $visible = null, string $comparison = null)

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

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 420
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

at line 463
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

at line 506
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

at line 537
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

at line 562
ContentDocumentQuery 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

ContentDocumentQuery The current query, for fluid interface

at line 597
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()

at line 612
ContentDocumentQuery filterByContentDocumentI18n( ContentDocumentI18n|ObjectCollection $contentDocumentI18n, string $comparison = null)

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

Parameters

ContentDocumentI18n|ObjectCollection $contentDocumentI18n the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 635
ContentDocumentQuery joinContentDocumentI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the ContentDocumentI18n relation

Parameters

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

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 670
ContentDocumentI18nQuery useContentDocumentI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the ContentDocumentI18n relation ContentDocumentI18n 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

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

See also

useQuery()

at line 684
ContentDocumentQuery prune( ContentDocument $contentDocument = null)

Exclude object from result

Parameters

ContentDocument $contentDocument Object to remove from the list of results

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 699
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the content_document table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

at line 736
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildContentDocument 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.

at line 777
ContentDocumentQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 789
ContentDocumentQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 799
ContentDocumentQuery lastUpdatedFirst()

Order by update date desc

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 809
ContentDocumentQuery firstUpdatedFirst()

Order by update date asc

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 819
ContentDocumentQuery lastCreatedFirst()

Order by create date desc

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 829
ContentDocumentQuery firstCreatedFirst()

Order by create date asc

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 845
ContentDocumentQuery joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 863
ContentDocumentQuery joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

Shortcut for $c->joinI18n($locale)->with()

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

ContentDocumentQuery The current query, for fluid interface

at line 884
ContentDocumentI18nQuery useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

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

See also

useQuery()

at line 73
ChildContentDocumentQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery orderByContentId($order = Criteria::ASC)

Order by the content_id column

Parameters

$order

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery orderByFile($order = Criteria::ASC)

Order by the file column

Parameters

$order

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery orderByVisible($order = Criteria::ASC)

Order by the visible column

Parameters

$order

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery groupById()

Group by the id column

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery groupByContentId()

Group by the content_id column

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery groupByFile()

Group by the file column

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery groupByVisible()

Group by the visible column

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery groupByPosition()

Group by the position column

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery leftJoinContent($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery rightJoinContent($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery innerJoinContent($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery leftJoinContentDocumentI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery rightJoinContentDocumentI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocumentQuery innerJoinContentDocumentI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildContentDocumentQuery

at line 73
ChildContentDocument findOne( ConnectionInterface $con = null)

Return the first ChildContentDocument matching the query

Parameters

ConnectionInterface $con

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneById( int $id)

Return the first ChildContentDocument filtered by the id column

Parameters

int $id

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneByContentId( int $content_id)

Return the first ChildContentDocument filtered by the content_id column

Parameters

int $content_id

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneByFile( string $file)

Return the first ChildContentDocument filtered by the file column

Parameters

string $file

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneByVisible( int $visible)

Return the first ChildContentDocument filtered by the visible column

Parameters

int $visible

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneByPosition( int $position)

Return the first ChildContentDocument filtered by the position column

Parameters

int $position

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneByCreatedAt( string $created_at)

Return the first ChildContentDocument filtered by the created_at column

Parameters

string $created_at

Return Value

ChildContentDocument

at line 73
ChildContentDocument findOneByUpdatedAt( string $updated_at)

Return the first ChildContentDocument filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildContentDocument

at line 73
array findById( int $id)

Return ChildContentDocument objects filtered by the id column

Parameters

int $id

Return Value

array

at line 73
array findByContentId( int $content_id)

Return ChildContentDocument objects filtered by the content_id column

Parameters

int $content_id

Return Value

array

at line 73
array findByFile( string $file)

Return ChildContentDocument objects filtered by the file column

Parameters

string $file

Return Value

array

at line 73
array findByVisible( int $visible)

Return ChildContentDocument objects filtered by the visible column

Parameters

int $visible

Return Value

array

at line 73
array findByPosition( int $position)

Return ChildContentDocument objects filtered by the position column

Parameters

int $position

Return Value

array

at line 73
array findByCreatedAt( string $created_at)

Return ChildContentDocument objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 73
array findByUpdatedAt( string $updated_at)

Return ChildContentDocument objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array