\Thelia\Model\BaseTaxRuleCountryQuery

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

Summary

Methods
Properties
Constants
__construct()
create()
findPk()
findPks()
filterByPrimaryKey()
filterByPrimaryKeys()
filterById()
filterByTaxRuleId()
filterByCountryId()
filterByTaxId()
filterByNone()
filterByCreatedAt()
filterByUpdatedAt()
filterByTax()
joinTax()
useTaxQuery()
filterByTaxRule()
joinTaxRule()
useTaxRuleQuery()
filterByCountry()
joinCountry()
useCountryQuery()
prune()
doDeleteAll()
delete()
recentlyUpdated()
recentlyCreated()
lastUpdatedFirst()
firstUpdatedFirst()
lastCreatedFirst()
firstCreatedFirst()
orderById()
orderByTaxRuleId()
orderByCountryId()
orderByTaxId()
orderByNone()
orderByCreatedAt()
orderByUpdatedAt()
groupById()
groupByTaxRuleId()
groupByCountryId()
groupByTaxId()
groupByNone()
groupByCreatedAt()
groupByUpdatedAt()
leftJoin()
rightJoin()
innerJoin()
leftJoinTax()
rightJoinTax()
innerJoinTax()
leftJoinTaxRule()
rightJoinTaxRule()
innerJoinTaxRule()
leftJoinCountry()
rightJoinCountry()
innerJoinCountry()
findOne()
findOneOrCreate()
findOneById()
findOneByTaxRuleId()
findOneByCountryId()
findOneByTaxId()
findOneByNone()
findOneByCreatedAt()
findOneByUpdatedAt()
findById()
findByTaxRuleId()
findByCountryId()
findByTaxId()
findByNone()
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\TaxRuleCountryQuery 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\TaxRuleCountryQuery

Returns a new ChildTaxRuleCountryQuery 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\TaxRuleCountryQuery

findPk()

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

Filter the query by primary key

Parameters

mixed $key

Primary key to use for the query

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

filterByPrimaryKeys()

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

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

The current query, for fluid interface

filterById()

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

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

The current query, for fluid interface

filterByTaxRuleId()

filterByTaxRuleId(mixed $taxRuleId, string $comparison) : \Thelia\Model\TaxRuleCountryQuery

Filter the query on the tax_rule_id column

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

Parameters

mixed $taxRuleId

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

The current query, for fluid interface

filterByCountryId()

filterByCountryId(mixed $countryId, string $comparison) : \Thelia\Model\TaxRuleCountryQuery

Filter the query on the country_id column

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

Parameters

mixed $countryId

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

The current query, for fluid interface

filterByTaxId()

filterByTaxId(mixed $taxId, string $comparison) : \Thelia\Model\TaxRuleCountryQuery

Filter the query on the tax_id column

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

Parameters

mixed $taxId

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

The current query, for fluid interface

filterByNone()

filterByNone(mixed $none, string $comparison) : \Thelia\Model\TaxRuleCountryQuery

Filter the query on the none column

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

Parameters

mixed $none

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

The current query, for fluid interface

filterByCreatedAt()

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

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

The current query, for fluid interface

filterByUpdatedAt()

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

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

The current query, for fluid interface

filterByTax()

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

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

The current query, for fluid interface

joinTax()

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

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

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

filterByTaxRule()

filterByTaxRule(\Thelia\Model\TaxRule|\Propel\Runtime\Collection\ObjectCollection $taxRule, string $comparison) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

\Thelia\Model\TaxRule|\Propel\Runtime\Collection\ObjectCollection $taxRule

The related object(s) to use as filter

string $comparison

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

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

joinTaxRule()

joinTaxRule(string $relationAlias, string $joinType) : \Thelia\Model\TaxRuleCountryQuery

Adds a JOIN clause to the query using the TaxRule relation

Parameters

string $relationAlias

optional alias for the relation

string $joinType

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

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

useTaxRuleQuery()

useTaxRuleQuery(string $relationAlias, string $joinType) : \Thelia\Model\TaxRuleQuery

Use the TaxRule relation TaxRule 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\TaxRuleQuery

A secondary query class using the current class as primary query

filterByCountry()

filterByCountry(\Thelia\Model\Country|\Propel\Runtime\Collection\ObjectCollection $country, string $comparison) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

\Thelia\Model\Country|\Propel\Runtime\Collection\ObjectCollection $country

