class AddressQuery extends ModelCriteria

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

Methods

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\Address', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\AddressQuery object.

static  AddressQuery
create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildAddressQuery object.

Address|array|mixed
findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

ObjectCollection|array|mixed
findPks( array $keys, ConnectionInterface $con = null)

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

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

filterByLabel( string $label = null, string $comparison = null)

Filter the query on the label column

filterByCustomerId( mixed $customerId = null, string $comparison = null)

Filter the query on the customer_id column

filterByTitleId( mixed $titleId = null, string $comparison = null)

Filter the query on the title_id column

filterByCompany( string $company = null, string $comparison = null)

Filter the query on the company column

filterByFirstname( string $firstname = null, string $comparison = null)

Filter the query on the firstname column

filterByLastname( string $lastname = null, string $comparison = null)

Filter the query on the lastname column

filterByAddress1( string $address1 = null, string $comparison = null)

Filter the query on the address1 column

filterByAddress2( string $address2 = null, string $comparison = null)

Filter the query on the address2 column

filterByAddress3( string $address3 = null, string $comparison = null)

Filter the query on the address3 column

filterByZipcode( string $zipcode = null, string $comparison = null)

Filter the query on the zipcode column

filterByCity( string $city = null, string $comparison = null)

Filter the query on the city column

filterByCountryId( mixed $countryId = null, string $comparison = null)

Filter the query on the country_id column

filterByStateId( mixed $stateId = null, string $comparison = null)

Filter the query on the state_id column

filterByPhone( string $phone = null, string $comparison = null)

Filter the query on the phone column

filterByCellphone( string $cellphone = null, string $comparison = null)

Filter the query on the cellphone column

filterByIsDefault( mixed $isDefault = null, string $comparison = null)

Filter the query on the is_default column

filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

filterByCustomer( Customer|ObjectCollection $customer, string $comparison = null)

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

