\Thelia\ModelTaxI18nQuery

Skeleton subclass for performing query and update operations on the 'tax_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()
filterByTitle()
filterByDescription()
filterByTax()
joinTax()
useTaxQuery()
prune()
doDeleteAll()
delete()
orderById()
orderByLocale()
orderByTitle()
orderByDescription()
groupById()
groupByLocale()
groupByTitle()
groupByDescription()
leftJoin()
rightJoin()
innerJoin()
leftJoinTax()
rightJoinTax()
innerJoinTax()
findOne()
findOneOrCreate()
findOneById()
findOneByLocale()
findOneByTitle()
findOneByDescription()
findById()
findByLocale()
findByTitle()
findByDescription()
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\TaxI18nQuery 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\TaxI18nQuery

Returns a new ChildTaxI18nQuery 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\TaxI18nQuery

findPk()

findPk( $key, \Propel\Runtime\Connection\ConnectionInterface $con) : \Thelia\Model\TaxI18n|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\TaxI18n|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\TaxI18nQuery

Filter the query by primary key

Parameters

mixed $key

Primary key to use for the query

Returns

\Thelia\Model\TaxI18nQuery

The current query, for fluid interface

filterByPrimaryKeys()

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

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

The current query, for fluid interface

filterById()

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

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

The current query, for fluid interface

filterByLocale()

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

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

The current query, for fluid interface

filterByTitle()

filterByTitle(string $title, string $comparison) : \Thelia\Model\TaxI18nQuery

Filter the query on the title column

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

Parameters

string $title

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

The current query, for fluid interface

filterByDescription()

filterByDescription(string $description, string $comparison) : \Thelia\Model\TaxI18nQuery

Filter the query on the description column

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

Parameters

string $description

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

The current query, for fluid interface

filterByTax()

filterByTax(\Thelia\Model\Tax|\Propel\Runtime\Collection\ObjectCollection $tax, string $comparison) : \Thelia\Model\TaxI18nQuery

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

Parameters

\Thelia\Model\Tax|\Propel\Runtime\Collection\ObjectCollection $tax

The related object(s) to use as filter

string $comparison

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

Returns

\Thelia\Model\TaxI18nQuery

The current query, for fluid interface

joinTax()

joinTax(string $relationAlias, string $joinType) : \Thelia\Model\TaxI18nQuery

Adds a JOIN clause to the query using the Tax relation

Parameters

string $relationAlias

optional alias for the relation

string $joinType

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

Returns

\Thelia\Model\TaxI18nQuery

The current query, for fluid interface

useTaxQuery()

useTaxQuery(string $relationAlias, string $joinType) : \Thelia\Model\TaxQuery

Use the Tax relation Tax 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\TaxQuery

A secondary query class using the current class as primary query

prune()

prune(\Thelia\Model\TaxI18n $taxI18n) : \Thelia\Model\TaxI18nQuery

Exclude object from result

Parameters

\Thelia\Model\TaxI18n $taxI18n

Object to remove from the list of results

Returns

\Thelia\Model\TaxI18nQuery

The current query, for fluid interface

doDeleteAll()

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

Deletes all rows from the tax_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 ChildTaxI18n 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\TaxI18nQuery

Order by the id column

Parameters

$order =

Returns

\Thelia\Model\TaxI18nQuery

orderByLocale()

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

Order by the locale column

Parameters

$order =

Returns

\Thelia\Model\TaxI18nQuery

orderByTitle()

orderByTitle($order =) : \Thelia\Model\TaxI18nQuery

Order by the title column

Parameters

$order =

Returns

\Thelia\Model\TaxI18nQuery

orderByDescription()

orderByDescription($order =) : \Thelia\Model\TaxI18nQuery

Order by the description column

Parameters

$order =

Returns

\Thelia\Model\TaxI18nQuery

groupById()

groupById() : \Thelia\Model\TaxI18nQuery

Group by the id column

Returns

\Thelia\Model\TaxI18nQuery

groupByLocale()

groupByLocale() : \Thelia\Model\TaxI18nQuery

Group by the locale column

Returns

\Thelia\Model\TaxI18nQuery

groupByTitle()

groupByTitle() : \Thelia\Model\TaxI18nQuery

Group by the title column

Returns

\Thelia\Model\TaxI18nQuery

groupByDescription()

groupByDescription() : \Thelia\Model\TaxI18nQuery

Group by the description column

Returns

\Thelia\Model\TaxI18nQuery

leftJoin()

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

Adds a LEFT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\TaxI18nQuery

rightJoin()

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

Adds a RIGHT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\TaxI18nQuery

innerJoin()

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

Adds a INNER JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\TaxI18nQuery

leftJoinTax()

leftJoinTax($relationAlias =) : \Thelia\Model\TaxI18nQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxI18nQuery

rightJoinTax()

rightJoinTax($relationAlias =) : \Thelia\Model\TaxI18nQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxI18nQuery

innerJoinTax()

innerJoinTax($relationAlias =) : \Thelia\Model\TaxI18nQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxI18nQuery

findOne()

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

Return the first ChildTaxI18n matching the query

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\TaxI18n

findOneOrCreate()

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

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

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\TaxI18n

findOneById()

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

Return the first ChildTaxI18n filtered by the id column

Parameters

int $id

Returns

\Thelia\Model\TaxI18n

findOneByLocale()

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

Return the first ChildTaxI18n filtered by the locale column

Parameters

string $locale

Returns

\Thelia\Model\TaxI18n

findOneByTitle()

findOneByTitle(string $title) : \Thelia\Model\TaxI18n

Return the first ChildTaxI18n filtered by the title column

Parameters

string $title

Returns

\Thelia\Model\TaxI18n

findOneByDescription()

findOneByDescription(string $description) : \Thelia\Model\TaxI18n

Return the first ChildTaxI18n filtered by the description column

Parameters

string $description

Returns

\Thelia\Model\TaxI18n

findById()

findById(int $id) : array

Return ChildTaxI18n objects filtered by the id column

Parameters

int $id

Returns

array

findByLocale()

findByLocale(string $locale) : array

Return ChildTaxI18n objects filtered by the locale column

Parameters

string $locale

Returns

array

findByTitle()

findByTitle(string $title) : array

Return ChildTaxI18n objects filtered by the title column

Parameters

string $title

Returns

array

findByDescription()

findByDescription(string $description) : array

Return ChildTaxI18n objects filtered by the description column

Parameters

string $description

Returns

array

findPkSimple()

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

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

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

findPkComplex()

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

the result, formatted by the current formatter