class FeatureQuery extends FeatureQuery

Skeleton subclass for performing query and update operations on the 'feature' 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\\Feature', string $modelAlias = null)

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

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

Returns a new ChildFeatureQuery object.

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

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

filterByFeatureAv( FeatureAv|ObjectCollection $featureAv, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FeatureAv relation

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

Use the FeatureAv relation FeatureAv object

filterByFeatureProduct( FeatureProduct|ObjectCollection $featureProduct, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FeatureProduct relation

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

Use the FeatureProduct relation FeatureProduct object

filterByFeatureTemplate( FeatureTemplate|ObjectCollection $featureTemplate, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FeatureTemplate relation

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

Use the FeatureTemplate relation FeatureTemplate object

filterByFeatureI18n( FeatureI18n|ObjectCollection $featureI18n, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FeatureI18n relation

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

Use the FeatureI18n relation FeatureI18n object

filterByTemplate( Template $template, string $comparison = Criteria::EQUAL)

Filter the query by a related Template object using the feature_template table as cross reference

prune( Feature $feature = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the feature table.

int
delete( ConnectionInterface $con = null)

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

ChildFeatureQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildFeatureQuery
orderByVisible($order = Criteria::ASC)

Order by the visible column

ChildFeatureQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildFeatureQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildFeatureQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildFeatureQuery
groupById()

Group by the id column

ChildFeatureQuery
groupByVisible()

Group by the visible column

ChildFeatureQuery
groupByPosition()

Group by the position column

ChildFeatureQuery
groupByCreatedAt()

Group by the created_at column

ChildFeatureQuery
groupByUpdatedAt()

Group by the updated_at column

ChildFeatureQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildFeatureQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildFeatureQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildFeatureQuery
leftJoinFeatureAv($relationAlias = null)

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

ChildFeatureQuery
rightJoinFeatureAv($relationAlias = null)

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

ChildFeatureQuery
innerJoinFeatureAv($relationAlias = null)

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

ChildFeatureQuery
leftJoinFeatureProduct($relationAlias = null)

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

ChildFeatureQuery
rightJoinFeatureProduct($relationAlias = null)

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

ChildFeatureQuery
innerJoinFeatureProduct($relationAlias = null)

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

ChildFeatureQuery
leftJoinFeatureTemplate($relationAlias = null)

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

ChildFeatureQuery
rightJoinFeatureTemplate($relationAlias = null)

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

ChildFeatureQuery
innerJoinFeatureTemplate($relationAlias = null)

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

ChildFeatureQuery
leftJoinFeatureI18n($relationAlias = null)

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

ChildFeatureQuery
rightJoinFeatureI18n($relationAlias = null)

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

ChildFeatureQuery
innerJoinFeatureI18n($relationAlias = null)

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

ChildFeature
findOne( ConnectionInterface $con = null)

Return the first ChildFeature matching the query

ChildFeature
findOneOrCreate( ConnectionInterface $con = null)

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

ChildFeature
findOneById( int $id)

Return the first ChildFeature filtered by the id column

ChildFeature
findOneByVisible( int $visible)

Return the first ChildFeature filtered by the visible column

ChildFeature
findOneByPosition( int $position)

Return the first ChildFeature filtered by the position column

ChildFeature
findOneByCreatedAt( string $created_at)

Return the first ChildFeature filtered by the created_at column

ChildFeature
findOneByUpdatedAt( string $updated_at)

Return the first ChildFeature filtered by the updated_at column

array
findById( int $id)

Return ChildFeature objects filtered by the id column

array
findByVisible( int $visible)

Return ChildFeature objects filtered by the visible column

array
findByPosition( int $position)

Return ChildFeature objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildFeature objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildFeature objects filtered by the updated_at column

Details

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

Initializes internal state of \Thelia\Model\Base\FeatureQuery 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 FeatureQuery at line 96
static FeatureQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildFeatureQuery object.

Parameters

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

Return Value

FeatureQuery

in FeatureQuery at line 126
Feature|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

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

in FeatureQuery 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 FeatureQuery at line 229
FeatureQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

FeatureQuery The current query, for fluid interface

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

FeatureQuery The current query, for fluid interface

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

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 307
FeatureQuery 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

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 348
FeatureQuery 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

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 391
FeatureQuery 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

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 434
FeatureQuery 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

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 465
FeatureQuery filterByFeatureAv( FeatureAv|ObjectCollection $featureAv, string $comparison = null)

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

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 488
FeatureQuery joinFeatureAv( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the FeatureAv relation

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 523
FeatureAvQuery useFeatureAvQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

in FeatureQuery at line 538
FeatureQuery filterByFeatureProduct( FeatureProduct|ObjectCollection $featureProduct, string $comparison = null)

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

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 561
FeatureQuery joinFeatureProduct( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the FeatureProduct relation

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 596
FeatureProductQuery useFeatureProductQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

in FeatureQuery at line 611
FeatureQuery filterByFeatureTemplate( FeatureTemplate|ObjectCollection $featureTemplate, string $comparison = null)

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

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 634
FeatureQuery joinFeatureTemplate( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the FeatureTemplate relation

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 669
FeatureTemplateQuery useFeatureTemplateQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

in FeatureQuery at line 684
FeatureQuery filterByFeatureI18n( FeatureI18n|ObjectCollection $featureI18n, string $comparison = null)

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

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 707
FeatureQuery joinFeatureI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the FeatureI18n relation

Parameters

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

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 742
FeatureI18nQuery useFeatureI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

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

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

See also

useQuery()

in FeatureQuery at line 758
FeatureQuery filterByTemplate( Template $template, string $comparison = Criteria::EQUAL)

Filter the query by a related Template object using the feature_template table as cross reference

Parameters

Template $template the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 773
FeatureQuery prune( Feature $feature = null)

Exclude object from result

Parameters

Feature $feature Object to remove from the list of results

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 788
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the feature table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

in FeatureQuery at line 825
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildFeature 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 FeatureQuery at line 866
FeatureQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 878
FeatureQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 888
FeatureQuery lastUpdatedFirst()

Order by update date desc

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 898
FeatureQuery firstUpdatedFirst()

Order by update date asc

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 908
FeatureQuery lastCreatedFirst()

Order by create date desc

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 918
FeatureQuery firstCreatedFirst()

Order by create date asc

Return Value

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 934
FeatureQuery 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

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 952
FeatureQuery 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

FeatureQuery The current query, for fluid interface

in FeatureQuery at line 973
FeatureI18nQuery 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

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

See also

useQuery()

in FeatureQuery at line 73
ChildFeatureQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery orderByVisible($order = Criteria::ASC)

Order by the visible column

Parameters

$order

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery groupById()

Group by the id column

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery groupByVisible()

Group by the visible column

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery groupByPosition()

Group by the position column

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery leftJoinFeatureAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery rightJoinFeatureAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery innerJoinFeatureAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery leftJoinFeatureProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery rightJoinFeatureProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery innerJoinFeatureProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery leftJoinFeatureTemplate($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery rightJoinFeatureTemplate($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery innerJoinFeatureTemplate($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery leftJoinFeatureI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery rightJoinFeatureI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeatureQuery innerJoinFeatureI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureQuery

in FeatureQuery at line 73
ChildFeature findOne( ConnectionInterface $con = null)

Return the first ChildFeature matching the query

Parameters

ConnectionInterface $con

Return Value

ChildFeature

in FeatureQuery at line 73
ChildFeature findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildFeature

in FeatureQuery at line 73
ChildFeature findOneById( int $id)

Return the first ChildFeature filtered by the id column

Parameters

int $id

Return Value

ChildFeature

in FeatureQuery at line 73
ChildFeature findOneByVisible( int $visible)

Return the first ChildFeature filtered by the visible column

Parameters

int $visible

Return Value

ChildFeature

in FeatureQuery at line 73
ChildFeature findOneByPosition( int $position)

Return the first ChildFeature filtered by the position column

Parameters

int $position

Return Value

ChildFeature

in FeatureQuery at line 73
ChildFeature findOneByCreatedAt( string $created_at)

Return the first ChildFeature filtered by the created_at column

Parameters

string $created_at

Return Value

ChildFeature

in FeatureQuery at line 73
ChildFeature findOneByUpdatedAt( string $updated_at)

Return the first ChildFeature filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildFeature

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

Return ChildFeature objects filtered by the id column

Parameters

int $id

Return Value

array

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

Return ChildFeature objects filtered by the visible column

Parameters

int $visible

Return Value

array

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

Return ChildFeature objects filtered by the position column

Parameters

int $position

Return Value

array

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

Return ChildFeature objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

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

Return ChildFeature objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array