ContentImageQuery
class ContentImageQuery extends ContentImageQuery
Skeleton subclass for performing query and update operations on the 'content_image' 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
Initializes internal state of \Thelia\Model\Base\ContentImageQuery object.
Returns a new ChildContentImageQuery object.
Find object by primary key.
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Filter the query by primary key
Filter the query by a list of primary keys
Filter the query on the id column
Filter the query on the content_id column
Filter the query on the file column
Filter the query on the visible column
Filter the query on the position column
Filter the query on the created_at column
Filter the query on the updated_at column
Filter the query by a related \Thelia\Model\Content object
Adds a JOIN clause to the query using the Content relation
Use the Content relation Content object
Filter the query by a related \Thelia\Model\ContentImageI18n object
Adds a JOIN clause to the query using the ContentImageI18n relation
Use the ContentImageI18n relation ContentImageI18n object
Deletes all rows from the content_image table.
Performs a DELETE on the database, given a ChildContentImage or Criteria object OR a primary key value.
Filter by the latest updated
Filter by the latest created
Adds a JOIN clause to the query using the i18n relation
Adds a JOIN clause to the query and hydrates the related I18n object.
Use the I18n relation query object
Order by the id column
Order by the content_id column
Order by the file column
Order by the visible column
Order by the position column
Order by the created_at column
Order by the updated_at column
Adds a LEFT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Adds a INNER JOIN clause to the query
Adds a LEFT JOIN clause to the query using the Content relation
Adds a RIGHT JOIN clause to the query using the Content relation
Adds a INNER JOIN clause to the query using the Content relation
Adds a LEFT JOIN clause to the query using the ContentImageI18n relation
Adds a RIGHT JOIN clause to the query using the ContentImageI18n relation
Adds a INNER JOIN clause to the query using the ContentImageI18n relation
Return the first ChildContentImage matching the query
Return the first ChildContentImage matching the query, or a new ChildContentImage object populated from the query conditions when no match is found
Return the first ChildContentImage filtered by the id column
Return the first ChildContentImage filtered by the content_id column
Return the first ChildContentImage filtered by the file column
Return the first ChildContentImage filtered by the visible column
Return the first ChildContentImage filtered by the position column
Return the first ChildContentImage filtered by the created_at column
Return the first ChildContentImage filtered by the updated_at column
Return ChildContentImage objects filtered by the id column
Return ChildContentImage objects filtered by the content_id column
Return ChildContentImage objects filtered by the file column
Return ChildContentImage objects filtered by the visible column
Return ChildContentImage objects filtered by the position column
Return ChildContentImage objects filtered by the created_at column
Return ChildContentImage objects filtered by the updated_at column
Details
in
ContentImageQuery at line 83
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\ContentImage',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\ContentImageQuery object.
in
ContentImageQuery at line 96
static
ContentImageQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildContentImageQuery object.
in
ContentImageQuery at line 126
ContentImage|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);
in
ContentImageQuery 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);
in
ContentImageQuery at line 229
ContentImageQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
in
ContentImageQuery at line 242
ContentImageQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
in
ContentImageQuery at line 266
ContentImageQuery
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
in
ContentImageQuery at line 309
ContentImageQuery
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
in
ContentImageQuery at line 347
ContentImageQuery
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%'
in
ContentImageQuery at line 379
ContentImageQuery
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
in
ContentImageQuery at line 420
ContentImageQuery
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
in
ContentImageQuery at line 463
ContentImageQuery
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'
in
ContentImageQuery at line 506
ContentImageQuery
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'
in
ContentImageQuery at line 537
ContentImageQuery
filterByContent(
Content|ObjectCollection $content,
string $comparison = null)
Filter the query by a related \Thelia\Model\Content object
in
ContentImageQuery at line 562
ContentImageQuery
joinContent(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Content relation
in
ContentImageQuery at line 597
ContentQuery
useContentQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Content relation Content object
in
ContentImageQuery at line 612
ContentImageQuery
filterByContentImageI18n(
ContentImageI18n|ObjectCollection $contentImageI18n,
string $comparison = null)
Filter the query by a related \Thelia\Model\ContentImageI18n object
in
ContentImageQuery at line 635
ContentImageQuery
joinContentImageI18n(
string $relationAlias = null,
string $joinType = 'LEFT JOIN')
Adds a JOIN clause to the query using the ContentImageI18n relation
in
ContentImageQuery at line 670
ContentImageI18nQuery
useContentImageI18nQuery(
string $relationAlias = null,
string $joinType = 'LEFT JOIN')
Use the ContentImageI18n relation ContentImageI18n object
in
ContentImageQuery at line 684
ContentImageQuery
prune(
ContentImage $contentImage = null)
Exclude object from result
in
ContentImageQuery at line 699
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the content_image table.
in
ContentImageQuery at line 736
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildContentImage or Criteria object OR a primary key value.
in
ContentImageQuery at line 777
ContentImageQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
in
ContentImageQuery at line 789
ContentImageQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
in
ContentImageQuery at line 799
ContentImageQuery
lastUpdatedFirst()
Order by update date desc
in
ContentImageQuery at line 809
ContentImageQuery
firstUpdatedFirst()
Order by update date asc
in
ContentImageQuery at line 819
ContentImageQuery
lastCreatedFirst()
Order by create date desc
in
ContentImageQuery at line 829
ContentImageQuery
firstCreatedFirst()
Order by create date asc
in
ContentImageQuery at line 845
ContentImageQuery
joinI18n(
string $locale = 'en_US',
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the i18n relation
in
ContentImageQuery at line 863
ContentImageQuery
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()
in
ContentImageQuery at line 884
ContentImageI18nQuery
useI18nQuery(
string $locale = 'en_US',
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the I18n relation query object
in
ContentImageQuery at line 73
ChildContentImageQuery
orderById($order = Criteria::ASC)
Order by the id column
in
ContentImageQuery at line 73
ChildContentImageQuery
orderByContentId($order = Criteria::ASC)
Order by the content_id column
in
ContentImageQuery at line 73
ChildContentImageQuery
orderByFile($order = Criteria::ASC)
Order by the file column
in
ContentImageQuery at line 73
ChildContentImageQuery
orderByVisible($order = Criteria::ASC)
Order by the visible column
in
ContentImageQuery at line 73
ChildContentImageQuery
orderByPosition($order = Criteria::ASC)
Order by the position column
in
ContentImageQuery at line 73
ChildContentImageQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
in
ContentImageQuery at line 73
ChildContentImageQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
in
ContentImageQuery at line 73
ChildContentImageQuery
groupById()
Group by the id column
in
ContentImageQuery at line 73
ChildContentImageQuery
groupByContentId()
Group by the content_id column
in
ContentImageQuery at line 73
ChildContentImageQuery
groupByFile()
Group by the file column
in
ContentImageQuery at line 73
ChildContentImageQuery
groupByVisible()
Group by the visible column
in
ContentImageQuery at line 73
ChildContentImageQuery
groupByPosition()
Group by the position column
in
ContentImageQuery at line 73
ChildContentImageQuery
groupByCreatedAt()
Group by the created_at column
in
ContentImageQuery at line 73
ChildContentImageQuery
groupByUpdatedAt()
Group by the updated_at column
in
ContentImageQuery at line 73
ChildContentImageQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
in
ContentImageQuery at line 73
ChildContentImageQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
in
ContentImageQuery at line 73
ChildContentImageQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
in
ContentImageQuery at line 73
ChildContentImageQuery
leftJoinContent($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Content relation
in
ContentImageQuery at line 73
ChildContentImageQuery
rightJoinContent($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Content relation
in
ContentImageQuery at line 73
ChildContentImageQuery
innerJoinContent($relationAlias = null)
Adds a INNER JOIN clause to the query using the Content relation
in
ContentImageQuery at line 73
ChildContentImageQuery
leftJoinContentImageI18n($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ContentImageI18n relation
in
ContentImageQuery at line 73
ChildContentImageQuery
rightJoinContentImageI18n($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ContentImageI18n relation
in
ContentImageQuery at line 73
ChildContentImageQuery
innerJoinContentImageI18n($relationAlias = null)
Adds a INNER JOIN clause to the query using the ContentImageI18n relation
in
ContentImageQuery at line 73
ChildContentImage
findOne(
ConnectionInterface $con = null)
Return the first ChildContentImage matching the query
in
ContentImageQuery at line 73
ChildContentImage
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildContentImage matching the query, or a new ChildContentImage object populated from the query conditions when no match is found
in
ContentImageQuery at line 73
ChildContentImage
findOneById(
int $id)
Return the first ChildContentImage filtered by the id column
in
ContentImageQuery at line 73
ChildContentImage
findOneByContentId(
int $content_id)
Return the first ChildContentImage filtered by the content_id column
in
ContentImageQuery at line 73
ChildContentImage
findOneByFile(
string $file)
Return the first ChildContentImage filtered by the file column
in
ContentImageQuery at line 73
ChildContentImage
findOneByVisible(
int $visible)
Return the first ChildContentImage filtered by the visible column
in
ContentImageQuery at line 73
ChildContentImage
findOneByPosition(
int $position)
Return the first ChildContentImage filtered by the position column
in
ContentImageQuery at line 73
ChildContentImage
findOneByCreatedAt(
string $created_at)
Return the first ChildContentImage filtered by the created_at column
in
ContentImageQuery at line 73
ChildContentImage
findOneByUpdatedAt(
string $updated_at)
Return the first ChildContentImage filtered by the updated_at column
in
ContentImageQuery at line 73
array
findById(
int $id)
Return ChildContentImage objects filtered by the id column
in
ContentImageQuery at line 73
array
findByContentId(
int $content_id)
Return ChildContentImage objects filtered by the content_id column
in
ContentImageQuery at line 73
array
findByFile(
string $file)
Return ChildContentImage objects filtered by the file column
in
ContentImageQuery at line 73
array
findByVisible(
int $visible)
Return ChildContentImage objects filtered by the visible column
in
ContentImageQuery at line 73
array
findByPosition(
int $position)
Return ChildContentImage objects filtered by the position column
in
ContentImageQuery at line 73
array
findByCreatedAt(
string $created_at)
Return ChildContentImage objects filtered by the created_at column
in
ContentImageQuery at line 73
array
findByUpdatedAt(
string $updated_at)
Return ChildContentImage objects filtered by the updated_at column