CountryQuery
class CountryQuery extends ModelCriteria
Base class that represents a query for the 'country' table.
Methods
Initializes internal state of \Thelia\Model\Base\CountryQuery object.
Returns a new ChildCountryQuery object.
Find object by primary key.
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Filter the query by primary key
Filter the query by a list of primary keys
Filter the query on the id column
Filter the query on the visible column
Filter the query on the isocode column
Filter the query on the isoalpha2 column
Filter the query on the isoalpha3 column
Filter the query on the has_states column
Filter the query on the needzipcode column
Filter the query on the zipcodeformat column
Filter the query on the by_default column
Filter the query on the shop_country column
Filter the query on the created_at column
Filter the query on the updated_at column
Filter the query by a related \Thelia\Model\TaxRuleCountry object
Adds a JOIN clause to the query using the TaxRuleCountry relation
Use the TaxRuleCountry relation TaxRuleCountry object
Filter the query by a related \Thelia\Model\Address object
Adds a JOIN clause to the query using the Address relation
Use the Address relation Address object
Filter the query by a related \Thelia\Model\OrderAddress object
Adds a JOIN clause to the query using the OrderAddress relation
Use the OrderAddress relation OrderAddress object
Filter the query by a related \Thelia\Model\CouponCountry object
Adds a JOIN clause to the query using the CouponCountry relation
Use the CouponCountry relation CouponCountry object
Filter the query by a related \Thelia\Model\OrderCouponCountry object
Adds a JOIN clause to the query using the OrderCouponCountry relation
Use the OrderCouponCountry relation OrderCouponCountry object
Filter the query by a related \Thelia\Model\CountryArea object
Adds a JOIN clause to the query using the CountryArea relation
Use the CountryArea relation CountryArea object
Filter the query by a related \Thelia\Model\State object
Adds a JOIN clause to the query using the State relation
Use the State relation State object
Filter the query by a related \Thelia\Model\CountryI18n object
Adds a JOIN clause to the query using the CountryI18n relation
Use the CountryI18n relation CountryI18n object
Filter the query by a related Coupon object using the coupon_country table as cross reference
Filter the query by a related OrderCoupon object using the ordercouponcountry table as cross reference
Filter the query by a related Area object using the country_area table as cross reference
Deletes all rows from the country table.
Performs a DELETE on the database, given a ChildCountry or Criteria object OR a primary key value.
Filter by the latest updated
Filter by the latest created
Order by update date desc
Order by update date asc
Order by create date desc
Order by create date asc
Adds a JOIN clause to the query using the i18n relation
Adds a JOIN clause to the query and hydrates the related I18n object.
Use the I18n relation query object
Order by the id column
Order by the visible column
Order by the isocode column
Order by the isoalpha2 column
Order by the isoalpha3 column
Order by the has_states column
Order by the needzipcode column
Order by the zipcodeformat column
Order by the by_default column
Order by the shop_country column
Order by the created_at column
Order by the updated_at column
Group by the id column
Group by the visible column
Group by the isocode column
Group by the isoalpha2 column
Group by the isoalpha3 column
Group by the has_states column
Group by the needzipcode column
Group by the zipcodeformat column
Group by the by_default column
Group by the shop_country column
Group by the created_at column
Group by the updated_at column
Adds a LEFT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Adds a INNER JOIN clause to the query
Adds a LEFT JOIN clause to the query using the TaxRuleCountry relation
Adds a RIGHT JOIN clause to the query using the TaxRuleCountry relation
Adds a INNER JOIN clause to the query using the TaxRuleCountry relation
Adds a LEFT JOIN clause to the query using the Address relation
Adds a RIGHT JOIN clause to the query using the Address relation
Adds a INNER JOIN clause to the query using the Address relation
Adds a LEFT JOIN clause to the query using the OrderAddress relation
Adds a RIGHT JOIN clause to the query using the OrderAddress relation
Adds a INNER JOIN clause to the query using the OrderAddress relation
Adds a LEFT JOIN clause to the query using the CouponCountry relation
Adds a RIGHT JOIN clause to the query using the CouponCountry relation
Adds a INNER JOIN clause to the query using the CouponCountry relation
Adds a LEFT JOIN clause to the query using the OrderCouponCountry relation
Adds a RIGHT JOIN clause to the query using the OrderCouponCountry relation
Adds a INNER JOIN clause to the query using the OrderCouponCountry relation
Adds a LEFT JOIN clause to the query using the CountryArea relation
Adds a RIGHT JOIN clause to the query using the CountryArea relation
Adds a INNER JOIN clause to the query using the CountryArea relation
Adds a LEFT JOIN clause to the query using the State relation
Adds a RIGHT JOIN clause to the query using the State relation
Adds a INNER JOIN clause to the query using the State relation
Adds a LEFT JOIN clause to the query using the CountryI18n relation
Adds a RIGHT JOIN clause to the query using the CountryI18n relation
Adds a INNER JOIN clause to the query using the CountryI18n relation
Return the first ChildCountry matching the query
Return the first ChildCountry matching the query, or a new ChildCountry object populated from the query conditions when no match is found
Return the first ChildCountry filtered by the id column
Return the first ChildCountry filtered by the visible column
Return the first ChildCountry filtered by the isocode column
Return the first ChildCountry filtered by the isoalpha2 column
Return the first ChildCountry filtered by the isoalpha3 column
Return the first ChildCountry filtered by the has_states column
Return the first ChildCountry filtered by the needzipcode column
Return the first ChildCountry filtered by the zipcodeformat column
Return the first ChildCountry filtered by the by_default column
Return the first ChildCountry filtered by the shop_country column
Return the first ChildCountry filtered by the created_at column
Return the first ChildCountry filtered by the updated_at column
Return ChildCountry objects filtered by the id column
Return ChildCountry objects filtered by the visible column
Return ChildCountry objects filtered by the isocode column
Return ChildCountry objects filtered by the isoalpha2 column
Return ChildCountry objects filtered by the isoalpha3 column
Return ChildCountry objects filtered by the has_states column
Return ChildCountry objects filtered by the needzipcode column
Return ChildCountry objects filtered by the zipcodeformat column
Return ChildCountry objects filtered by the by_default column
Return ChildCountry objects filtered by the shop_country column
Return ChildCountry objects filtered by the created_at column
Return ChildCountry objects filtered by the updated_at column
Details
at line 127
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\Country',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\CountryQuery object.
at line 140
static
CountryQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildCountryQuery object.
at line 170
Country|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);
at line 252
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
at line 273
CountryQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
at line 286
CountryQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
at line 310
CountryQuery
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
at line 351
CountryQuery
filterByVisible(
mixed $visible = null,
string $comparison = null)
Filter the query on the visible column
Example usage:
$query->filterByVisible(1234); // WHERE visible = 1234
$query->filterByVisible(array(12, 34)); // WHERE visible IN (12, 34)
$query->filterByVisible(array('min' => 12)); // WHERE visible > 12
at line 389
CountryQuery
filterByIsocode(
string $isocode = null,
string $comparison = null)
Filter the query on the isocode column
Example usage:
$query->filterByIsocode('fooValue'); // WHERE isocode = 'fooValue'
$query->filterByIsocode('%fooValue%'); // WHERE isocode LIKE '%fooValue%'
at line 418
CountryQuery
filterByIsoalpha2(
string $isoalpha2 = null,
string $comparison = null)
Filter the query on the isoalpha2 column
Example usage:
$query->filterByIsoalpha2('fooValue'); // WHERE isoalpha2 = 'fooValue'
$query->filterByIsoalpha2('%fooValue%'); // WHERE isoalpha2 LIKE '%fooValue%'
at line 447
CountryQuery
filterByIsoalpha3(
string $isoalpha3 = null,
string $comparison = null)
Filter the query on the isoalpha3 column
Example usage:
$query->filterByIsoalpha3('fooValue'); // WHERE isoalpha3 = 'fooValue'
$query->filterByIsoalpha3('%fooValue%'); // WHERE isoalpha3 LIKE '%fooValue%'
at line 479
CountryQuery
filterByHasStates(
mixed $hasStates = null,
string $comparison = null)
Filter the query on the has_states column
Example usage:
$query->filterByHasStates(1234); // WHERE hasstates = 1234
$query->filterByHasStates(array(12, 34)); // WHERE hasstates IN (12, 34)
$query->filterByHasStates(array('min' => 12)); // WHERE has_states > 12
at line 520
CountryQuery
filterByNeedZipCode(
mixed $needZipCode = null,
string $comparison = null)
Filter the query on the needzipcode column
Example usage:
$query->filterByNeedZipCode(1234); // WHERE needzipcode = 1234
$query->filterByNeedZipCode(array(12, 34)); // WHERE needzipcode IN (12, 34)
$query->filterByNeedZipCode(array('min' => 12)); // WHERE needzipcode > 12
at line 558
CountryQuery
filterByZipCodeFormat(
string $zipCodeFormat = null,
string $comparison = null)
Filter the query on the zipcodeformat column
Example usage:
$query->filterByZipCodeFormat('fooValue'); // WHERE zipcodeformat = 'fooValue'
$query->filterByZipCodeFormat('%fooValue%'); // WHERE zipcodeformat LIKE '%fooValue%'
at line 590
CountryQuery
filterByByDefault(
mixed $byDefault = null,
string $comparison = null)
Filter the query on the by_default column
Example usage:
$query->filterByByDefault(1234); // WHERE bydefault = 1234
$query->filterByByDefault(array(12, 34)); // WHERE bydefault IN (12, 34)
$query->filterByByDefault(array('min' => 12)); // WHERE by_default > 12
at line 631
CountryQuery
filterByShopCountry(
boolean|string $shopCountry = null,
string $comparison = null)
Filter the query on the shop_country column
Example usage:
$query->filterByShopCountry(true); // WHERE shopcountry = true
$query->filterByShopCountry('yes'); // WHERE shopcountry = true
at line 660
CountryQuery
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'
at line 703
CountryQuery
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'
at line 734
CountryQuery
filterByTaxRuleCountry(
TaxRuleCountry|ObjectCollection $taxRuleCountry,
string $comparison = null)
Filter the query by a related \Thelia\Model\TaxRuleCountry object
at line 757
CountryQuery
joinTaxRuleCountry(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the TaxRuleCountry relation
at line 792
TaxRuleCountryQuery
useTaxRuleCountryQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the TaxRuleCountry relation TaxRuleCountry object
at line 807
CountryQuery
filterByAddress(
Address|ObjectCollection $address,
string $comparison = null)
Filter the query by a related \Thelia\Model\Address object
at line 830
CountryQuery
joinAddress(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Address relation
at line 865
AddressQuery
useAddressQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Address relation Address object
at line 880
CountryQuery
filterByOrderAddress(
OrderAddress|ObjectCollection $orderAddress,
string $comparison = null)
Filter the query by a related \Thelia\Model\OrderAddress object
at line 903
CountryQuery
joinOrderAddress(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderAddress relation
at line 938
OrderAddressQuery
useOrderAddressQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderAddress relation OrderAddress object
at line 953
CountryQuery
filterByCouponCountry(
CouponCountry|ObjectCollection $couponCountry,
string $comparison = null)
Filter the query by a related \Thelia\Model\CouponCountry object
at line 976
CountryQuery
joinCouponCountry(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CouponCountry relation
at line 1011
CouponCountryQuery
useCouponCountryQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CouponCountry relation CouponCountry object
at line 1026
CountryQuery
filterByOrderCouponCountry(
OrderCouponCountry|ObjectCollection $orderCouponCountry,
string $comparison = null)
Filter the query by a related \Thelia\Model\OrderCouponCountry object
at line 1049
CountryQuery
joinOrderCouponCountry(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderCouponCountry relation
at line 1084
OrderCouponCountryQuery
useOrderCouponCountryQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderCouponCountry relation OrderCouponCountry object
at line 1099
CountryQuery
filterByCountryArea(
CountryArea|ObjectCollection $countryArea,
string $comparison = null)
Filter the query by a related \Thelia\Model\CountryArea object
at line 1122
CountryQuery
joinCountryArea(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CountryArea relation
at line 1157
CountryAreaQuery
useCountryAreaQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CountryArea relation CountryArea object
at line 1172
CountryQuery
filterByState(
State|ObjectCollection $state,
string $comparison = null)
Filter the query by a related \Thelia\Model\State object
at line 1195
CountryQuery
joinState(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the State relation
at line 1230
StateQuery
useStateQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the State relation State object
at line 1245
CountryQuery
filterByCountryI18n(
CountryI18n|ObjectCollection $countryI18n,
string $comparison = null)
Filter the query by a related \Thelia\Model\CountryI18n object
at line 1268
CountryQuery
joinCountryI18n(
string $relationAlias = null,
string $joinType = 'LEFT JOIN')
Adds a JOIN clause to the query using the CountryI18n relation
at line 1303
CountryI18nQuery
useCountryI18nQuery(
string $relationAlias = null,
string $joinType = 'LEFT JOIN')
Use the CountryI18n relation CountryI18n object
at line 1319
CountryQuery
filterByCoupon(
Coupon $coupon,
string $comparison = Criteria::EQUAL)
Filter the query by a related Coupon object using the coupon_country table as cross reference
at line 1336
CountryQuery
filterByOrderCoupon(
OrderCoupon $orderCoupon,
string $comparison = Criteria::EQUAL)
Filter the query by a related OrderCoupon object using the ordercouponcountry table as cross reference
at line 1353
CountryQuery
filterByArea(
Area $area,
string $comparison = Criteria::EQUAL)
Filter the query by a related Area object using the country_area table as cross reference
at line 1368
CountryQuery
prune(
Country $country = null)
Exclude object from result
at line 1383
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the country table.
at line 1420
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildCountry or Criteria object OR a primary key value.
at line 1461
CountryQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
at line 1473
CountryQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
at line 1483
CountryQuery
lastUpdatedFirst()
Order by update date desc
at line 1493
CountryQuery
firstUpdatedFirst()
Order by update date asc
at line 1503
CountryQuery
lastCreatedFirst()
Order by create date desc
at line 1513
CountryQuery
firstCreatedFirst()
Order by create date asc
at line 1529
CountryQuery
joinI18n(
string $locale = 'en_US',
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the i18n relation
at line 1547
CountryQuery
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()
at line 1568
CountryI18nQuery
useI18nQuery(
string $locale = 'en_US',
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the I18n relation query object
at line 117
ChildCountryQuery
orderById($order = Criteria::ASC)
Order by the id column
at line 117
ChildCountryQuery
orderByVisible($order = Criteria::ASC)
Order by the visible column
at line 117
ChildCountryQuery
orderByIsocode($order = Criteria::ASC)
Order by the isocode column
at line 117
ChildCountryQuery
orderByIsoalpha2($order = Criteria::ASC)
Order by the isoalpha2 column
at line 117
ChildCountryQuery
orderByIsoalpha3($order = Criteria::ASC)
Order by the isoalpha3 column
at line 117
ChildCountryQuery
orderByHasStates($order = Criteria::ASC)
Order by the has_states column
at line 117
ChildCountryQuery
orderByNeedZipCode($order = Criteria::ASC)
Order by the needzipcode column
at line 117
ChildCountryQuery
orderByZipCodeFormat($order = Criteria::ASC)
Order by the zipcodeformat column
at line 117
ChildCountryQuery
orderByByDefault($order = Criteria::ASC)
Order by the by_default column
at line 117
ChildCountryQuery
orderByShopCountry($order = Criteria::ASC)
Order by the shop_country column
at line 117
ChildCountryQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
at line 117
ChildCountryQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
at line 117
ChildCountryQuery
groupById()
Group by the id column
at line 117
ChildCountryQuery
groupByVisible()
Group by the visible column
at line 117
ChildCountryQuery
groupByIsocode()
Group by the isocode column
at line 117
ChildCountryQuery
groupByIsoalpha2()
Group by the isoalpha2 column
at line 117
ChildCountryQuery
groupByIsoalpha3()
Group by the isoalpha3 column
at line 117
ChildCountryQuery
groupByHasStates()
Group by the has_states column
at line 117
ChildCountryQuery
groupByNeedZipCode()
Group by the needzipcode column
at line 117
ChildCountryQuery
groupByZipCodeFormat()
Group by the zipcodeformat column
at line 117
ChildCountryQuery
groupByByDefault()
Group by the by_default column
at line 117
ChildCountryQuery
groupByShopCountry()
Group by the shop_country column
at line 117
ChildCountryQuery
groupByCreatedAt()
Group by the created_at column
at line 117
ChildCountryQuery
groupByUpdatedAt()
Group by the updated_at column
at line 117
ChildCountryQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
at line 117
ChildCountryQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
at line 117
ChildCountryQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
at line 117
ChildCountryQuery
leftJoinTaxRuleCountry($relationAlias = null)
Adds a LEFT JOIN clause to the query using the TaxRuleCountry relation
at line 117
ChildCountryQuery
rightJoinTaxRuleCountry($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the TaxRuleCountry relation
at line 117
ChildCountryQuery
innerJoinTaxRuleCountry($relationAlias = null)
Adds a INNER JOIN clause to the query using the TaxRuleCountry relation
at line 117
ChildCountryQuery
leftJoinAddress($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Address relation
at line 117
ChildCountryQuery
rightJoinAddress($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Address relation
at line 117
ChildCountryQuery
innerJoinAddress($relationAlias = null)
Adds a INNER JOIN clause to the query using the Address relation
at line 117
ChildCountryQuery
leftJoinOrderAddress($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderAddress relation
at line 117
ChildCountryQuery
rightJoinOrderAddress($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderAddress relation
at line 117
ChildCountryQuery
innerJoinOrderAddress($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderAddress relation
at line 117
ChildCountryQuery
leftJoinCouponCountry($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CouponCountry relation
at line 117
ChildCountryQuery
rightJoinCouponCountry($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CouponCountry relation
at line 117
ChildCountryQuery
innerJoinCouponCountry($relationAlias = null)
Adds a INNER JOIN clause to the query using the CouponCountry relation
at line 117
ChildCountryQuery
leftJoinOrderCouponCountry($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderCouponCountry relation
at line 117
ChildCountryQuery
rightJoinOrderCouponCountry($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderCouponCountry relation
at line 117
ChildCountryQuery
innerJoinOrderCouponCountry($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderCouponCountry relation
at line 117
ChildCountryQuery
leftJoinCountryArea($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CountryArea relation
at line 117
ChildCountryQuery
rightJoinCountryArea($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CountryArea relation
at line 117
ChildCountryQuery
innerJoinCountryArea($relationAlias = null)
Adds a INNER JOIN clause to the query using the CountryArea relation
at line 117
ChildCountryQuery
leftJoinState($relationAlias = null)
Adds a LEFT JOIN clause to the query using the State relation
at line 117
ChildCountryQuery
rightJoinState($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the State relation
at line 117
ChildCountryQuery
innerJoinState($relationAlias = null)
Adds a INNER JOIN clause to the query using the State relation
at line 117
ChildCountryQuery
leftJoinCountryI18n($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CountryI18n relation
at line 117
ChildCountryQuery
rightJoinCountryI18n($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CountryI18n relation
at line 117
ChildCountryQuery
innerJoinCountryI18n($relationAlias = null)
Adds a INNER JOIN clause to the query using the CountryI18n relation
at line 117
ChildCountry
findOne(
ConnectionInterface $con = null)
Return the first ChildCountry matching the query
at line 117
ChildCountry
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildCountry matching the query, or a new ChildCountry object populated from the query conditions when no match is found
at line 117
ChildCountry
findOneById(
int $id)
Return the first ChildCountry filtered by the id column
at line 117
ChildCountry
findOneByVisible(
int $visible)
Return the first ChildCountry filtered by the visible column
at line 117
ChildCountry
findOneByIsocode(
string $isocode)
Return the first ChildCountry filtered by the isocode column
at line 117
ChildCountry
findOneByIsoalpha2(
string $isoalpha2)
Return the first ChildCountry filtered by the isoalpha2 column
at line 117
ChildCountry
findOneByIsoalpha3(
string $isoalpha3)
Return the first ChildCountry filtered by the isoalpha3 column
at line 117
ChildCountry
findOneByHasStates(
int $has_states)
Return the first ChildCountry filtered by the has_states column
at line 117
ChildCountry
findOneByNeedZipCode(
int $need_zip_code)
Return the first ChildCountry filtered by the needzipcode column
at line 117
ChildCountry
findOneByZipCodeFormat(
string $zip_code_format)
Return the first ChildCountry filtered by the zipcodeformat column
at line 117
ChildCountry
findOneByByDefault(
int $by_default)
Return the first ChildCountry filtered by the by_default column
at line 117
ChildCountry
findOneByShopCountry(
boolean $shop_country)
Return the first ChildCountry filtered by the shop_country column
at line 117
ChildCountry
findOneByCreatedAt(
string $created_at)
Return the first ChildCountry filtered by the created_at column
at line 117
ChildCountry
findOneByUpdatedAt(
string $updated_at)
Return the first ChildCountry filtered by the updated_at column
at line 117
array
findById(
int $id)
Return ChildCountry objects filtered by the id column
at line 117
array
findByVisible(
int $visible)
Return ChildCountry objects filtered by the visible column
at line 117
array
findByIsocode(
string $isocode)
Return ChildCountry objects filtered by the isocode column
at line 117
array
findByIsoalpha2(
string $isoalpha2)
Return ChildCountry objects filtered by the isoalpha2 column
at line 117
array
findByIsoalpha3(
string $isoalpha3)
Return ChildCountry objects filtered by the isoalpha3 column
at line 117
array
findByHasStates(
int $has_states)
Return ChildCountry objects filtered by the has_states column
at line 117
array
findByNeedZipCode(
int $need_zip_code)
Return ChildCountry objects filtered by the needzipcode column
at line 117
array
findByZipCodeFormat(
string $zip_code_format)
Return ChildCountry objects filtered by the zipcodeformat column
at line 117
array
findByByDefault(
int $by_default)
Return ChildCountry objects filtered by the by_default column
at line 117
array
findByShopCountry(
boolean $shop_country)
Return ChildCountry objects filtered by the shop_country column
at line 117
array
findByCreatedAt(
string $created_at)
Return ChildCountry objects filtered by the created_at column
at line 117
array
findByUpdatedAt(
string $updated_at)
Return ChildCountry objects filtered by the updated_at column