class AttributeQuery extends ModelCriteria

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

Methods

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

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

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

Returns a new ChildAttributeQuery object.

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

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

filterByAttributeAv( AttributeAv|ObjectCollection $attributeAv, string $comparison = null)

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

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

Adds a JOIN clause to the query using the AttributeAv relation

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

Use the AttributeAv relation AttributeAv object

filterByAttributeCombination( AttributeCombination|ObjectCollection $attributeCombination, string $comparison = null)

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

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

Adds a JOIN clause to the query using the AttributeCombination relation

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

Use the AttributeCombination relation AttributeCombination object

filterByAttributeTemplate( AttributeTemplate|ObjectCollection $attributeTemplate, string $comparison = null)

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

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

Adds a JOIN clause to the query using the AttributeTemplate relation

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

Use the AttributeTemplate relation AttributeTemplate object

filterByAttributeI18n( AttributeI18n|ObjectCollection $attributeI18n, string $comparison = null)

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

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

Adds a JOIN clause to the query using the AttributeI18n relation

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

Use the AttributeI18n relation AttributeI18n object

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

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

prune( Attribute $attribute = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the attribute table.

int
delete( ConnectionInterface $con = null)

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

ChildAttributeQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildAttributeQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildAttributeQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildAttributeQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildAttributeQuery
groupById()

Group by the id column

ChildAttributeQuery
groupByPosition()

Group by the position column

ChildAttributeQuery
groupByCreatedAt()

Group by the created_at column

ChildAttributeQuery
groupByUpdatedAt()

Group by the updated_at column

ChildAttributeQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildAttributeQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildAttributeQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildAttributeQuery
leftJoinAttributeAv($relationAlias = null)

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

ChildAttributeQuery
rightJoinAttributeAv($relationAlias = null)

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

ChildAttributeQuery
innerJoinAttributeAv($relationAlias = null)

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

ChildAttributeQuery
leftJoinAttributeCombination($relationAlias = null)

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

ChildAttributeQuery
rightJoinAttributeCombination($relationAlias = null)

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

ChildAttributeQuery
innerJoinAttributeCombination($relationAlias = null)

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

ChildAttributeQuery
leftJoinAttributeTemplate($relationAlias = null)

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

ChildAttributeQuery
rightJoinAttributeTemplate($relationAlias = null)

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

ChildAttributeQuery
innerJoinAttributeTemplate($relationAlias = null)

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

ChildAttributeQuery
leftJoinAttributeI18n($relationAlias = null)

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

ChildAttributeQuery
rightJoinAttributeI18n($relationAlias = null)

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

ChildAttributeQuery
innerJoinAttributeI18n($relationAlias = null)

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

ChildAttribute
findOne( ConnectionInterface $con = null)

Return the first ChildAttribute matching the query

ChildAttribute
findOneOrCreate( ConnectionInterface $con = null)

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

ChildAttribute
findOneById( int $id)

Return the first ChildAttribute filtered by the id column

ChildAttribute
findOneByPosition( int $position)

Return the first ChildAttribute filtered by the position column

ChildAttribute
findOneByCreatedAt( string $created_at)

Return the first ChildAttribute filtered by the created_at column

ChildAttribute
findOneByUpdatedAt( string $updated_at)

Return the first ChildAttribute filtered by the updated_at column

array
findById( int $id)

Return ChildAttribute objects filtered by the id column

array
findByPosition( int $position)

Return ChildAttribute objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildAttribute objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildAttribute objects filtered by the updated_at column

Details

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

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

Parameters

string $dbName The database name
string $modelName The phpName of a model, e.g. 'Book'
string $modelAlias The alias for the model in this query, e.g. 'b'

at line 92
static AttributeQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildAttributeQuery object.

Parameters

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

Return Value

AttributeQuery

at line 122
Attribute|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

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

at line 204
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

at line 225
AttributeQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

AttributeQuery The current query, for fluid interface

at line 238
AttributeQuery 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

AttributeQuery The current query, for fluid interface

at line 262
AttributeQuery 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

AttributeQuery The current query, for fluid interface

at line 303
AttributeQuery 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

AttributeQuery The current query, for fluid interface

at line 346
AttributeQuery 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

AttributeQuery The current query, for fluid interface

at line 389
AttributeQuery 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

AttributeQuery The current query, for fluid interface

at line 420
AttributeQuery filterByAttributeAv( AttributeAv|ObjectCollection $attributeAv, string $comparison = null)

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

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 443
AttributeQuery joinAttributeAv( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the AttributeAv relation

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 478
AttributeAvQuery useAttributeAvQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

at line 493
AttributeQuery filterByAttributeCombination( AttributeCombination|ObjectCollection $attributeCombination, string $comparison = null)

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

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 516
AttributeQuery joinAttributeCombination( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the AttributeCombination relation

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 551
AttributeCombinationQuery useAttributeCombinationQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

at line 566
AttributeQuery filterByAttributeTemplate( AttributeTemplate|ObjectCollection $attributeTemplate, string $comparison = null)

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

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 589
AttributeQuery joinAttributeTemplate( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the AttributeTemplate relation

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 624
AttributeTemplateQuery useAttributeTemplateQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

at line 639
AttributeQuery filterByAttributeI18n( AttributeI18n|ObjectCollection $attributeI18n, string $comparison = null)

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

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 662
AttributeQuery joinAttributeI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the AttributeI18n relation

Parameters

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

Return Value

AttributeQuery The current query, for fluid interface

at line 697
AttributeI18nQuery useAttributeI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

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

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

See also

useQuery()

at line 713
AttributeQuery filterByTemplate( Template $template, string $comparison = Criteria::EQUAL)

Filter the query by a related Template object using the attribute_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

AttributeQuery The current query, for fluid interface

at line 728
AttributeQuery prune( Attribute $attribute = null)

Exclude object from result

Parameters

Attribute $attribute Object to remove from the list of results

Return Value

AttributeQuery The current query, for fluid interface

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

Deletes all rows from the attribute table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

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

Performs a DELETE on the database, given a ChildAttribute or Criteria object OR a primary key value.

Parameters

ConnectionInterface $con

Return Value

int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows if supported by native driver or if emulated using Propel.

Exceptions

PropelException Any exceptions caught during processing will be rethrown wrapped into a PropelException.

at line 821
AttributeQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

AttributeQuery The current query, for fluid interface

at line 833
AttributeQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

AttributeQuery The current query, for fluid interface

at line 843
AttributeQuery lastUpdatedFirst()

Order by update date desc

Return Value

AttributeQuery The current query, for fluid interface

at line 853
AttributeQuery firstUpdatedFirst()

Order by update date asc

Return Value

AttributeQuery The current query, for fluid interface

at line 863
AttributeQuery lastCreatedFirst()

Order by create date desc

Return Value

AttributeQuery The current query, for fluid interface

at line 873
AttributeQuery firstCreatedFirst()

Order by create date asc

Return Value

AttributeQuery The current query, for fluid interface

at line 889
AttributeQuery 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

AttributeQuery The current query, for fluid interface

at line 907
AttributeQuery 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

AttributeQuery The current query, for fluid interface

at line 928
AttributeI18nQuery 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

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

See also

useQuery()

at line 69
ChildAttributeQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery groupById()

Group by the id column

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery groupByPosition()

Group by the position column

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery leftJoinAttributeAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery rightJoinAttributeAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery innerJoinAttributeAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery leftJoinAttributeCombination($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery rightJoinAttributeCombination($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery innerJoinAttributeCombination($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery leftJoinAttributeTemplate($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery rightJoinAttributeTemplate($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery innerJoinAttributeTemplate($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery leftJoinAttributeI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery rightJoinAttributeI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttributeQuery innerJoinAttributeI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAttributeQuery

at line 69
ChildAttribute findOne( ConnectionInterface $con = null)

Return the first ChildAttribute matching the query

Parameters

ConnectionInterface $con

Return Value

ChildAttribute

at line 69
ChildAttribute findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildAttribute

at line 69
ChildAttribute findOneById( int $id)

Return the first ChildAttribute filtered by the id column

Parameters

int $id

Return Value

ChildAttribute

at line 69
ChildAttribute findOneByPosition( int $position)

Return the first ChildAttribute filtered by the position column

Parameters

int $position

Return Value

ChildAttribute

at line 69
ChildAttribute findOneByCreatedAt( string $created_at)

Return the first ChildAttribute filtered by the created_at column

Parameters

string $created_at

Return Value

ChildAttribute

at line 69
ChildAttribute findOneByUpdatedAt( string $updated_at)

Return the first ChildAttribute filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildAttribute

at line 69
array findById( int $id)

Return ChildAttribute objects filtered by the id column

Parameters

int $id

Return Value

array

at line 69
array findByPosition( int $position)

Return ChildAttribute objects filtered by the position column

Parameters

int $position

Return Value

array

at line 69
array findByCreatedAt( string $created_at)

Return ChildAttribute objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 69
array findByUpdatedAt( string $updated_at)

Return ChildAttribute objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array