\Thelia\ModelAttributeAvQuery

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

Summary

Methods
Properties
Constants
__construct()
create()
findPk()
findPks()
filterByPrimaryKey()
filterByPrimaryKeys()
filterById()
filterByAttributeId()
filterByPosition()
filterByCreatedAt()
filterByUpdatedAt()
filterByAttribute()
joinAttribute()
useAttributeQuery()
filterByAttributeCombination()
joinAttributeCombination()
useAttributeCombinationQuery()
filterByAttributeAvI18n()
joinAttributeAvI18n()
useAttributeAvI18nQuery()
prune()
doDeleteAll()
delete()
recentlyUpdated()
recentlyCreated()
lastUpdatedFirst()
firstUpdatedFirst()
lastCreatedFirst()
firstCreatedFirst()
joinI18n()
joinWithI18n()
useI18nQuery()
orderById()
orderByAttributeId()
orderByPosition()
orderByCreatedAt()
orderByUpdatedAt()
groupById()
groupByAttributeId()
groupByPosition()
groupByCreatedAt()
groupByUpdatedAt()
leftJoin()
rightJoin()
innerJoin()
leftJoinAttribute()
rightJoinAttribute()
innerJoinAttribute()
leftJoinAttributeCombination()
rightJoinAttributeCombination()
innerJoinAttributeCombination()
leftJoinAttributeAvI18n()
rightJoinAttributeAvI18n()
innerJoinAttributeAvI18n()
findOne()
findOneOrCreate()
findOneById()
findOneByAttributeId()
findOneByPosition()
findOneByCreatedAt()
findOneByUpdatedAt()
findById()
findByAttributeId()
findByPosition()
findByCreatedAt()
findByUpdatedAt()
No public properties found
No constants found
findPkSimple()
findPkComplex()
No protected properties found
N/A
No private methods found
No private properties found
N/A

Methods

__construct()

__construct(string $dbName, string $modelName, string $modelAlias)

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

create()

create(string $modelAlias, \Propel\Runtime\ActiveQuery\Criteria $criteria) : \Thelia\Model\AttributeAvQuery

Returns a new ChildAttributeAvQuery object.

Parameters

string $modelAlias

The alias of a model in the query

\Propel\Runtime\ActiveQuery\Criteria $criteria

Optional Criteria to build the query from

Returns

\Thelia\Model\AttributeAvQuery

findPk()

