class CustomerQuery extends ModelCriteria

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

Properties

static $isVersioningEnabled Whether the versioning is enabled

Methods

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

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

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

Returns a new ChildCustomerQuery object.

Customer|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

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

Filter the query on the title_id column

filterByLangId( mixed $langId = null, string $comparison = null)

Filter the query on the lang_id column

filterByRef( string $ref = null, string $comparison = null)

Filter the query on the ref 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

filterByEmail( string $email = null, string $comparison = null)

Filter the query on the email column

filterByPassword( string $password = null, string $comparison = null)

Filter the query on the password column

filterByAlgo( string $algo = null, string $comparison = null)

Filter the query on the algo column

filterByReseller( mixed $reseller = null, string $comparison = null)

Filter the query on the reseller column

filterBySponsor( string $sponsor = null, string $comparison = null)

Filter the query on the sponsor column

filterByDiscount( mixed $discount = null, string $comparison = null)

Filter the query on the discount column

filterByRememberMeToken( string $rememberMeToken = null, string $comparison = null)

Filter the query on the remembermetoken column

filterByRememberMeSerial( string $rememberMeSerial = null, string $comparison = null)

Filter the query on the remembermeserial column

filterByEnable( mixed $enable = null, string $comparison = null)

Filter the query on the enable column

filterByConfirmationToken( string $confirmationToken = null, string $comparison = null)

Filter the query on the confirmation_token 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

filterByVersion( mixed $version = null, string $comparison = null)

Filter the query on the version column

filterByVersionCreatedAt( mixed $versionCreatedAt = null, string $comparison = null)

Filter the query on the versioncreatedat column

filterByVersionCreatedBy( string $versionCreatedBy = null, string $comparison = null)

Filter the query on the versioncreatedby column

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

filterByLangModel( Lang|ObjectCollection $lang, string $comparison = null)

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

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

Adds a JOIN clause to the query using the LangModel relation

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

Use the LangModel relation Lang object