The related object(s) to use as filter

string $comparison

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

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

joinCountry()

joinCountry(string $relationAlias, string $joinType) : \Thelia\Model\TaxRuleCountryQuery

Adds a JOIN clause to the query using the Country relation

Parameters

string $relationAlias

optional alias for the relation

string $joinType

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

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

useCountryQuery()

useCountryQuery(string $relationAlias, string $joinType) : \Thelia\Model\CountryQuery

Use the Country relation Country 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\CountryQuery

A secondary query class using the current class as primary query

prune()

prune(\Thelia\Model\TaxRuleCountry $taxRuleCountry) : \Thelia\Model\TaxRuleCountryQuery

Exclude object from result

Parameters

\Thelia\Model\TaxRuleCountry $taxRuleCountry

Object to remove from the list of results

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

doDeleteAll()

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

Deletes all rows from the tax_rule_country 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 ChildTaxRuleCountry 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\TaxRuleCountryQuery

Filter by the latest updated

Parameters

int $nbDays

Maximum age of the latest update in days

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

recentlyCreated()

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

Filter by the latest created

Parameters

int $nbDays

Maximum age of in days

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

lastUpdatedFirst()

lastUpdatedFirst() : \Thelia\Model\TaxRuleCountryQuery

Order by update date desc

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

firstUpdatedFirst()

firstUpdatedFirst() : \Thelia\Model\TaxRuleCountryQuery

Order by update date asc

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

lastCreatedFirst()

lastCreatedFirst() : \Thelia\Model\TaxRuleCountryQuery

Order by create date desc

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

firstCreatedFirst()

firstCreatedFirst() : \Thelia\Model\TaxRuleCountryQuery

Order by create date asc

Returns

\Thelia\Model\TaxRuleCountryQuery

The current query, for fluid interface

orderById()

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

Order by the id column

Parameters

$order =

Returns

\Thelia\Model\TaxRuleCountryQuery

orderByTaxRuleId()

orderByTaxRuleId($order =) : \Thelia\Model\TaxRuleCountryQuery

Order by the tax_rule_id column

Parameters

$order =

Returns

\Thelia\Model\TaxRuleCountryQuery

orderByCountryId()

orderByCountryId($order =) : \Thelia\Model\TaxRuleCountryQuery

Order by the country_id column

Parameters

$order =

Returns

\Thelia\Model\TaxRuleCountryQuery

orderByTaxId()

orderByTaxId($order =) : \Thelia\Model\TaxRuleCountryQuery

Order by the tax_id column

Parameters

$order =

Returns

\Thelia\Model\TaxRuleCountryQuery

orderByNone()

orderByNone($order =) : \Thelia\Model\TaxRuleCountryQuery

Order by the none column

Parameters

$order =

Returns

\Thelia\Model\TaxRuleCountryQuery

orderByCreatedAt()

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

Order by the created_at column

Parameters

$order =

Returns

\Thelia\Model\TaxRuleCountryQuery

orderByUpdatedAt()

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

Order by the updated_at column

Parameters

$order =

Returns

\Thelia\Model\TaxRuleCountryQuery

groupById()

groupById() : \Thelia\Model\TaxRuleCountryQuery

Group by the id column

Returns

\Thelia\Model\TaxRuleCountryQuery

groupByTaxRuleId()

groupByTaxRuleId() : \Thelia\Model\TaxRuleCountryQuery

Group by the tax_rule_id column

Returns

\Thelia\Model\TaxRuleCountryQuery

groupByCountryId()

groupByCountryId() : \Thelia\Model\TaxRuleCountryQuery

Group by the country_id column

Returns

\Thelia\Model\TaxRuleCountryQuery

groupByTaxId()

groupByTaxId() : \Thelia\Model\TaxRuleCountryQuery

Group by the tax_id column

Returns

\Thelia\Model\TaxRuleCountryQuery

groupByNone()

groupByNone() : \Thelia\Model\TaxRuleCountryQuery

Group by the none column

Returns

\Thelia\Model\TaxRuleCountryQuery

groupByCreatedAt()

groupByCreatedAt() : \Thelia\Model\TaxRuleCountryQuery

Group by the created_at column

Returns

\Thelia\Model\TaxRuleCountryQuery

groupByUpdatedAt()