findPk(mixed $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\AttributeAv|array|mixed

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

\Propel\Runtime\Connection\ConnectionInterface $con

an optional connection object

Returns

\Thelia\Model\AttributeAv|array|mixed —

the result, formatted by the current formatter

findPks()

findPks(array $keys, \Propel\Runtime\Connection\ConnectionInterface $con) : \Propel\Runtime\Collection\ObjectCollection|array|mixed

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

Parameters

array $keys

Primary keys to use for the query

\Propel\Runtime\Connection\ConnectionInterface $con

an optional connection object

Returns

\Propel\Runtime\Collection\ObjectCollection|array|mixed —

the list of results, formatted by the current formatter

filterByPrimaryKey()

filterByPrimaryKey(mixed $key) : \Thelia\Model\AttributeAvQuery

Filter the query by primary key

Parameters

mixed $key

Primary key to use for the query

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

filterByPrimaryKeys()

filterByPrimaryKeys(array $keys) : \Thelia\Model\AttributeAvQuery

Filter the query by a list of primary keys

Parameters

array $keys

The list of primary key to use for the query

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

filterById()

filterById(mixed $id, string $comparison) : \Thelia\Model\AttributeAvQuery

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

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

filterByAttributeId()

filterByAttributeId(mixed $attributeId, string $comparison) : \Thelia\Model\AttributeAvQuery

Filter the query on the attribute_id column

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

Parameters

mixed $attributeId

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

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

filterByPosition()

filterByPosition(mixed $position, string $comparison) : \Thelia\Model\AttributeAvQuery

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

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

filterByCreatedAt()

filterByCreatedAt(mixed $createdAt, string $comparison) : \Thelia\Model\AttributeAvQuery

Filter the query on the created_at column

Example usage: $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14' $query->filterByCreatedAt('now'); // WHERE created_at = '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

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

filterByUpdatedAt()

filterByUpdatedAt(mixed $updatedAt, string $comparison) : \Thelia\Model\AttributeAvQuery

Filter the query on the updated_at column

Example usage: $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14' $query->filterByUpdatedAt('now'); // WHERE updated_at = '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

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

filterByAttribute()

filterByAttribute(\Thelia\Model\Attribute|\Propel\Runtime\Collection\ObjectCollection $attribute, string $comparison) : \Thelia\Model\AttributeAvQuery

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

Parameters

\Thelia\Model\Attribute|\Propel\Runtime\Collection\ObjectCollection $attribute

The related object(s) to use as filter

string $comparison

Operator to use for the column comparison, defaults to Criteria::EQUAL

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

joinAttribute()

joinAttribute(string $relationAlias, string $joinType) : \Thelia\Model\AttributeAvQuery

Adds a JOIN clause to the query using the Attribute relation

Parameters

string $relationAlias

optional alias for the relation

string $joinType

Accepted values are null, 'left join', 'right join', 'inner join'

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

useAttributeQuery()

useAttributeQuery(string $relationAlias, string $joinType) : \Thelia\Model\AttributeQuery

Use the Attribute relation Attribute 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'

Returns

\Thelia\Model\AttributeQuery

A secondary query class using the current class as primary query

filterByAttributeCombination()

filterByAttributeCombination(\Thelia\Model\AttributeCombination|\Propel\Runtime\Collection\ObjectCollection $attributeCombination, string $comparison) : \Thelia\Model\AttributeAvQuery

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

Parameters

\Thelia\Model\AttributeCombination|\Propel\Runtime\Collection\ObjectCollection $attributeCombination

the related object to use as filter

string $comparison

Operator to use for the column comparison, defaults to Criteria::EQUAL

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

joinAttributeCombination()

joinAttributeCombination(string $relationAlias, string $joinType) : \Thelia\Model\AttributeAvQuery

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'

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

useAttributeCombinationQuery()

useAttributeCombinationQuery(string $relationAlias, string $joinType) : \Thelia\Model\AttributeCombinationQuery

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'

Returns

\Thelia\Model\AttributeCombinationQuery

A secondary query class using the current class as primary query

filterByAttributeAvI18n()

filterByAttributeAvI18n(\Thelia\Model\AttributeAvI18n|\Propel\Runtime\Collection\ObjectCollection $attributeAvI18n, string $comparison) : \Thelia\Model\AttributeAvQuery

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

Parameters

\Thelia\Model\AttributeAvI18n|\Propel\Runtime\Collection\ObjectCollection $attributeAvI18n

the related object to use as filter

string $comparison

Operator to use for the column comparison, defaults to Criteria::EQUAL

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

joinAttributeAvI18n()

joinAttributeAvI18n(string $relationAlias, string $joinType) : \Thelia\Model\AttributeAvQuery

Adds a JOIN clause to the query using the AttributeAvI18n relation

Parameters

string $relationAlias

optional alias for the relation

string $joinType

Accepted values are null, 'left join', 'right join', 'inner join'

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

useAttributeAvI18nQuery()

useAttributeAvI18nQuery(string $relationAlias, string $joinType) : \Thelia\Model\AttributeAvI18nQuery

Use the AttributeAvI18n relation AttributeAvI18n 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'

Returns

\Thelia\Model\AttributeAvI18nQuery

A secondary query class using the current class as primary query

prune()

prune(\Thelia\Model\AttributeAv $attributeAv) : \Thelia\Model\AttributeAvQuery

Exclude object from result

Parameters

\Thelia\Model\AttributeAv $attributeAv

Object to remove from the list of results

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

doDeleteAll()

doDeleteAll(\Propel\Runtime\Connection\ConnectionInterface $con) : int

Deletes all rows from the attribute_av table.

Parameters

\Propel\Runtime\Connection\ConnectionInterface $con

the connection to use

Returns

int —

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

delete()

delete(\Propel\Runtime\Connection\ConnectionInterface $con) : int

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

Parameters

\Propel\Runtime\Connection\ConnectionInterface $con

the connection to use

Throws

\Propel\Runtime\Exception\PropelException

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

Returns

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.

recentlyUpdated()

recentlyUpdated(int $nbDays) : \Thelia\Model\AttributeAvQuery

Filter by the latest updated

Parameters

int $nbDays

Maximum age of the latest update in days

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

recentlyCreated()

recentlyCreated(int $nbDays) : \Thelia\Model\AttributeAvQuery

Filter by the latest created

Parameters

int $nbDays

Maximum age of in days

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

lastUpdatedFirst()

lastUpdatedFirst() : \Thelia\Model\AttributeAvQuery

Order by update date desc

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

firstUpdatedFirst()

firstUpdatedFirst() : \Thelia\Model\AttributeAvQuery

Order by update date asc

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

lastCreatedFirst()

lastCreatedFirst() : \Thelia\Model\AttributeAvQuery

Order by create date desc

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

firstCreatedFirst()

firstCreatedFirst() : \Thelia\Model\AttributeAvQuery

Order by create date asc

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

joinI18n()

joinI18n(string $locale, string $relationAlias, string $joinType) : \Thelia\Model\AttributeAvQuery

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.

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

joinWithI18n()

joinWithI18n(string $locale, string $joinType) : \Thelia\Model\AttributeAvQuery

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.

Returns

\Thelia\Model\AttributeAvQuery

The current query, for fluid interface

useI18nQuery()

useI18nQuery(string $locale, string $relationAlias, string $joinType) : \Thelia\Model\AttributeAvI18nQuery

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.

Returns

\Thelia\Model\AttributeAvI18nQuery

A secondary query class using the current class as primary query

orderById()

orderById($order =) : \Thelia\Model\AttributeAvQuery

Order by the id column

Parameters

$order =

Returns

\Thelia\Model\AttributeAvQuery

orderByAttributeId()

orderByAttributeId($order =) : \Thelia\Model\AttributeAvQuery

Order by the attribute_id column

Parameters

$order =

Returns

\Thelia\Model\AttributeAvQuery

orderByPosition()

orderByPosition($order =) : \Thelia\Model\AttributeAvQuery

Order by the position column

Parameters

$order =

Returns

\Thelia\Model\AttributeAvQuery

orderByCreatedAt()

orderByCreatedAt($order =) : \Thelia\Model\AttributeAvQuery

Order by the created_at column

Parameters

$order =

Returns

\Thelia\Model\AttributeAvQuery

orderByUpdatedAt()

orderByUpdatedAt($order =) : \Thelia\Model\AttributeAvQuery

Order by the updated_at column

Parameters

$order =

Returns

\Thelia\Model\AttributeAvQuery

groupById()

groupById() : \Thelia\Model\AttributeAvQuery

Group by the id column

Returns

\Thelia\Model\AttributeAvQuery

groupByAttributeId()

groupByAttributeId() : \Thelia\Model\AttributeAvQuery

Group by the attribute_id column

Returns

\Thelia\Model\AttributeAvQuery

groupByPosition()

groupByPosition() : \Thelia\Model\AttributeAvQuery

Group by the position column

Returns

\Thelia\Model\AttributeAvQuery

groupByCreatedAt()

groupByCreatedAt() : \Thelia\Model\AttributeAvQuery

Group by the created_at column

Returns

\Thelia\Model\AttributeAvQuery

groupByUpdatedAt()

groupByUpdatedAt() : \Thelia\Model\AttributeAvQuery

Group by the updated_at column

Returns

\Thelia\Model\AttributeAvQuery

leftJoin()

leftJoin(mixed $relation) : \Thelia\Model\AttributeAvQuery

Adds a LEFT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\AttributeAvQuery

rightJoin()

rightJoin(mixed $relation) : \Thelia\Model\AttributeAvQuery

Adds a RIGHT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\AttributeAvQuery

innerJoin()

innerJoin(mixed $relation) : \Thelia\Model\AttributeAvQuery

Adds a INNER JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\AttributeAvQuery

leftJoinAttribute()

leftJoinAttribute($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

rightJoinAttribute()

rightJoinAttribute($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

innerJoinAttribute()

innerJoinAttribute($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

leftJoinAttributeCombination()

leftJoinAttributeCombination($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

rightJoinAttributeCombination()

rightJoinAttributeCombination($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

innerJoinAttributeCombination()

innerJoinAttributeCombination($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

leftJoinAttributeAvI18n()

leftJoinAttributeAvI18n($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

rightJoinAttributeAvI18n()

rightJoinAttributeAvI18n($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

innerJoinAttributeAvI18n()

innerJoinAttributeAvI18n($relationAlias =) : \Thelia\Model\AttributeAvQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\AttributeAvQuery

findOne()

findOne(ConnectionInterface $con) : \Thelia\Model\AttributeAv

Return the first ChildAttributeAv matching the query

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\AttributeAv

findOneOrCreate()

findOneOrCreate(ConnectionInterface $con) : \Thelia\Model\AttributeAv

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

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\AttributeAv

findOneById()

findOneById(int $id) : \Thelia\Model\AttributeAv

Return the first ChildAttributeAv filtered by the id column

Parameters

int $id

Returns

\Thelia\Model\AttributeAv

findOneByAttributeId()

findOneByAttributeId(int $attribute_id) : \Thelia\Model\AttributeAv

Return the first ChildAttributeAv filtered by the attribute_id column

Parameters

int $attribute_id

Returns

\Thelia\Model\AttributeAv

findOneByPosition()

findOneByPosition(int $position) : \Thelia\Model\AttributeAv

Return the first ChildAttributeAv filtered by the position column

Parameters

int $position

Returns

\Thelia\Model\AttributeAv

findOneByCreatedAt()

findOneByCreatedAt(string $created_at) : \Thelia\Model\AttributeAv

Return the first ChildAttributeAv filtered by the created_at column

Parameters

string $created_at

Returns

\Thelia\Model\AttributeAv

findOneByUpdatedAt()

findOneByUpdatedAt(string $updated_at) : \Thelia\Model\AttributeAv

Return the first ChildAttributeAv filtered by the updated_at column

Parameters

string $updated_at

Returns

\Thelia\Model\AttributeAv

findById()

findById(int $id) : array

Return ChildAttributeAv objects filtered by the id column

Parameters

int $id

Returns

array

findByAttributeId()

findByAttributeId(int $attribute_id) : array

Return ChildAttributeAv objects filtered by the attribute_id column

Parameters

int $attribute_id

Returns

array

findByPosition()

findByPosition(int $position) : array

Return ChildAttributeAv objects filtered by the position column

Parameters

int $position

Returns

array

findByCreatedAt()

findByCreatedAt(string $created_at) : array

Return ChildAttributeAv objects filtered by the created_at column

Parameters

string $created_at

Returns

array

findByUpdatedAt()

findByUpdatedAt(string $updated_at) : array

Return ChildAttributeAv objects filtered by the updated_at column

Parameters

string $updated_at

Returns

array

findPkSimple()

findPkSimple(mixed $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\AttributeAv

Find object by primary key using raw SQL to go fast.

Bypass doSelect() and the object formatter by using generated code.

Parameters

mixed $key

Primary key to use for the query

\Propel\Runtime\Connection\ConnectionInterface $con

A connection object

Returns

\Thelia\Model\AttributeAv

A model object, or null if the key is not found

findPkComplex()

findPkComplex(mixed $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\AttributeAv|array|mixed

Find object by primary key.

Parameters

mixed $key

Primary key to use for the query

\Propel\Runtime\Connection\ConnectionInterface $con

A connection object

Returns

\Thelia\Model\AttributeAv|array|mixed —

the result, formatted by the current formatter