\Thelia\ModelCurrencyI18nQuery

Skeleton subclass for performing query and update operations on the 'currency_i18n' 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()
filterByLocale()
filterByName()
filterByCurrency()
joinCurrency()
useCurrencyQuery()
prune()
doDeleteAll()
delete()
orderById()
orderByLocale()
orderByName()
groupById()
groupByLocale()
groupByName()
leftJoin()
rightJoin()
innerJoin()
leftJoinCurrency()
rightJoinCurrency()
innerJoinCurrency()
findOne()
findOneOrCreate()
findOneById()
findOneByLocale()
findOneByName()
findById()
findByLocale()
findByName()
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\CurrencyI18nQuery 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\CurrencyI18nQuery

Returns a new ChildCurrencyI18nQuery 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\CurrencyI18nQuery

findPk()

findPk( $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\CurrencyI18n|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(array(12, 34), $con);

Parameters

$key
\Propel\Runtime\Connection\ConnectionInterface $con

an optional connection object

Returns

\Thelia\Model\CurrencyI18n|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(array(12, 56), array(832, 123), array(123, 456)), $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\CurrencyI18nQuery

Filter the query by primary key

Parameters

mixed $key

Primary key to use for the query

Returns

\Thelia\Model\CurrencyI18nQuery

The current query, for fluid interface

filterByPrimaryKeys()

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

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\CurrencyI18nQuery

The current query, for fluid interface

filterById()

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

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\CurrencyI18nQuery

The current query, for fluid interface

filterByLocale()

filterByLocale(string $locale, string $comparison) : \Thelia\Model\CurrencyI18nQuery

Filter the query on the locale column

Example usage: $query->filterByLocale('fooValue'); // WHERE locale = 'fooValue' $query->filterByLocale('%fooValue%'); // WHERE locale LIKE '%fooValue%'

Parameters

string $locale

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

Returns

\Thelia\Model\CurrencyI18nQuery

The current query, for fluid interface

filterByName()

filterByName(string $name, string $comparison) : \Thelia\Model\CurrencyI18nQuery

Filter the query on the name column

Example usage: $query->filterByName('fooValue'); // WHERE name = 'fooValue' $query->filterByName('%fooValue%'); // WHERE name LIKE '%fooValue%'

Parameters

string $name

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

Returns

\Thelia\Model\CurrencyI18nQuery

The current query, for fluid interface

filterByCurrency()

filterByCurrency(\Thelia\Model\Currency|\Propel\Runtime\Collection\ObjectCollection $currency, string $comparison) : \Thelia\Model\CurrencyI18nQuery

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

Parameters

\Thelia\Model\Currency|\Propel\Runtime\Collection\ObjectCollection $currency

The related object(s) to use as filter

string $comparison

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

Returns

\Thelia\Model\CurrencyI18nQuery

The current query, for fluid interface

joinCurrency()

joinCurrency(string $relationAlias, string $joinType) : \Thelia\Model\CurrencyI18nQuery

Adds a JOIN clause to the query using the Currency relation

Parameters

string $relationAlias

optional alias for the relation

string $joinType

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

Returns

\Thelia\Model\CurrencyI18nQuery

The current query, for fluid interface

useCurrencyQuery()

useCurrencyQuery(string $relationAlias, string $joinType) : \Thelia\Model\CurrencyQuery

Use the Currency relation Currency 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\CurrencyQuery

A secondary query class using the current class as primary query

prune()

prune(\Thelia\Model\CurrencyI18n $currencyI18n) : \Thelia\Model\CurrencyI18nQuery

Exclude object from result

Parameters

\Thelia\Model\CurrencyI18n $currencyI18n

Object to remove from the list of results

Returns

\Thelia\Model\CurrencyI18nQuery

The current query, for fluid interface

doDeleteAll()

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

Deletes all rows from the currency_i18n 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 ChildCurrencyI18n 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.

orderById()

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

Order by the id column

Parameters

$order =

Returns

\Thelia\Model\CurrencyI18nQuery

orderByLocale()

orderByLocale($order =) : \Thelia\Model\CurrencyI18nQuery

Order by the locale column

Parameters

$order =

Returns

\Thelia\Model\CurrencyI18nQuery

orderByName()

orderByName($order =) : \Thelia\Model\CurrencyI18nQuery

Order by the name column

Parameters

$order =

Returns

\Thelia\Model\CurrencyI18nQuery

groupById()

groupById() : \Thelia\Model\CurrencyI18nQuery

Group by the id column

Returns

\Thelia\Model\CurrencyI18nQuery

groupByLocale()

groupByLocale() : \Thelia\Model\CurrencyI18nQuery

Group by the locale column

Returns

\Thelia\Model\CurrencyI18nQuery

groupByName()

groupByName() : \Thelia\Model\CurrencyI18nQuery

Group by the name column

Returns

\Thelia\Model\CurrencyI18nQuery

leftJoin()

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

Adds a LEFT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\CurrencyI18nQuery

rightJoin()

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

Adds a RIGHT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\CurrencyI18nQuery

innerJoin()

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

Adds a INNER JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\CurrencyI18nQuery

leftJoinCurrency()

leftJoinCurrency($relationAlias =) : \Thelia\Model\CurrencyI18nQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\CurrencyI18nQuery

rightJoinCurrency()

rightJoinCurrency($relationAlias =) : \Thelia\Model\CurrencyI18nQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\CurrencyI18nQuery

innerJoinCurrency()

innerJoinCurrency($relationAlias =) : \Thelia\Model\CurrencyI18nQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\CurrencyI18nQuery

findOne()

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

Return the first ChildCurrencyI18n matching the query

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\CurrencyI18n

findOneOrCreate()

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

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

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\CurrencyI18n

findOneById()

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

Return the first ChildCurrencyI18n filtered by the id column

Parameters

int $id

Returns

\Thelia\Model\CurrencyI18n

findOneByLocale()

findOneByLocale(string $locale) : \Thelia\Model\CurrencyI18n

Return the first ChildCurrencyI18n filtered by the locale column

Parameters

string $locale

Returns

\Thelia\Model\CurrencyI18n

findOneByName()

findOneByName(string $name) : \Thelia\Model\CurrencyI18n

Return the first ChildCurrencyI18n filtered by the name column

Parameters

string $name

Returns

\Thelia\Model\CurrencyI18n

findById()

findById(int $id) : array

Return ChildCurrencyI18n objects filtered by the id column

Parameters

int $id

Returns

array

findByLocale()

findByLocale(string $locale) : array

Return ChildCurrencyI18n objects filtered by the locale column

Parameters

string $locale

Returns

array

findByName()

findByName(string $name) : array

Return ChildCurrencyI18n objects filtered by the name column

Parameters

string $name

Returns

array

findPkSimple()

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

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\CurrencyI18n

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

findPkComplex()

findPkComplex(mixed $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\CurrencyI18n|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\CurrencyI18n|array|mixed —

the result, formatted by the current formatter