groupByUpdatedAt() : \Thelia\Model\TaxRuleCountryQuery

Group by the updated_at column

Returns

\Thelia\Model\TaxRuleCountryQuery

leftJoin()

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

Adds a LEFT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\TaxRuleCountryQuery

rightJoin()

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

Adds a RIGHT JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\TaxRuleCountryQuery

innerJoin()

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

Adds a INNER JOIN clause to the query

Parameters

mixed $relation

Returns

\Thelia\Model\TaxRuleCountryQuery

leftJoinTax()

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

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

rightJoinTax()

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

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

innerJoinTax()

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

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

leftJoinTaxRule()

leftJoinTaxRule($relationAlias =) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

rightJoinTaxRule()

rightJoinTaxRule($relationAlias =) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

innerJoinTaxRule()

innerJoinTaxRule($relationAlias =) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

leftJoinCountry()

leftJoinCountry($relationAlias =) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

rightJoinCountry()

rightJoinCountry($relationAlias =) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

innerJoinCountry()

innerJoinCountry($relationAlias =) : \Thelia\Model\TaxRuleCountryQuery

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

Parameters

$relationAlias =

Returns

\Thelia\Model\TaxRuleCountryQuery

findOne()

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

Return the first ChildTaxRuleCountry matching the query

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\TaxRuleCountry

findOneOrCreate()

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

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

Parameters

ConnectionInterface $con

Returns

\Thelia\Model\TaxRuleCountry

findOneById()

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

Return the first ChildTaxRuleCountry filtered by the id column

Parameters

int $id

Returns

\Thelia\Model\TaxRuleCountry

findOneByTaxRuleId()

findOneByTaxRuleId(int $tax_rule_id) : \Thelia\Model\TaxRuleCountry

Return the first ChildTaxRuleCountry filtered by the tax_rule_id column

Parameters

int $tax_rule_id

Returns

\Thelia\Model\TaxRuleCountry

findOneByCountryId()

findOneByCountryId(int $country_id) : \Thelia\Model\TaxRuleCountry

Return the first ChildTaxRuleCountry filtered by the country_id column

Parameters

int $country_id

Returns

\Thelia\Model\TaxRuleCountry

findOneByTaxId()

findOneByTaxId(int $tax_id) : \Thelia\Model\TaxRuleCountry

Return the first ChildTaxRuleCountry filtered by the tax_id column

Parameters

int $tax_id

Returns

\Thelia\Model\TaxRuleCountry

findOneByNone()

findOneByNone(int $none) : \Thelia\Model\TaxRuleCountry

Return the first ChildTaxRuleCountry filtered by the none column

Parameters

int $none

Returns

\Thelia\Model\TaxRuleCountry

findOneByCreatedAt()

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

Return the first ChildTaxRuleCountry filtered by the created_at column

Parameters

string $created_at

Returns

\Thelia\Model\TaxRuleCountry

findOneByUpdatedAt()

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

Return the first ChildTaxRuleCountry filtered by the updated_at column

Parameters

string $updated_at

Returns

\Thelia\Model\TaxRuleCountry

findById()

findById(int $id) : array

Return ChildTaxRuleCountry objects filtered by the id column

Parameters

int $id

Returns

array

findByTaxRuleId()

findByTaxRuleId(int $tax_rule_id) : array

Return ChildTaxRuleCountry objects filtered by the tax_rule_id column

Parameters

int $tax_rule_id

Returns

array

findByCountryId()

findByCountryId(int $country_id) : array

Return ChildTaxRuleCountry objects filtered by the country_id column

Parameters

int $country_id

Returns

array

findByTaxId()

findByTaxId(int $tax_id) : array

Return ChildTaxRuleCountry objects filtered by the tax_id column

Parameters

int $tax_id

Returns

array

findByNone()

findByNone(int $none) : array

Return ChildTaxRuleCountry objects filtered by the none column

Parameters

int $none

Returns

array

findByCreatedAt()

findByCreatedAt(string $created_at) : array

Return ChildTaxRuleCountry objects filtered by the created_at column

Parameters

string $created_at

Returns

array

findByUpdatedAt()

findByUpdatedAt(string $updated_at) : array

Return ChildTaxRuleCountry objects filtered by the updated_at column

Parameters

string $updated_at

Returns

array

findPkSimple()

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

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

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

findPkComplex()

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

the result, formatted by the current formatter