Methods summary
public
|
#
__construct( string $dbName = 'thelia', string $modelName = 'Thelia\\Model\\Image', string $modelAlias = null )
Initializes internal state of BaseImageQuery object.
Initializes internal state of BaseImageQuery object.
Parameters
- $dbName
string $dbName The dabase name
- $modelName
string $modelName The phpName of a model, e.g. 'Book'
- $modelAlias
string $modelAlias The alias for the model in this query, e.g. 'b'
|
public static
Thelia\Model\ImageQuery
|
#
create( string $modelAlias = null, Thelia\Model\ImageQuery|Criteria $criteria = null )
Returns a new ImageQuery object.
Returns a new ImageQuery object.
Parameters
- $modelAlias
string $modelAlias The alias of a model in the query
- $criteria
Thelia\Model\ImageQuery|Criteria $criteria Optional Criteria to build the query from
Returns
|
public
Thelia\Model\Image|Thelia\Model\Image[]|mixed
|
#
findPk( mixed $key, PropelPDO $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.
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
- $key
mixed $key Primary key to use for the query
- $con
PropelPDO $con an optional connection object
Returns
|
protected
Thelia\Model\Image
|
#
findPkSimple( mixed $key, PropelPDO $con )
Find object by primary key using raw SQL to go fast. Bypass doSelect() and
the object formatter by using generated code.
Find object by primary key using raw SQL to go fast. Bypass doSelect() and
the object formatter by using generated code.
Parameters
- $key
mixed $key Primary key to use for the query
- $con
PropelPDO $con A connection object
Returns
Throws
PropelException
|
protected
Thelia\Model\Image|Thelia\Model\Image[]|mixed
|
#
findPkComplex( mixed $key, PropelPDO $con )
Find object by primary key.
Find object by primary key.
Parameters
- $key
mixed $key Primary key to use for the query
- $con
PropelPDO $con A connection object
Returns
|
public
PropelObjectCollection|Thelia\Model\Image[]|mixed
|
#
findPks( array $keys, PropelPDO $con = null )
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Parameters
- $keys
array $keys Primary keys to use for the query
- $con
PropelPDO $con an optional connection object
Returns
PropelObjectCollection|Thelia\Model\Image[]|mixedthe list of results, formatted by the current formatter
|
public
Thelia\Model\ImageQuery
|
#
filterByPrimaryKey( mixed $key )
Filter the query by primary key
Filter the query by primary key
Parameters
- $key
mixed $key Primary key to use for the query
Returns
|
public
Thelia\Model\ImageQuery
|
#
filterByPrimaryKeys( array $keys )
Filter the query by a list of primary keys
Filter the query by a list of primary keys
Parameters
- $keys
array $keys The list of primary key to use for the query
Returns
|
public
Thelia\Model\ImageQuery
|
#
filterById( mixed $id = null, string $comparison = null )
Filter the query on the id column
Filter the query on the id column
Example usage:
$query->filterById(1234);
$query->filterById(array(12, 34));
$query->filterById(array('min' => 12));
Parameters
- $id
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\ImageQuery
|
#
filterByProductId( mixed $productId = null, string $comparison = null )
Filter the query on the product_id column
Filter the query on the product_id column
Example usage:
$query->filterByProductId(1234);
$query->filterByProductId(array(12, 34));
$query->filterByProductId(array('min' => 12));
Parameters
- $productId
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
See
|
public
Thelia\Model\ImageQuery
|
#
filterByCategoryId( mixed $categoryId = null, string $comparison = null )
Filter the query on the category_id column
Filter the query on the category_id column
Example usage:
$query->filterByCategoryId(1234);
$query->filterByCategoryId(array(12, 34));
$query->filterByCategoryId(array('min' => 12));
Parameters
- $categoryId
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
See
|
public
Thelia\Model\ImageQuery
|
#
filterByFolderId( mixed $folderId = null, string $comparison = null )
Filter the query on the folder_id column
Filter the query on the folder_id column
Example usage:
$query->filterByFolderId(1234);
$query->filterByFolderId(array(12, 34));
$query->filterByFolderId(array('min' => 12));
Parameters
- $folderId
mixed $folderId 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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
See
|
public
Thelia\Model\ImageQuery
|
#
filterByContentId( mixed $contentId = null, string $comparison = null )
Filter the query on the content_id column
Filter the query on the content_id column
Example usage:
$query->filterByContentId(1234);
$query->filterByContentId(array(12, 34));
$query->filterByContentId(array('min' => 12));
Parameters
- $contentId
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
See
|
public
Thelia\Model\ImageQuery
|
#
filterByFile( string $file = null, string $comparison = null )
Filter the query on the file column
Filter the query on the file column
Example usage:
$query->filterByFile('fooValue');
$query->filterByFile('%fooValue%');
Parameters
- $file
string $file The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\ImageQuery
|
#
filterByPosition( mixed $position = null, string $comparison = null )
Filter the query on the position column
Filter the query on the position column
Example usage:
$query->filterByPosition(1234);
$query->filterByPosition(array(12, 34));
$query->filterByPosition(array('min' => 12));
Parameters
- $position
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\ImageQuery
|
#
filterByCreatedAt( mixed $createdAt = null, string $comparison = null )
Filter the query on the created_at column
Filter the query on the created_at column
Example usage:
$query->filterByCreatedAt('2011-03-14');
$query->filterByCreatedAt('now');
$query->filterByCreatedAt(array('max' => 'yesterday'));
Parameters
- $createdAt
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\ImageQuery
|
#
filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null )
Filter the query on the updated_at column
Filter the query on the updated_at column
Example usage:
$query->filterByUpdatedAt('2011-03-14');
$query->filterByUpdatedAt('now');
$query->filterByUpdatedAt(array('max' => 'yesterday'));
Parameters
- $updatedAt
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\ImageQuery
|
#
filterByProduct( Thelia\Model\Product|PropelObjectCollection $product, string $comparison = null )
Filter the query by a related Product object
Filter the query by a related Product object
Parameters
- $product
Thelia\Model\Product|PropelObjectCollection $product The related object(s) to use as filter
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
Throws
PropelException - if the provided filter is invalid.
|
public
Thelia\Model\ImageQuery
|
#
joinProduct( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Adds a JOIN clause to the query using the Product relation
Adds a JOIN clause to the query using the Product relation
Parameters
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
|
public
Thelia\Model\ProductQuery
|
#
useProductQuery( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Use the Product relation Product object
Use the Product relation Product object
Parameters
- $relationAlias
string $relationAlias optional alias for the relation, to be used as main alias in the
secondary query
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
See
useQuery()
|
public
Thelia\Model\ImageQuery
|
#
filterByCategory( Thelia\Model\Category|PropelObjectCollection $category, string $comparison = null )
Filter the query by a related Category object
Filter the query by a related Category object
Parameters
- $category
Thelia\Model\Category|PropelObjectCollection $category The related object(s) to use as filter
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
Throws
PropelException - if the provided filter is invalid.
|
public
Thelia\Model\ImageQuery
|
#
joinCategory( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Adds a JOIN clause to the query using the Category relation
Adds a JOIN clause to the query using the Category relation
Parameters
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
|
public
Thelia\Model\CategoryQuery
|
#
useCategoryQuery( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Use the Category relation Category object
Use the Category relation Category object
Parameters
- $relationAlias
string $relationAlias optional alias for the relation, to be used as main alias in the
secondary query
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
See
useQuery()
|
public
Thelia\Model\ImageQuery
|
#
filterByContent( Thelia\Model\Content|PropelObjectCollection $content, string $comparison = null )
Filter the query by a related Content object
Filter the query by a related Content object
Parameters
- $content
Thelia\Model\Content|PropelObjectCollection $content The related object(s) to use as filter
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
Throws
PropelException - if the provided filter is invalid.
|
public
Thelia\Model\ImageQuery
|
#
joinContent( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Adds a JOIN clause to the query using the Content relation
Adds a JOIN clause to the query using the Content relation
Parameters
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
|
public
Thelia\Model\ContentQuery
|
#
useContentQuery( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Use the Content relation Content object
Use the Content relation Content object
Parameters
- $relationAlias
string $relationAlias optional alias for the relation, to be used as main alias in the
secondary query
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
See
useQuery()
|
public
Thelia\Model\ImageQuery
|
#
filterByFolder( Thelia\Model\Folder|PropelObjectCollection $folder, string $comparison = null )
Filter the query by a related Folder object
Filter the query by a related Folder object
Parameters
- $folder
Thelia\Model\Folder|PropelObjectCollection $folder The related object(s) to use as filter
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
Throws
PropelException - if the provided filter is invalid.
|
public
Thelia\Model\ImageQuery
|
#
joinFolder( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Adds a JOIN clause to the query using the Folder relation
Adds a JOIN clause to the query using the Folder relation
Parameters
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
|
public
Thelia\Model\FolderQuery
|
#
useFolderQuery( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Use the Folder relation Folder object
Use the Folder relation Folder object
Parameters
- $relationAlias
string $relationAlias optional alias for the relation, to be used as main alias in the
secondary query
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
See
useQuery()
|
public
Thelia\Model\ImageQuery
|
#
filterByImageI18n( Thelia\Model\ImageI18n|PropelObjectCollection $imageI18n, string $comparison = null )
Filter the query by a related ImageI18n object
Filter the query by a related ImageI18n object
Parameters
- $imageI18n
Thelia\Model\ImageI18n|PropelObjectCollection $imageI18n the related object to use as filter
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
Throws
PropelException - if the provided filter is invalid.
|
public
Thelia\Model\ImageQuery
|
#
joinImageI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN' )
Adds a JOIN clause to the query using the ImageI18n relation
Adds a JOIN clause to the query using the ImageI18n relation
Parameters
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
|
public
Thelia\Model\ImageI18nQuery
|
#
useImageI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN' )
Use the ImageI18n relation ImageI18n object
Use the ImageI18n relation ImageI18n object
Parameters
- $relationAlias
string $relationAlias optional alias for the relation, to be used as main alias in the
secondary query
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
See
useQuery()
|
public
Thelia\Model\ImageQuery
|
|
public
Thelia\Model\ImageQuery
|
#
recentlyUpdated( integer $nbDays = 7 )
Filter by the latest updated
Filter by the latest updated
Parameters
- $nbDays
integer $nbDays Maximum age of the latest update in days
Returns
|
public
Thelia\Model\ImageQuery
|
|
public
Thelia\Model\ImageQuery
|
|
public
Thelia\Model\ImageQuery
|
#
recentlyCreated( integer $nbDays = 7 )
Filter by the latest created
Filter by the latest created
Parameters
- $nbDays
integer $nbDays Maximum age of in days
Returns
|
public
Thelia\Model\ImageQuery
|
|
public
Thelia\Model\ImageQuery
|
|
public
Thelia\Model\ImageQuery
|
#
joinI18n( string $locale = 'en_EN', string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Adds a JOIN clause to the query using the i18n relation
Adds a JOIN clause to the query using the i18n relation
Parameters
- $locale
string $locale Locale to use for the join condition, e.g. 'fr_FR'
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'.
Defaults to left join.
Returns
|
public
Thelia\Model\ImageQuery
|
#
joinWithI18n( string $locale = 'en_EN', string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Adds a JOIN clause to the query and hydrates the related I18n object.
Shortcut for $c->joinI18n($locale)->with()
Adds a JOIN clause to the query and hydrates the related I18n object.
Shortcut for $c->joinI18n($locale)->with()
Parameters
- $locale
string $locale Locale to use for the join condition, e.g. 'fr_FR'
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'.
Defaults to left join.
Returns
|
public
ImageI18nQuery
|
#
useI18nQuery( string $locale = 'en_EN', string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::LEFT_JOIN )
Use the I18n relation query object
Use the I18n relation query object
Parameters
- $locale
string $locale Locale to use for the join condition, e.g. 'fr_FR'
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'.
Defaults to left join.
Returns
ImageI18nQuery A secondary query class using the current class as primary query
See
useQuery()
|
Magic methods summary
public
Thelia\Model\ImageQuery
|
#
orderById( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the id column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByProductId( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the product_id column
Order by the product_id column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByCategoryId( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the category_id column
Order by the category_id column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByFolderId( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the folder_id column
Order by the folder_id column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByContentId( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the content_id column
Order by the content_id column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByFile( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the file column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByPosition( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the position column
Order by the position column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByCreatedAt( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the created_at column
Order by the created_at column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
orderByUpdatedAt( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the updated_at column
Order by the updated_at column
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
|
public
Thelia\Model\ImageQuery
|
#
groupByProductId( )
Group by the product_id column
Group by the product_id column
Returns
|
public
Thelia\Model\ImageQuery
|
#
groupByCategoryId( )
Group by the category_id column
Group by the category_id column
Returns
|
public
Thelia\Model\ImageQuery
|
#
groupByFolderId( )
Group by the folder_id column
Group by the folder_id column
Returns
|
public
Thelia\Model\ImageQuery
|
#
groupByContentId( )
Group by the content_id column
Group by the content_id column
Returns
|
public
Thelia\Model\ImageQuery
|
|
public
Thelia\Model\ImageQuery
|
#
groupByPosition( )
Group by the position column
Group by the position column
Returns
|
public
Thelia\Model\ImageQuery
|
#
groupByCreatedAt( )
Group by the created_at column
Group by the created_at column
Returns
|
public
Thelia\Model\ImageQuery
|
#
groupByUpdatedAt( )
Group by the updated_at column
Group by the updated_at column
Returns
|
public
Thelia\Model\ImageQuery
|
#
leftJoin( mixed $relation = )
Adds a LEFT JOIN clause to the query
Adds a LEFT JOIN clause to the query
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
rightJoin( mixed $relation = )
Adds a RIGHT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
innerJoin( mixed $relation = )
Adds a INNER JOIN clause to the query
Adds a INNER JOIN clause to the query
Parameters
Returns
|
public
Thelia\Model\ImageQuery
|
#
leftJoinProduct( mixed $relationAlias = null )
Adds a LEFT JOIN clause to the query using the Product relation
Adds a LEFT JOIN clause to the query using the Product relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
rightJoinProduct( mixed $relationAlias = null )
Adds a RIGHT JOIN clause to the query using the Product relation
Adds a RIGHT JOIN clause to the query using the Product relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
innerJoinProduct( mixed $relationAlias = null )
Adds a INNER JOIN clause to the query using the Product relation
Adds a INNER JOIN clause to the query using the Product relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
leftJoinCategory( mixed $relationAlias = null )
Adds a LEFT JOIN clause to the query using the Category relation
Adds a LEFT JOIN clause to the query using the Category relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
rightJoinCategory( mixed $relationAlias = null )
Adds a RIGHT JOIN clause to the query using the Category relation
Adds a RIGHT JOIN clause to the query using the Category relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
innerJoinCategory( mixed $relationAlias = null )
Adds a INNER JOIN clause to the query using the Category relation
Adds a INNER JOIN clause to the query using the Category relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
leftJoinContent( mixed $relationAlias = null )
Adds a LEFT JOIN clause to the query using the Content relation
Adds a LEFT JOIN clause to the query using the Content relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
rightJoinContent( mixed $relationAlias = null )
Adds a RIGHT JOIN clause to the query using the Content relation
Adds a RIGHT JOIN clause to the query using the Content relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
innerJoinContent( mixed $relationAlias = null )
Adds a INNER JOIN clause to the query using the Content relation
Adds a INNER JOIN clause to the query using the Content relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
leftJoinFolder( mixed $relationAlias = null )
Adds a LEFT JOIN clause to the query using the Folder relation
Adds a LEFT JOIN clause to the query using the Folder relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
rightJoinFolder( mixed $relationAlias = null )
Adds a RIGHT JOIN clause to the query using the Folder relation
Adds a RIGHT JOIN clause to the query using the Folder relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
innerJoinFolder( mixed $relationAlias = null )
Adds a INNER JOIN clause to the query using the Folder relation
Adds a INNER JOIN clause to the query using the Folder relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
leftJoinImageI18n( mixed $relationAlias = null )
Adds a LEFT JOIN clause to the query using the ImageI18n relation
Adds a LEFT JOIN clause to the query using the ImageI18n relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
rightJoinImageI18n( mixed $relationAlias = null )
Adds a RIGHT JOIN clause to the query using the ImageI18n relation
Adds a RIGHT JOIN clause to the query using the ImageI18n relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\ImageQuery
|
#
innerJoinImageI18n( mixed $relationAlias = null )
Adds a INNER JOIN clause to the query using the ImageI18n relation
Adds a INNER JOIN clause to the query using the ImageI18n relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\Image
|
#
findOne( PropelPDO $con = null )
Return the first Image matching the query
Return the first Image matching the query
Parameters
Returns
|
public
Thelia\Model\Image
|
#
findOneOrCreate( PropelPDO $con = null )
Return the first Image matching the query, or a new Image object populated
from the query conditions when no match is found
Return the first Image matching the query, or a new Image object populated
from the query conditions when no match is found
Parameters
Returns
|
public
Thelia\Model\Image
|
#
findOneById( integer $id = )
Return the first Image filtered by the id column
Return the first Image filtered by the id column
Parameters
Returns
|
public
Thelia\Model\Image
|
#
findOneByProductId( integer $product_id = )
Return the first Image filtered by the product_id column
Return the first Image filtered by the product_id column
Parameters
- $product_id
integer $product_id
Returns
|
public
Thelia\Model\Image
|
#
findOneByCategoryId( integer $category_id = )
Return the first Image filtered by the category_id column
Return the first Image filtered by the category_id column
Parameters
- $category_id
integer $category_id
Returns
|
public
Thelia\Model\Image
|
#
findOneByFolderId( integer $folder_id = )
Return the first Image filtered by the folder_id column
Return the first Image filtered by the folder_id column
Parameters
- $folder_id
integer $folder_id
Returns
|
public
Thelia\Model\Image
|
#
findOneByContentId( integer $content_id = )
Return the first Image filtered by the content_id column
Return the first Image filtered by the content_id column
Parameters
- $content_id
integer $content_id
Returns
|
public
Thelia\Model\Image
|
#
findOneByFile( string $file = )
Return the first Image filtered by the file column
Return the first Image filtered by the file column
Parameters
Returns
|
public
Thelia\Model\Image
|
#
findOneByPosition( integer $position = )
Return the first Image filtered by the position column
Return the first Image filtered by the position column
Parameters
- $position
integer $position
Returns
|
public
Thelia\Model\Image
|
#
findOneByCreatedAt( string $created_at = )
Return the first Image filtered by the created_at column
Return the first Image filtered by the created_at column
Parameters
- $created_at
string $created_at
Returns
|
public
Thelia\Model\Image
|
#
findOneByUpdatedAt( string $updated_at = )
Return the first Image filtered by the updated_at column
Return the first Image filtered by the updated_at column
Parameters
- $updated_at
string $updated_at
Returns
|
public
array
|
#
findById( integer $id = )
Return Image objects filtered by the id column
Return Image objects filtered by the id column
Parameters
Returns
array
|
public
array
|
#
findByProductId( integer $product_id = )
Return Image objects filtered by the product_id column
Return Image objects filtered by the product_id column
Parameters
- $product_id
integer $product_id
Returns
array
|
public
array
|
#
findByCategoryId( integer $category_id = )
Return Image objects filtered by the category_id column
Return Image objects filtered by the category_id column
Parameters
- $category_id
integer $category_id
Returns
array
|
public
array
|
#
findByFolderId( integer $folder_id = )
Return Image objects filtered by the folder_id column
Return Image objects filtered by the folder_id column
Parameters
- $folder_id
integer $folder_id
Returns
array
|
public
array
|
#
findByContentId( integer $content_id = )
Return Image objects filtered by the content_id column
Return Image objects filtered by the content_id column
Parameters
- $content_id
integer $content_id
Returns
array
|
public
array
|
#
findByFile( string $file = )
Return Image objects filtered by the file column
Return Image objects filtered by the file column
Parameters
Returns
array
|
public
array
|
#
findByPosition( integer $position = )
Return Image objects filtered by the position column
Return Image objects filtered by the position column
Parameters
- $position
integer $position
Returns
array
|
public
array
|
#
findByCreatedAt( string $created_at = )
Return Image objects filtered by the created_at column
Return Image objects filtered by the created_at column
Parameters
- $created_at
string $created_at
Returns
array
|
public
array
|
#
findByUpdatedAt( string $updated_at = )
Return Image objects filtered by the updated_at column
Return Image objects filtered by the updated_at column
Parameters
- $updated_at
string $updated_at
Returns
array
|