filterByAddress( Address|ObjectCollection $address, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Address relation

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

Use the Address relation Address object

filterByOrder( Order|ObjectCollection $order, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Order relation

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

Use the Order relation Order object

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

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

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

Adds a JOIN clause to the query using the Cart relation

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

Use the Cart relation Cart object

filterByCouponCustomerCount( CouponCustomerCount|ObjectCollection $couponCustomerCount, string $comparison = null)

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

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

Adds a JOIN clause to the query using the CouponCustomerCount relation

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

Use the CouponCustomerCount relation CouponCustomerCount object

filterByCustomerVersion( CustomerVersion|ObjectCollection $customerVersion, string $comparison = null)

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

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

Adds a JOIN clause to the query using the CustomerVersion relation

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

Use the CustomerVersion relation CustomerVersion object

filterByCoupon( Coupon $coupon, string $comparison = Criteria::EQUAL)

Filter the query by a related Coupon object using the couponcustomercount table as cross reference

prune( Customer $customer = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the customer table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildCustomer 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

static  boolean
isVersioningEnabled()

Checks whether versioning is enabled

static 
enableVersioning()

Enables versioning

static 
disableVersioning()

Disables versioning

ChildCustomerQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildCustomerQuery
orderByTitleId($order = Criteria::ASC)

Order by the title_id column

ChildCustomerQuery
orderByLangId($order = Criteria::ASC)

Order by the lang_id column

ChildCustomerQuery
orderByRef($order = Criteria::ASC)

Order by the ref column

ChildCustomerQuery
orderByFirstname($order = Criteria::ASC)

Order by the firstname column

ChildCustomerQuery
orderByLastname($order = Criteria::ASC)

Order by the lastname column

ChildCustomerQuery
orderByEmail($order = Criteria::ASC)

Order by the email column

ChildCustomerQuery
orderByPassword($order = Criteria::ASC)

Order by the password column

ChildCustomerQuery
orderByAlgo($order = Criteria::ASC)

Order by the algo column

ChildCustomerQuery
orderByReseller($order = Criteria::ASC)

Order by the reseller column

ChildCustomerQuery
orderBySponsor($order = Criteria::ASC)

Order by the sponsor column

ChildCustomerQuery
orderByDiscount($order = Criteria::ASC)

Order by the discount column

ChildCustomerQuery
orderByRememberMeToken($order = Criteria::ASC)

Order by the remembermetoken column

ChildCustomerQuery
orderByRememberMeSerial($order = Criteria::ASC)

Order by the remembermeserial column

ChildCustomerQuery
orderByEnable($order = Criteria::ASC)

Order by the enable column

ChildCustomerQuery
orderByConfirmationToken($order = Criteria::ASC)

Order by the confirmation_token column

ChildCustomerQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildCustomerQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildCustomerQuery
orderByVersion($order = Criteria::ASC)

Order by the version column

ChildCustomerQuery
orderByVersionCreatedAt($order = Criteria::ASC)

Order by the versioncreatedat column

ChildCustomerQuery
orderByVersionCreatedBy($order = Criteria::ASC)

Order by the versioncreatedby column

ChildCustomerQuery
groupById()

Group by the id column

ChildCustomerQuery
groupByTitleId()

Group by the title_id column

ChildCustomerQuery
groupByLangId()

Group by the lang_id column

ChildCustomerQuery
groupByRef()

Group by the ref column

ChildCustomerQuery
groupByFirstname()

Group by the firstname column

ChildCustomerQuery
groupByLastname()

Group by the lastname column

ChildCustomerQuery
groupByEmail()

Group by the email column

ChildCustomerQuery
groupByPassword()

Group by the password column

ChildCustomerQuery
groupByAlgo()

Group by the algo column

ChildCustomerQuery
groupByReseller()

Group by the reseller column

ChildCustomerQuery
groupBySponsor()

Group by the sponsor column

ChildCustomerQuery
groupByDiscount()

Group by the discount column

ChildCustomerQuery
groupByRememberMeToken()

Group by the remembermetoken column

ChildCustomerQuery
groupByRememberMeSerial()

Group by the remembermeserial column

ChildCustomerQuery
groupByEnable()

Group by the enable column

ChildCustomerQuery
groupByConfirmationToken()

Group by the confirmation_token column

ChildCustomerQuery
groupByCreatedAt()

Group by the created_at column

ChildCustomerQuery
groupByUpdatedAt()

Group by the updated_at column

ChildCustomerQuery
groupByVersion()

Group by the version column

ChildCustomerQuery
groupByVersionCreatedAt()

Group by the versioncreatedat column

ChildCustomerQuery
groupByVersionCreatedBy()

Group by the versioncreatedby column

ChildCustomerQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildCustomerQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildCustomerQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildCustomerQuery
leftJoinCustomerTitle($relationAlias = null)

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

ChildCustomerQuery
rightJoinCustomerTitle($relationAlias = null)

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

ChildCustomerQuery
innerJoinCustomerTitle($relationAlias = null)

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

ChildCustomerQuery
leftJoinLangModel($relationAlias = null)

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

ChildCustomerQuery
rightJoinLangModel($relationAlias = null)

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

ChildCustomerQuery
innerJoinLangModel($relationAlias = null)

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

ChildCustomerQuery
leftJoinAddress($relationAlias = null)

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

ChildCustomerQuery
rightJoinAddress($relationAlias = null)

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

ChildCustomerQuery
innerJoinAddress($relationAlias = null)

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

ChildCustomerQuery
leftJoinOrder($relationAlias = null)

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

ChildCustomerQuery
rightJoinOrder($relationAlias = null)

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

ChildCustomerQuery
innerJoinOrder($relationAlias = null)

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

ChildCustomerQuery
leftJoinCart($relationAlias = null)

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

ChildCustomerQuery
rightJoinCart($relationAlias = null)

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

ChildCustomerQuery
innerJoinCart($relationAlias = null)

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

ChildCustomerQuery
leftJoinCouponCustomerCount($relationAlias = null)

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

ChildCustomerQuery
rightJoinCouponCustomerCount($relationAlias = null)

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

ChildCustomerQuery
innerJoinCouponCustomerCount($relationAlias = null)

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

ChildCustomerQuery
leftJoinCustomerVersion($relationAlias = null)

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

ChildCustomerQuery
rightJoinCustomerVersion($relationAlias = null)

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

ChildCustomerQuery
innerJoinCustomerVersion($relationAlias = null)

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

ChildCustomer
findOne( ConnectionInterface $con = null)

Return the first ChildCustomer matching the query

ChildCustomer
findOneOrCreate( ConnectionInterface $con = null)

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

ChildCustomer
findOneById( int $id)

Return the first ChildCustomer filtered by the id column

ChildCustomer
findOneByTitleId( int $title_id)

Return the first ChildCustomer filtered by the title_id column

ChildCustomer
findOneByLangId( int $lang_id)

Return the first ChildCustomer filtered by the lang_id column

ChildCustomer
findOneByRef( string $ref)

Return the first ChildCustomer filtered by the ref column

ChildCustomer
findOneByFirstname( string $firstname)

Return the first ChildCustomer filtered by the firstname column

ChildCustomer
findOneByLastname( string $lastname)

Return the first ChildCustomer filtered by the lastname column

ChildCustomer
findOneByEmail( string $email)

Return the first ChildCustomer filtered by the email column

ChildCustomer
findOneByPassword( string $password)

Return the first ChildCustomer filtered by the password column

ChildCustomer
findOneByAlgo( string $algo)

Return the first ChildCustomer filtered by the algo column

ChildCustomer
findOneByReseller( int $reseller)

Return the first ChildCustomer filtered by the reseller column

ChildCustomer
findOneBySponsor( string $sponsor)

Return the first ChildCustomer filtered by the sponsor column

ChildCustomer
findOneByDiscount( string $discount)

Return the first ChildCustomer filtered by the discount column

ChildCustomer
findOneByRememberMeToken( string $remember_me_token)

Return the first ChildCustomer filtered by the remembermetoken column

ChildCustomer
findOneByRememberMeSerial( string $remember_me_serial)

Return the first ChildCustomer filtered by the remembermeserial column

ChildCustomer
findOneByEnable( int $enable)

Return the first ChildCustomer filtered by the enable column

ChildCustomer
findOneByConfirmationToken( string $confirmation_token)

Return the first ChildCustomer filtered by the confirmation_token column

ChildCustomer
findOneByCreatedAt( string $created_at)

Return the first ChildCustomer filtered by the created_at column

ChildCustomer
findOneByUpdatedAt( string $updated_at)

Return the first ChildCustomer filtered by the updated_at column

ChildCustomer
findOneByVersion( int $version)

Return the first ChildCustomer filtered by the version column

ChildCustomer
findOneByVersionCreatedAt( string $version_created_at)

Return the first ChildCustomer filtered by the versioncreatedat column

ChildCustomer
findOneByVersionCreatedBy( string $version_created_by)

Return the first ChildCustomer filtered by the versioncreatedby column

array
findById( int $id)

Return ChildCustomer objects filtered by the id column

array
findByTitleId( int $title_id)

Return ChildCustomer objects filtered by the title_id column

array
findByLangId( int $lang_id)

Return ChildCustomer objects filtered by the lang_id column

array
findByRef( string $ref)

Return ChildCustomer objects filtered by the ref column

array
findByFirstname( string $firstname)

Return ChildCustomer objects filtered by the firstname column

array
findByLastname( string $lastname)

Return ChildCustomer objects filtered by the lastname column

array
findByEmail( string $email)

Return ChildCustomer objects filtered by the email column

array
findByPassword( string $password)

Return ChildCustomer objects filtered by the password column

array
findByAlgo( string $algo)

Return ChildCustomer objects filtered by the algo column

array
findByReseller( int $reseller)

Return ChildCustomer objects filtered by the reseller column

array
findBySponsor( string $sponsor)

Return ChildCustomer objects filtered by the sponsor column

array
findByDiscount( string $discount)

Return ChildCustomer objects filtered by the discount column

array
findByRememberMeToken( string $remember_me_token)

Return ChildCustomer objects filtered by the remembermetoken column

array
findByRememberMeSerial( string $remember_me_serial)

Return ChildCustomer objects filtered by the remembermeserial column

array
findByEnable( int $enable)

Return ChildCustomer objects filtered by the enable column

array
findByConfirmationToken( string $confirmation_token)

Return ChildCustomer objects filtered by the confirmation_token column

array
findByCreatedAt( string $created_at)

Return ChildCustomer objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildCustomer objects filtered by the updated_at column

array
findByVersion( int $version)

Return ChildCustomer objects filtered by the version column

array
findByVersionCreatedAt( string $version_created_at)

Return ChildCustomer objects filtered by the versioncreatedat column

array
findByVersionCreatedBy( string $version_created_by)

Return ChildCustomer objects filtered by the versioncreatedby column

Details

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

Initializes internal state of \Thelia\Model\Base\CustomerQuery 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 178
static CustomerQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildCustomerQuery object.

Parameters

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

Return Value

CustomerQuery

at line 208
Customer|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

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

at line 290
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 311
CustomerQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

CustomerQuery The current query, for fluid interface

at line 324
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 348
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 391
CustomerQuery 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

CustomerQuery The current query, for fluid interface

See also

filterByCustomerTitle()

at line 434
CustomerQuery filterByLangId( mixed $langId = null, string $comparison = null)

Filter the query on the lang_id column

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

Parameters

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

CustomerQuery The current query, for fluid interface

See also

filterByLangModel()

at line 472
CustomerQuery filterByRef( string $ref = null, string $comparison = null)

Filter the query on the ref column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 501
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 530
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 559
CustomerQuery filterByEmail( string $email = null, string $comparison = null)

Filter the query on the email column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 588
CustomerQuery filterByPassword( string $password = null, string $comparison = null)

Filter the query on the password column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 617
CustomerQuery filterByAlgo( string $algo = null, string $comparison = null)

Filter the query on the algo column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 649
CustomerQuery filterByReseller( mixed $reseller = null, string $comparison = null)

Filter the query on the reseller column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 687
CustomerQuery filterBySponsor( string $sponsor = null, string $comparison = null)

Filter the query on the sponsor column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 719
CustomerQuery filterByDiscount( mixed $discount = null, string $comparison = null)

Filter the query on the discount column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 757
CustomerQuery filterByRememberMeToken( string $rememberMeToken = null, string $comparison = null)

Filter the query on the remembermetoken column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 786
CustomerQuery filterByRememberMeSerial( string $rememberMeSerial = null, string $comparison = null)

Filter the query on the remembermeserial column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 818
CustomerQuery filterByEnable( mixed $enable = null, string $comparison = null)

Filter the query on the enable column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 856
CustomerQuery filterByConfirmationToken( string $confirmationToken = null, string $comparison = null)

Filter the query on the confirmation_token column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 890
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 933
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 974
CustomerQuery filterByVersion( mixed $version = null, string $comparison = null)

Filter the query on the version column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 1017
CustomerQuery filterByVersionCreatedAt( mixed $versionCreatedAt = null, string $comparison = null)

Filter the query on the versioncreatedat column

Example usage: $query->filterByVersionCreatedAt('2011-03-14'); // WHERE versioncreatedat = '2011-03-14' $query->filterByVersionCreatedAt('now'); // WHERE versioncreatedat = '2011-03-14' $query->filterByVersionCreatedAt(array('max' => 'yesterday')); // WHERE versioncreatedat > '2011-03-13'

Parameters

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

CustomerQuery The current query, for fluid interface

at line 1055
CustomerQuery filterByVersionCreatedBy( string $versionCreatedBy = null, string $comparison = null)

Filter the query on the versioncreatedby column

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

Parameters

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

CustomerQuery The current query, for fluid interface

at line 1077
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 1102
CustomerQuery 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

CustomerQuery The current query, for fluid interface

at line 1137
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 1152
CustomerQuery filterByLangModel( Lang|ObjectCollection $lang, string $comparison = null)

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

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1177
CustomerQuery joinLangModel( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the LangModel relation

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1212
LangQuery useLangModelQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the LangModel relation Lang 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

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

See also

useQuery()

at line 1227
CustomerQuery filterByAddress( Address|ObjectCollection $address, string $comparison = null)

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

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1250
CustomerQuery joinAddress( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Address relation

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1285
AddressQuery useAddressQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Address relation Address 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

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

See also

useQuery()

at line 1300
CustomerQuery filterByOrder( Order|ObjectCollection $order, string $comparison = null)

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

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1323
CustomerQuery joinOrder( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Order relation

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1358
OrderQuery useOrderQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Order relation Order 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

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

See also

useQuery()

at line 1373
CustomerQuery filterByCart( 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

CustomerQuery The current query, for fluid interface

at line 1396
CustomerQuery joinCart( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the Cart relation

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1431
CartQuery useCartQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the Cart 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 1446
CustomerQuery filterByCouponCustomerCount( CouponCustomerCount|ObjectCollection $couponCustomerCount, string $comparison = null)

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

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1469
CustomerQuery joinCouponCustomerCount( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the CouponCustomerCount relation

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1504
CouponCustomerCountQuery useCouponCustomerCountQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the CouponCustomerCount relation CouponCustomerCount 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

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

See also

useQuery()

at line 1519
CustomerQuery filterByCustomerVersion( CustomerVersion|ObjectCollection $customerVersion, string $comparison = null)

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

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1542
CustomerQuery joinCustomerVersion( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the CustomerVersion relation

Parameters

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

Return Value

CustomerQuery The current query, for fluid interface

at line 1577
CustomerVersionQuery useCustomerVersionQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the CustomerVersion relation CustomerVersion 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

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

See also

useQuery()

at line 1593
CustomerQuery filterByCoupon( Coupon $coupon, string $comparison = Criteria::EQUAL)

Filter the query by a related Coupon object using the couponcustomercount table as cross reference

Parameters

Coupon $coupon the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerQuery The current query, for fluid interface

at line 1608
CustomerQuery prune( Customer $customer = null)

Exclude object from result

Parameters

Customer $customer Object to remove from the list of results

Return Value

CustomerQuery The current query, for fluid interface

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

Deletes all rows from the customer table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

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

Performs a DELETE on the database, given a ChildCustomer 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 1701
CustomerQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

CustomerQuery The current query, for fluid interface

at line 1713
CustomerQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

CustomerQuery The current query, for fluid interface

at line 1723
CustomerQuery lastUpdatedFirst()

Order by update date desc

Return Value

CustomerQuery The current query, for fluid interface

at line 1733
CustomerQuery firstUpdatedFirst()

Order by update date asc

Return Value

CustomerQuery The current query, for fluid interface

at line 1743
CustomerQuery lastCreatedFirst()

Order by create date desc

Return Value

CustomerQuery The current query, for fluid interface

at line 1753
CustomerQuery firstCreatedFirst()

Order by create date asc

Return Value

CustomerQuery The current query, for fluid interface

at line 1765
static boolean isVersioningEnabled()

Checks whether versioning is enabled

Return Value

boolean

at line 1773
static enableVersioning()

Enables versioning

at line 1781
static disableVersioning()

Disables versioning

at line 148
ChildCustomerQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByTitleId($order = Criteria::ASC)

Order by the title_id column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByLangId($order = Criteria::ASC)

Order by the lang_id column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByRef($order = Criteria::ASC)

Order by the ref column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByFirstname($order = Criteria::ASC)

Order by the firstname column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByLastname($order = Criteria::ASC)

Order by the lastname column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByEmail($order = Criteria::ASC)

Order by the email column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByPassword($order = Criteria::ASC)

Order by the password column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByAlgo($order = Criteria::ASC)

Order by the algo column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByReseller($order = Criteria::ASC)

Order by the reseller column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderBySponsor($order = Criteria::ASC)

Order by the sponsor column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByDiscount($order = Criteria::ASC)

Order by the discount column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByRememberMeToken($order = Criteria::ASC)

Order by the remembermetoken column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByRememberMeSerial($order = Criteria::ASC)

Order by the remembermeserial column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByEnable($order = Criteria::ASC)

Order by the enable column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByConfirmationToken($order = Criteria::ASC)

Order by the confirmation_token column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByVersion($order = Criteria::ASC)

Order by the version column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByVersionCreatedAt($order = Criteria::ASC)

Order by the versioncreatedat column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery orderByVersionCreatedBy($order = Criteria::ASC)

Order by the versioncreatedby column

Parameters

$order

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupById()

Group by the id column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByTitleId()

Group by the title_id column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByLangId()

Group by the lang_id column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByRef()

Group by the ref column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByFirstname()

Group by the firstname column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByLastname()

Group by the lastname column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByEmail()

Group by the email column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByPassword()

Group by the password column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByAlgo()

Group by the algo column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByReseller()

Group by the reseller column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupBySponsor()

Group by the sponsor column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByDiscount()

Group by the discount column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByRememberMeToken()

Group by the remembermetoken column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByRememberMeSerial()

Group by the remembermeserial column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByEnable()

Group by the enable column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByConfirmationToken()

Group by the confirmation_token column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByVersion()

Group by the version column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByVersionCreatedAt()

Group by the versioncreatedat column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery groupByVersionCreatedBy()

Group by the versioncreatedby column

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoinCustomerTitle($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoinCustomerTitle($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoinCustomerTitle($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoinLangModel($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoinLangModel($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoinLangModel($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoinAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoinAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoinAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoinOrder($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoinOrder($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoinOrder($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoinCart($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoinCart($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoinCart($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoinCouponCustomerCount($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoinCouponCustomerCount($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoinCouponCustomerCount($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery leftJoinCustomerVersion($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery rightJoinCustomerVersion($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomerQuery innerJoinCustomerVersion($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCustomerQuery

at line 148
ChildCustomer findOne( ConnectionInterface $con = null)

Return the first ChildCustomer matching the query

Parameters

ConnectionInterface $con

Return Value

ChildCustomer

at line 148
ChildCustomer findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildCustomer

at line 148
ChildCustomer findOneById( int $id)

Return the first ChildCustomer filtered by the id column

Parameters

int $id

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByTitleId( int $title_id)

Return the first ChildCustomer filtered by the title_id column

Parameters

int $title_id

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByLangId( int $lang_id)

Return the first ChildCustomer filtered by the lang_id column

Parameters

int $lang_id

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByRef( string $ref)

Return the first ChildCustomer filtered by the ref column

Parameters

string $ref

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByFirstname( string $firstname)

Return the first ChildCustomer filtered by the firstname column

Parameters

string $firstname

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByLastname( string $lastname)

Return the first ChildCustomer filtered by the lastname column

Parameters

string $lastname

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByEmail( string $email)

Return the first ChildCustomer filtered by the email column

Parameters

string $email

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByPassword( string $password)

Return the first ChildCustomer filtered by the password column

Parameters

string $password

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByAlgo( string $algo)

Return the first ChildCustomer filtered by the algo column

Parameters

string $algo

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByReseller( int $reseller)

Return the first ChildCustomer filtered by the reseller column

Parameters

int $reseller

Return Value

ChildCustomer

at line 148
ChildCustomer findOneBySponsor( string $sponsor)

Return the first ChildCustomer filtered by the sponsor column

Parameters

string $sponsor

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByDiscount( string $discount)

Return the first ChildCustomer filtered by the discount column

Parameters

string $discount

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByRememberMeToken( string $remember_me_token)

Return the first ChildCustomer filtered by the remembermetoken column

Parameters

string $remember_me_token

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByRememberMeSerial( string $remember_me_serial)

Return the first ChildCustomer filtered by the remembermeserial column

Parameters

string $remember_me_serial

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByEnable( int $enable)

Return the first ChildCustomer filtered by the enable column

Parameters

int $enable

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByConfirmationToken( string $confirmation_token)

Return the first ChildCustomer filtered by the confirmation_token column

Parameters

string $confirmation_token

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByCreatedAt( string $created_at)

Return the first ChildCustomer filtered by the created_at column

Parameters

string $created_at

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByUpdatedAt( string $updated_at)

Return the first ChildCustomer filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByVersion( int $version)

Return the first ChildCustomer filtered by the version column

Parameters

int $version

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByVersionCreatedAt( string $version_created_at)

Return the first ChildCustomer filtered by the versioncreatedat column

Parameters

string $version_created_at

Return Value

ChildCustomer

at line 148
ChildCustomer findOneByVersionCreatedBy( string $version_created_by)

Return the first ChildCustomer filtered by the versioncreatedby column

Parameters

string $version_created_by

Return Value

ChildCustomer

at line 148
array findById( int $id)

Return ChildCustomer objects filtered by the id column

Parameters

int $id

Return Value

array

at line 148
array findByTitleId( int $title_id)

Return ChildCustomer objects filtered by the title_id column

Parameters

int $title_id

Return Value

array

at line 148
array findByLangId( int $lang_id)

Return ChildCustomer objects filtered by the lang_id column

Parameters

int $lang_id

Return Value

array

at line 148
array findByRef( string $ref)

Return ChildCustomer objects filtered by the ref column

Parameters

string $ref

Return Value

array

at line 148
array findByFirstname( string $firstname)

Return ChildCustomer objects filtered by the firstname column

Parameters

string $firstname

Return Value

array

at line 148
array findByLastname( string $lastname)

Return ChildCustomer objects filtered by the lastname column

Parameters

string $lastname

Return Value

array

at line 148
array findByEmail( string $email)

Return ChildCustomer objects filtered by the email column

Parameters

string $email

Return Value

array

at line 148
array findByPassword( string $password)

Return ChildCustomer objects filtered by the password column

Parameters

string $password

Return Value

array

at line 148
array findByAlgo( string $algo)

Return ChildCustomer objects filtered by the algo column

Parameters

string $algo

Return Value

array

at line 148
array findByReseller( int $reseller)

Return ChildCustomer objects filtered by the reseller column

Parameters

int $reseller

Return Value

array

at line 148
array findBySponsor( string $sponsor)

Return ChildCustomer objects filtered by the sponsor column

Parameters

string $sponsor

Return Value

array

at line 148
array findByDiscount( string $discount)

Return ChildCustomer objects filtered by the discount column

Parameters

string $discount

Return Value

array

at line 148
array findByRememberMeToken( string $remember_me_token)

Return ChildCustomer objects filtered by the remembermetoken column

Parameters

string $remember_me_token

Return Value

array

at line 148
array findByRememberMeSerial( string $remember_me_serial)

Return ChildCustomer objects filtered by the remembermeserial column

Parameters

string $remember_me_serial

Return Value

array

at line 148
array findByEnable( int $enable)

Return ChildCustomer objects filtered by the enable column

Parameters

int $enable

Return Value

array

at line 148
array findByConfirmationToken( string $confirmation_token)

Return ChildCustomer objects filtered by the confirmation_token column

Parameters

string $confirmation_token

Return Value

array

at line 148
array findByCreatedAt( string $created_at)

Return ChildCustomer objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 148
array findByUpdatedAt( string $updated_at)

Return ChildCustomer objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array

at line 148
array findByVersion( int $version)

Return ChildCustomer objects filtered by the version column

Parameters

int $version

Return Value

array

at line 148
array findByVersionCreatedAt( string $version_created_at)

Return ChildCustomer objects filtered by the versioncreatedat column

Parameters

string $version_created_at

Return Value

array

at line 148
array findByVersionCreatedBy( string $version_created_by)

Return ChildCustomer objects filtered by the versioncreatedby column

Parameters

string $version_created_by

Return Value

array