joinCustomer( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Customer relation

useCustomerQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Customer relation Customer object

filterByCustomerTitle( CustomerTitle|ObjectCollection $customerTitle, string $comparison = null)

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

joinCustomerTitle( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the CustomerTitle relation

useCustomerTitleQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the CustomerTitle relation CustomerTitle object

filterByCountry( Country|ObjectCollection $country, string $comparison = null)

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

joinCountry( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Country relation

useCountryQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Country relation Country object

filterByState( State|ObjectCollection $state, string $comparison = null)

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

joinState( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the State relation

useStateQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the State relation State object

filterByCartRelatedByAddressDeliveryId( Cart|ObjectCollection $cart, string $comparison = null)

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

joinCartRelatedByAddressDeliveryId( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the CartRelatedByAddressDeliveryId relation

useCartRelatedByAddressDeliveryIdQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the CartRelatedByAddressDeliveryId relation Cart object

filterByCartRelatedByAddressInvoiceId( Cart|ObjectCollection $cart, string $comparison = null)

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

joinCartRelatedByAddressInvoiceId( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the CartRelatedByAddressInvoiceId relation

useCartRelatedByAddressInvoiceIdQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the CartRelatedByAddressInvoiceId relation Cart object

prune( Address $address = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the address table.

int
delete( ConnectionInterface $con = null)

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

recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

recentlyCreated( int $nbDays = 7)

Filter by the latest created

lastUpdatedFirst()

Order by update date desc

firstUpdatedFirst()

Order by update date asc

lastCreatedFirst()

Order by create date desc

firstCreatedFirst()

Order by create date asc

ChildAddressQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildAddressQuery
orderByLabel($order = Criteria::ASC)

Order by the label column

ChildAddressQuery
orderByCustomerId($order = Criteria::ASC)

Order by the customer_id column

ChildAddressQuery
orderByTitleId($order = Criteria::ASC)

Order by the title_id column

ChildAddressQuery
orderByCompany($order = Criteria::ASC)

Order by the company column

ChildAddressQuery
orderByFirstname($order = Criteria::ASC)

Order by the firstname column

ChildAddressQuery
orderByLastname($order = Criteria::ASC)

Order by the lastname column

ChildAddressQuery
orderByAddress1($order = Criteria::ASC)

Order by the address1 column

ChildAddressQuery
orderByAddress2($order = Criteria::ASC)

Order by the address2 column

ChildAddressQuery
orderByAddress3($order = Criteria::ASC)

Order by the address3 column

ChildAddressQuery
orderByZipcode($order = Criteria::ASC)

Order by the zipcode column

ChildAddressQuery
orderByCity($order = Criteria::ASC)

Order by the city column

ChildAddressQuery
orderByCountryId($order = Criteria::ASC)

Order by the country_id column

ChildAddressQuery
orderByStateId($order = Criteria::ASC)

Order by the state_id column

ChildAddressQuery
orderByPhone($order = Criteria::ASC)

Order by the phone column

ChildAddressQuery
orderByCellphone($order = Criteria::ASC)

Order by the cellphone column

ChildAddressQuery
orderByIsDefault($order = Criteria::ASC)

Order by the is_default column

ChildAddressQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildAddressQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildAddressQuery
groupById()

Group by the id column

ChildAddressQuery
groupByLabel()

Group by the label column

ChildAddressQuery
groupByCustomerId()

Group by the customer_id column

ChildAddressQuery
groupByTitleId()

Group by the title_id column

ChildAddressQuery
groupByCompany()

Group by the company column

ChildAddressQuery
groupByFirstname()

Group by the firstname column

ChildAddressQuery
groupByLastname()

Group by the lastname column

ChildAddressQuery
groupByAddress1()

Group by the address1 column

ChildAddressQuery
groupByAddress2()

Group by the address2 column

ChildAddressQuery
groupByAddress3()

Group by the address3 column

ChildAddressQuery
groupByZipcode()

Group by the zipcode column

ChildAddressQuery
groupByCity()

Group by the city column

ChildAddressQuery
groupByCountryId()

Group by the country_id column

ChildAddressQuery
groupByStateId()

Group by the state_id column

ChildAddressQuery
groupByPhone()

Group by the phone column

ChildAddressQuery
groupByCellphone()

Group by the cellphone column

ChildAddressQuery
groupByIsDefault()

Group by the is_default column

ChildAddressQuery
groupByCreatedAt()

Group by the created_at column

ChildAddressQuery
groupByUpdatedAt()

Group by the updated_at column

ChildAddressQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildAddressQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildAddressQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildAddressQuery
leftJoinCustomer($relationAlias = null)

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

ChildAddressQuery
rightJoinCustomer($relationAlias = null)

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

ChildAddressQuery
innerJoinCustomer($relationAlias = null)

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

ChildAddressQuery
leftJoinCustomerTitle($relationAlias = null)

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

ChildAddressQuery
rightJoinCustomerTitle($relationAlias = null)

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

ChildAddressQuery
innerJoinCustomerTitle($relationAlias = null)

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

ChildAddressQuery
leftJoinCountry($relationAlias = null)

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

ChildAddressQuery
rightJoinCountry($relationAlias = null)

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

ChildAddressQuery
innerJoinCountry($relationAlias = null)

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

ChildAddressQuery
leftJoinState($relationAlias = null)

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

ChildAddressQuery
rightJoinState($relationAlias = null)

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

ChildAddressQuery
innerJoinState($relationAlias = null)

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

ChildAddressQuery
leftJoinCartRelatedByAddressDeliveryId($relationAlias = null)

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

ChildAddressQuery
rightJoinCartRelatedByAddressDeliveryId($relationAlias = null)

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

ChildAddressQuery
innerJoinCartRelatedByAddressDeliveryId($relationAlias = null)

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

ChildAddressQuery
leftJoinCartRelatedByAddressInvoiceId($relationAlias = null)

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

ChildAddressQuery
rightJoinCartRelatedByAddressInvoiceId($relationAlias = null)

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

ChildAddressQuery
innerJoinCartRelatedByAddressInvoiceId($relationAlias = null)

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

ChildAddress
findOne( ConnectionInterface $con = null)

Return the first ChildAddress matching the query

ChildAddress
findOneOrCreate( ConnectionInterface $con = null)

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

ChildAddress
findOneById( int $id)

Return the first ChildAddress filtered by the id column

ChildAddress
findOneByLabel( string $label)

Return the first ChildAddress filtered by the label column

ChildAddress
findOneByCustomerId( int $customer_id)

Return the first ChildAddress filtered by the customer_id column

ChildAddress
findOneByTitleId( int $title_id)

Return the first ChildAddress filtered by the title_id column

ChildAddress
findOneByCompany( string $company)

Return the first ChildAddress filtered by the company column

ChildAddress
findOneByFirstname( string $firstname)

Return the first ChildAddress filtered by the firstname column

ChildAddress
findOneByLastname( string $lastname)

Return the first ChildAddress filtered by the lastname column

ChildAddress
findOneByAddress1( string $address1)

Return the first ChildAddress filtered by the address1 column

ChildAddress
findOneByAddress2( string $address2)

Return the first ChildAddress filtered by the address2 column

ChildAddress
findOneByAddress3( string $address3)

Return the first ChildAddress filtered by the address3 column

ChildAddress
findOneByZipcode( string $zipcode)

Return the first ChildAddress filtered by the zipcode column

ChildAddress
findOneByCity( string $city)

Return the first ChildAddress filtered by the city column

ChildAddress
findOneByCountryId( int $country_id)

Return the first ChildAddress filtered by the country_id column

ChildAddress
findOneByStateId( int $state_id)

Return the first ChildAddress filtered by the state_id column

ChildAddress
findOneByPhone( string $phone)

Return the first ChildAddress filtered by the phone column

ChildAddress
findOneByCellphone( string $cellphone)

Return the first ChildAddress filtered by the cellphone column

ChildAddress
findOneByIsDefault( int $is_default)

Return the first ChildAddress filtered by the is_default column

ChildAddress
findOneByCreatedAt( string $created_at)

Return the first ChildAddress filtered by the created_at column

ChildAddress
findOneByUpdatedAt( string $updated_at)

Return the first ChildAddress filtered by the updated_at column

array
findById( int $id)

Return ChildAddress objects filtered by the id column

array
findByLabel( string $label)

Return ChildAddress objects filtered by the label column

array
findByCustomerId( int $customer_id)

Return ChildAddress objects filtered by the customer_id column

array
findByTitleId( int $title_id)

Return ChildAddress objects filtered by the title_id column

array
findByCompany( string $company)

Return ChildAddress objects filtered by the company column

array
findByFirstname( string $firstname)

Return ChildAddress objects filtered by the firstname column

array
findByLastname( string $lastname)

Return ChildAddress objects filtered by the lastname column

array
findByAddress1( string $address1)

Return ChildAddress objects filtered by the address1 column

array
findByAddress2( string $address2)

Return ChildAddress objects filtered by the address2 column

array
findByAddress3( string $address3)

Return ChildAddress objects filtered by the address3 column

array
findByZipcode( string $zipcode)

Return ChildAddress objects filtered by the zipcode column

array
findByCity( string $city)

Return ChildAddress objects filtered by the city column

array
findByCountryId( int $country_id)

Return ChildAddress objects filtered by the country_id column

array
findByStateId( int $state_id)

Return ChildAddress objects filtered by the state_id column

array
findByPhone( string $phone)

Return ChildAddress objects filtered by the phone column

array
findByCellphone( string $cellphone)

Return ChildAddress objects filtered by the cellphone column

array
findByIsDefault( int $is_default)

Return ChildAddress objects filtered by the is_default column

array
findByCreatedAt( string $created_at)

Return ChildAddress objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildAddress objects filtered by the updated_at column

Details

at line 146
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\Address', string $modelAlias = null)

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

at line 159
static AddressQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildAddressQuery object.

Parameters

string $modelAlias The alias of a model in the query
Criteria $criteria Optional Criteria to build the query from

Return Value

AddressQuery

at line 189
Address|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);

Parameters

mixed $key Primary key to use for the query
ConnectionInterface $con an optional connection object

Return Value

Address|array|mixed the result, formatted by the current formatter

at line 271
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

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

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

at line 292
AddressQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

AddressQuery The current query, for fluid interface

at line 305
AddressQuery filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

Parameters

array $keys The list of primary key to use for the query

Return Value

AddressQuery The current query, for fluid interface

at line 329
AddressQuery 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

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

Return Value

AddressQuery The current query, for fluid interface

at line 367
AddressQuery filterByLabel( string $label = null, string $comparison = null)

Filter the query on the label column

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

Parameters

string $label 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

Return Value

AddressQuery The current query, for fluid interface

at line 401
AddressQuery filterByCustomerId( mixed $customerId = null, string $comparison = null)

Filter the query on the customer_id column

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

Parameters

mixed $customerId 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

Return Value

AddressQuery The current query, for fluid interface

See also

filterByCustomer()

at line 444
AddressQuery filterByTitleId( mixed $titleId = null, string $comparison = null)

Filter the query on the title_id column

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

Parameters

mixed $titleId 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

Return Value

AddressQuery The current query, for fluid interface

See also

filterByCustomerTitle()

at line 482
AddressQuery filterByCompany( string $company = null, string $comparison = null)

Filter the query on the company column

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

Parameters

string $company 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

Return Value

AddressQuery The current query, for fluid interface

at line 511
AddressQuery filterByFirstname( string $firstname = null, string $comparison = null)

Filter the query on the firstname column

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

Parameters

string $firstname 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

Return Value

AddressQuery The current query, for fluid interface

at line 540
AddressQuery filterByLastname( string $lastname = null, string $comparison = null)

Filter the query on the lastname column

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

Parameters

string $lastname 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

Return Value

AddressQuery The current query, for fluid interface

at line 569
AddressQuery filterByAddress1( string $address1 = null, string $comparison = null)

Filter the query on the address1 column

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

Parameters

string $address1 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

Return Value

AddressQuery The current query, for fluid interface

at line 598
AddressQuery filterByAddress2( string $address2 = null, string $comparison = null)

Filter the query on the address2 column

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

Parameters

string $address2 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

Return Value

AddressQuery The current query, for fluid interface

at line 627
AddressQuery filterByAddress3( string $address3 = null, string $comparison = null)

Filter the query on the address3 column

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

Parameters

string $address3 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

Return Value

AddressQuery The current query, for fluid interface

at line 656
AddressQuery filterByZipcode( string $zipcode = null, string $comparison = null)

Filter the query on the zipcode column

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

Parameters

string $zipcode 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

Return Value

AddressQuery The current query, for fluid interface

at line 685
AddressQuery filterByCity( string $city = null, string $comparison = null)

Filter the query on the city column

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

Parameters

string $city 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

Return Value

AddressQuery The current query, for fluid interface

at line 719
AddressQuery filterByCountryId( mixed $countryId = null, string $comparison = null)

Filter the query on the country_id column

Example usage: $query->filterByCountryId(1234); // WHERE countryid = 1234 $query->filterByCountryId(array(12, 34)); // WHERE countryid 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

Return Value

AddressQuery The current query, for fluid interface

See also

filterByCountry()

at line 762
AddressQuery filterByStateId( mixed $stateId = null, string $comparison = null)

Filter the query on the state_id column

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

Parameters

mixed $stateId 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

Return Value

AddressQuery The current query, for fluid interface

See also

filterByState()

at line 800
AddressQuery filterByPhone( string $phone = null, string $comparison = null)

Filter the query on the phone column

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

Parameters

string $phone 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

Return Value

AddressQuery The current query, for fluid interface

at line 829
AddressQuery filterByCellphone( string $cellphone = null, string $comparison = null)

Filter the query on the cellphone column

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

Parameters

string $cellphone 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

Return Value

AddressQuery The current query, for fluid interface

at line 861
AddressQuery filterByIsDefault( mixed $isDefault = null, string $comparison = null)

Filter the query on the is_default column

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

Parameters

mixed $isDefault 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

Return Value

AddressQuery The current query, for fluid interface

at line 904
AddressQuery 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'

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

Return Value

AddressQuery The current query, for fluid interface

at line 947
AddressQuery 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'

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

Return Value

AddressQuery The current query, for fluid interface

at line 978
AddressQuery filterByCustomer( Customer|ObjectCollection $customer, string $comparison = null)

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

Parameters

Customer|ObjectCollection $customer The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

AddressQuery The current query, for fluid interface

at line 1003
AddressQuery joinCustomer( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Customer relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

AddressQuery The current query, for fluid interface

at line 1038
CustomerQuery useCustomerQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

Return Value

CustomerQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 1053
AddressQuery filterByCustomerTitle( CustomerTitle|ObjectCollection $customerTitle, string $comparison = null)

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

Parameters

CustomerTitle|ObjectCollection $customerTitle The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

AddressQuery The current query, for fluid interface

at line 1078
AddressQuery joinCustomerTitle( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the CustomerTitle relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

AddressQuery The current query, for fluid interface

at line 1113
CustomerTitleQuery useCustomerTitleQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

Return Value

CustomerTitleQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 1128
AddressQuery filterByCountry( Country|ObjectCollection $country, string $comparison = null)

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

Parameters

Country|ObjectCollection $country The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

AddressQuery The current query, for fluid interface

at line 1153
AddressQuery joinCountry( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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'

Return Value

AddressQuery The current query, for fluid interface

at line 1188
CountryQuery useCountryQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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'

Return Value

CountryQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 1203
AddressQuery filterByState( State|ObjectCollection $state, string $comparison = null)

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

Parameters

State|ObjectCollection $state The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

AddressQuery The current query, for fluid interface

at line 1228
AddressQuery joinState( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the State relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

AddressQuery The current query, for fluid interface

at line 1263
StateQuery useStateQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

Return Value

StateQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 1278
AddressQuery filterByCartRelatedByAddressDeliveryId( Cart|ObjectCollection $cart, string $comparison = null)

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

Parameters

Cart|ObjectCollection $cart the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

AddressQuery The current query, for fluid interface

at line 1301
AddressQuery joinCartRelatedByAddressDeliveryId( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the CartRelatedByAddressDeliveryId relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

AddressQuery The current query, for fluid interface

at line 1336
CartQuery useCartRelatedByAddressDeliveryIdQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

Return Value

CartQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 1351
AddressQuery filterByCartRelatedByAddressInvoiceId( Cart|ObjectCollection $cart, string $comparison = null)

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

Parameters

Cart|ObjectCollection $cart the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

AddressQuery The current query, for fluid interface

at line 1374
AddressQuery joinCartRelatedByAddressInvoiceId( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the CartRelatedByAddressInvoiceId relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

AddressQuery The current query, for fluid interface

at line 1409
CartQuery useCartRelatedByAddressInvoiceIdQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

Return Value

CartQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 1423
AddressQuery prune( Address $address = null)

Exclude object from result

Parameters

Address $address Object to remove from the list of results

Return Value

AddressQuery The current query, for fluid interface

at line 1438
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the address table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

at line 1475
int delete( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

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.

Exceptions

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

at line 1516
AddressQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

AddressQuery The current query, for fluid interface

at line 1528
AddressQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

AddressQuery The current query, for fluid interface

at line 1538
AddressQuery lastUpdatedFirst()

Order by update date desc

Return Value

AddressQuery The current query, for fluid interface

at line 1548
AddressQuery firstUpdatedFirst()

Order by update date asc

Return Value

AddressQuery The current query, for fluid interface

at line 1558
AddressQuery lastCreatedFirst()

Order by create date desc

Return Value

AddressQuery The current query, for fluid interface

at line 1568
AddressQuery firstCreatedFirst()

Order by create date asc

Return Value

AddressQuery The current query, for fluid interface

at line 136
ChildAddressQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByLabel($order = Criteria::ASC)

Order by the label column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByCustomerId($order = Criteria::ASC)

Order by the customer_id column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByTitleId($order = Criteria::ASC)

Order by the title_id column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByCompany($order = Criteria::ASC)

Order by the company column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByFirstname($order = Criteria::ASC)

Order by the firstname column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByLastname($order = Criteria::ASC)

Order by the lastname column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByAddress1($order = Criteria::ASC)

Order by the address1 column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByAddress2($order = Criteria::ASC)

Order by the address2 column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByAddress3($order = Criteria::ASC)

Order by the address3 column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByZipcode($order = Criteria::ASC)

Order by the zipcode column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByCity($order = Criteria::ASC)

Order by the city column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByCountryId($order = Criteria::ASC)

Order by the country_id column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByStateId($order = Criteria::ASC)

Order by the state_id column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByPhone($order = Criteria::ASC)

Order by the phone column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByCellphone($order = Criteria::ASC)

Order by the cellphone column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByIsDefault($order = Criteria::ASC)

Order by the is_default column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupById()

Group by the id column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByLabel()

Group by the label column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByCustomerId()

Group by the customer_id column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByTitleId()

Group by the title_id column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByCompany()

Group by the company column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByFirstname()

Group by the firstname column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByLastname()

Group by the lastname column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByAddress1()

Group by the address1 column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByAddress2()

Group by the address2 column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByAddress3()

Group by the address3 column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByZipcode()

Group by the zipcode column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByCity()

Group by the city column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByCountryId()

Group by the country_id column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByStateId()

Group by the state_id column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByPhone()

Group by the phone column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByCellphone()

Group by the cellphone column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByIsDefault()

Group by the is_default column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery leftJoinCustomer($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery rightJoinCustomer($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery innerJoinCustomer($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery leftJoinCustomerTitle($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery rightJoinCustomerTitle($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery innerJoinCustomerTitle($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery leftJoinCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery rightJoinCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery innerJoinCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery leftJoinState($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery rightJoinState($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery innerJoinState($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery leftJoinCartRelatedByAddressDeliveryId($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery rightJoinCartRelatedByAddressDeliveryId($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery innerJoinCartRelatedByAddressDeliveryId($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery leftJoinCartRelatedByAddressInvoiceId($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery rightJoinCartRelatedByAddressInvoiceId($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddressQuery innerJoinCartRelatedByAddressInvoiceId($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildAddressQuery

at line 136
ChildAddress findOne( ConnectionInterface $con = null)

Return the first ChildAddress matching the query

Parameters

ConnectionInterface $con

Return Value

ChildAddress

at line 136
ChildAddress findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildAddress

at line 136
ChildAddress findOneById( int $id)

Return the first ChildAddress filtered by the id column

Parameters

int $id

Return Value

ChildAddress

at line 136
ChildAddress findOneByLabel( string $label)

Return the first ChildAddress filtered by the label column

Parameters

string $label

Return Value

ChildAddress

at line 136
ChildAddress findOneByCustomerId( int $customer_id)

Return the first ChildAddress filtered by the customer_id column

Parameters

int $customer_id

Return Value

ChildAddress

at line 136
ChildAddress findOneByTitleId( int $title_id)

Return the first ChildAddress filtered by the title_id column

Parameters

int $title_id

Return Value

ChildAddress

at line 136
ChildAddress findOneByCompany( string $company)

Return the first ChildAddress filtered by the company column

Parameters

string $company

Return Value

ChildAddress

at line 136
ChildAddress findOneByFirstname( string $firstname)

Return the first ChildAddress filtered by the firstname column

Parameters

string $firstname

Return Value

ChildAddress

at line 136
ChildAddress findOneByLastname( string $lastname)

Return the first ChildAddress filtered by the lastname column

Parameters

string $lastname

Return Value

ChildAddress

at line 136
ChildAddress findOneByAddress1( string $address1)

Return the first ChildAddress filtered by the address1 column

Parameters

string $address1

Return Value

ChildAddress

at line 136
ChildAddress findOneByAddress2( string $address2)

Return the first ChildAddress filtered by the address2 column

Parameters

string $address2

Return Value

ChildAddress

at line 136
ChildAddress findOneByAddress3( string $address3)

Return the first ChildAddress filtered by the address3 column

Parameters

string $address3

Return Value

ChildAddress

at line 136
ChildAddress findOneByZipcode( string $zipcode)

Return the first ChildAddress filtered by the zipcode column

Parameters

string $zipcode

Return Value

ChildAddress

at line 136
ChildAddress findOneByCity( string $city)

Return the first ChildAddress filtered by the city column

Parameters

string $city

Return Value

ChildAddress

at line 136
ChildAddress findOneByCountryId( int $country_id)

Return the first ChildAddress filtered by the country_id column

Parameters

int $country_id

Return Value

ChildAddress

at line 136
ChildAddress findOneByStateId( int $state_id)

Return the first ChildAddress filtered by the state_id column

Parameters

int $state_id

Return Value

ChildAddress

at line 136
ChildAddress findOneByPhone( string $phone)

Return the first ChildAddress filtered by the phone column

Parameters

string $phone

Return Value

ChildAddress

at line 136
ChildAddress findOneByCellphone( string $cellphone)

Return the first ChildAddress filtered by the cellphone column

Parameters

string $cellphone

Return Value

ChildAddress

at line 136
ChildAddress findOneByIsDefault( int $is_default)

Return the first ChildAddress filtered by the is_default column

Parameters

int $is_default

Return Value

ChildAddress

at line 136
ChildAddress findOneByCreatedAt( string $created_at)

Return the first ChildAddress filtered by the created_at column

Parameters

string $created_at

Return Value

ChildAddress

at line 136
ChildAddress findOneByUpdatedAt( string $updated_at)

Return the first ChildAddress filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildAddress

at line 136
array findById( int $id)

Return ChildAddress objects filtered by the id column

Parameters

int $id

Return Value

array

at line 136
array findByLabel( string $label)

Return ChildAddress objects filtered by the label column

Parameters

string $label

Return Value

array

at line 136
array findByCustomerId( int $customer_id)

Return ChildAddress objects filtered by the customer_id column

Parameters

int $customer_id

Return Value

array

at line 136
array findByTitleId( int $title_id)

Return ChildAddress objects filtered by the title_id column

Parameters

int $title_id

Return Value

array

at line 136
array findByCompany( string $company)

Return ChildAddress objects filtered by the company column

Parameters

string $company

Return Value

array

at line 136
array findByFirstname( string $firstname)

Return ChildAddress objects filtered by the firstname column

Parameters

string $firstname

Return Value

array

at line 136
array findByLastname( string $lastname)

Return ChildAddress objects filtered by the lastname column

Parameters

string $lastname

Return Value

array

at line 136
array findByAddress1( string $address1)

Return ChildAddress objects filtered by the address1 column

Parameters

string $address1

Return Value

array

at line 136
array findByAddress2( string $address2)

Return ChildAddress objects filtered by the address2 column

Parameters

string $address2

Return Value

array

at line 136
array findByAddress3( string $address3)

Return ChildAddress objects filtered by the address3 column

Parameters

string $address3

Return Value

array

at line 136
array findByZipcode( string $zipcode)

Return ChildAddress objects filtered by the zipcode column

Parameters

string $zipcode

Return Value

array

at line 136
array findByCity( string $city)

Return ChildAddress objects filtered by the city column

Parameters

string $city

Return Value

array

at line 136
array findByCountryId( int $country_id)

Return ChildAddress objects filtered by the country_id column

Parameters

int $country_id

Return Value

array

at line 136
array findByStateId( int $state_id)

Return ChildAddress objects filtered by the state_id column

Parameters

int $state_id

Return Value

array

at line 136
array findByPhone( string $phone)

Return ChildAddress objects filtered by the phone column

Parameters

string $phone

Return Value

array

at line 136
array findByCellphone( string $cellphone)

Return ChildAddress objects filtered by the cellphone column

Parameters

string $cellphone

Return Value

array

at line 136
array findByIsDefault( int $is_default)

Return ChildAddress objects filtered by the is_default column

Parameters

int $is_default

Return Value

array

at line 136
array findByCreatedAt( string $created_at)

Return ChildAddress objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 136
array findByUpdatedAt( string $updated_at)

Return ChildAddress objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array