class FolderImageQuery extends FolderImageQuery

Skeleton subclass for performing query and update operations on the 'folder_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

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

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

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

Returns a new ChildFolderImageQuery object.

FolderImage|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

filterByFolderId( mixed $folderId = null, string $comparison = null)

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

filterByFolder( Folder|ObjectCollection $folder, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Folder relation

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

Use the Folder relation Folder object

filterByFolderImageI18n( FolderImageI18n|ObjectCollection $folderImageI18n, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FolderImageI18n relation

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

Use the FolderImageI18n relation FolderImageI18n object

prune( FolderImage $folderImage = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the folder_image table.

int
delete( ConnectionInterface $con = null)

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

ChildFolderImageQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildFolderImageQuery
orderByFolderId($order = Criteria::ASC)

Order by the folder_id column

ChildFolderImageQuery
orderByFile($order = Criteria::ASC)

Order by the file column

ChildFolderImageQuery
orderByVisible($order = Criteria::ASC)

Order by the visible column

ChildFolderImageQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildFolderImageQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildFolderImageQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildFolderImageQuery
groupById()

Group by the id column

ChildFolderImageQuery
groupByFolderId()

Group by the folder_id column

ChildFolderImageQuery
groupByFile()

Group by the file column

ChildFolderImageQuery
groupByVisible()

Group by the visible column

ChildFolderImageQuery
groupByPosition()

Group by the position column

ChildFolderImageQuery
groupByCreatedAt()

Group by the created_at column

ChildFolderImageQuery
groupByUpdatedAt()

Group by the updated_at column

ChildFolderImageQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildFolderImageQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildFolderImageQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildFolderImageQuery
leftJoinFolder($relationAlias = null)

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

ChildFolderImageQuery
rightJoinFolder($relationAlias = null)

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

ChildFolderImageQuery
innerJoinFolder($relationAlias = null)

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

ChildFolderImageQuery
leftJoinFolderImageI18n($relationAlias = null)

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

ChildFolderImageQuery
rightJoinFolderImageI18n($relationAlias = null)

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

ChildFolderImageQuery
innerJoinFolderImageI18n($relationAlias = null)

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

ChildFolderImage
findOne( ConnectionInterface $con = null)

Return the first ChildFolderImage matching the query

ChildFolderImage
findOneOrCreate( ConnectionInterface $con = null)

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

ChildFolderImage
findOneById( int $id)

Return the first ChildFolderImage filtered by the id column

ChildFolderImage
findOneByFolderId( int $folder_id)

Return the first ChildFolderImage filtered by the folder_id column

ChildFolderImage
findOneByFile( string $file)

Return the first ChildFolderImage filtered by the file column

ChildFolderImage
findOneByVisible( int $visible)

Return the first ChildFolderImage filtered by the visible column

ChildFolderImage
findOneByPosition( int $position)

Return the first ChildFolderImage filtered by the position column

ChildFolderImage
findOneByCreatedAt( string $created_at)

Return the first ChildFolderImage filtered by the created_at column

ChildFolderImage
findOneByUpdatedAt( string $updated_at)

Return the first ChildFolderImage filtered by the updated_at column

array
findById( int $id)

Return ChildFolderImage objects filtered by the id column

array
findByFolderId( int $folder_id)

Return ChildFolderImage objects filtered by the folder_id column

array
findByFile( string $file)

Return ChildFolderImage objects filtered by the file column

array
findByVisible( int $visible)

Return ChildFolderImage objects filtered by the visible column

array
findByPosition( int $position)

Return ChildFolderImage objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildFolderImage objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildFolderImage objects filtered by the updated_at column

Details

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

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

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

Returns a new ChildFolderImageQuery object.

Parameters

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

Return Value

FolderImageQuery

in FolderImageQuery at line 126
FolderImage|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

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

in FolderImageQuery 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

in FolderImageQuery at line 229
FolderImageQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 242
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 266
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 309
FolderImageQuery filterByFolderId( mixed $folderId = null, string $comparison = null)

Filter the query on the folder_id column

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

Parameters

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

Return Value

FolderImageQuery The current query, for fluid interface

See also

filterByFolder()

in FolderImageQuery at line 347
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 379
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 420
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 463
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 506
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 537
FolderImageQuery filterByFolder( Folder|ObjectCollection $folder, string $comparison = null)

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

Parameters

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

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 562
FolderImageQuery joinFolder( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Folder relation

Parameters

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

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 597
FolderQuery useFolderQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

in FolderImageQuery at line 612
FolderImageQuery filterByFolderImageI18n( FolderImageI18n|ObjectCollection $folderImageI18n, string $comparison = null)

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

Parameters

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

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 635
FolderImageQuery joinFolderImageI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the FolderImageI18n relation

Parameters

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

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 670
FolderImageI18nQuery useFolderImageI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

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

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

See also

useQuery()

in FolderImageQuery at line 684
FolderImageQuery prune( FolderImage $folderImage = null)

Exclude object from result

Parameters

FolderImage $folderImage Object to remove from the list of results

Return Value

FolderImageQuery The current query, for fluid interface

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

Deletes all rows from the folder_image table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

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

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

in FolderImageQuery at line 777
FolderImageQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 789
FolderImageQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 799
FolderImageQuery lastUpdatedFirst()

Order by update date desc

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 809
FolderImageQuery firstUpdatedFirst()

Order by update date asc

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 819
FolderImageQuery lastCreatedFirst()

Order by create date desc

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 829
FolderImageQuery firstCreatedFirst()

Order by create date asc

Return Value

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 845
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 863
FolderImageQuery 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

FolderImageQuery The current query, for fluid interface

in FolderImageQuery at line 884
FolderImageI18nQuery 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

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

See also

useQuery()

in FolderImageQuery at line 73
ChildFolderImageQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery orderByFolderId($order = Criteria::ASC)

Order by the folder_id column

Parameters

$order

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery orderByFile($order = Criteria::ASC)

Order by the file column

Parameters

$order

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery orderByVisible($order = Criteria::ASC)

Order by the visible column

Parameters

$order

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery groupById()

Group by the id column

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery groupByFolderId()

Group by the folder_id column

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery groupByFile()

Group by the file column

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery groupByVisible()

Group by the visible column

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery groupByPosition()

Group by the position column

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery leftJoinFolder($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery rightJoinFolder($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery innerJoinFolder($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery leftJoinFolderImageI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery rightJoinFolderImageI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImageQuery innerJoinFolderImageI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFolderImageQuery

in FolderImageQuery at line 73
ChildFolderImage findOne( ConnectionInterface $con = null)

Return the first ChildFolderImage matching the query

Parameters

ConnectionInterface $con

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneById( int $id)

Return the first ChildFolderImage filtered by the id column

Parameters

int $id

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneByFolderId( int $folder_id)

Return the first ChildFolderImage filtered by the folder_id column

Parameters

int $folder_id

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneByFile( string $file)

Return the first ChildFolderImage filtered by the file column

Parameters

string $file

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneByVisible( int $visible)

Return the first ChildFolderImage filtered by the visible column

Parameters

int $visible

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneByPosition( int $position)

Return the first ChildFolderImage filtered by the position column

Parameters

int $position

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneByCreatedAt( string $created_at)

Return the first ChildFolderImage filtered by the created_at column

Parameters

string $created_at

Return Value

ChildFolderImage

in FolderImageQuery at line 73
ChildFolderImage findOneByUpdatedAt( string $updated_at)

Return the first ChildFolderImage filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildFolderImage

in FolderImageQuery at line 73
array findById( int $id)

Return ChildFolderImage objects filtered by the id column

Parameters

int $id

Return Value

array

in FolderImageQuery at line 73
array findByFolderId( int $folder_id)

Return ChildFolderImage objects filtered by the folder_id column

Parameters

int $folder_id

Return Value

array

in FolderImageQuery at line 73
array findByFile( string $file)

Return ChildFolderImage objects filtered by the file column

Parameters

string $file

Return Value

array

in FolderImageQuery at line 73
array findByVisible( int $visible)

Return ChildFolderImage objects filtered by the visible column

Parameters

int $visible

Return Value

array

in FolderImageQuery at line 73
array findByPosition( int $position)

Return ChildFolderImage objects filtered by the position column

Parameters

int $position

Return Value

array

in FolderImageQuery at line 73
array findByCreatedAt( string $created_at)

Return ChildFolderImage objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

in FolderImageQuery at line 73
array findByUpdatedAt( string $updated_at)

Return ChildFolderImage objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array