CustomerQuery
class CustomerQuery extends CustomerQuery
Skeleton subclass for performing query and update operations on the 'customer' table.
You should add additional methods to this class to meet the application requirements. This class will only be generated as long as it does not already exist in the output directory.
Properties
static | $isVersioningEnabled | Whether the versioning is enabled | from CustomerQuery |
Methods
Initializes internal state of \Thelia\Model\Base\CustomerQuery object.
Returns a new ChildCustomerQuery object.
Find object by primary key.
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Filter the query by a list of primary keys
Filter the query on the id column
Filter the query on the title_id column
Filter the query on the lang_id column
Filter the query on the ref column
Filter the query on the firstname column
Filter the query on the lastname column
Filter the query on the email column
Filter the query on the password column
Filter the query on the algo column
Filter the query on the reseller column
Filter the query on the sponsor column
Filter the query on the discount column
Filter the query on the remembermetoken column
Filter the query on the remembermeserial column
Filter the query on the enable column
Filter the query on the confirmation_token column
Filter the query on the created_at column
Filter the query on the updated_at column
Filter the query on the version column
Filter the query on the versioncreatedat column
Filter the query on the versioncreatedby column
Filter the query by a related \Thelia\Model\CustomerTitle object
Adds a JOIN clause to the query using the CustomerTitle relation
Use the CustomerTitle relation CustomerTitle object
Filter the query by a related \Thelia\Model\Lang object
Adds a JOIN clause to the query using the LangModel relation
Use the LangModel relation Lang object
Filter the query by a related \Thelia\Model\Address object
Adds a JOIN clause to the query using the Address relation
Use the Address relation Address object
Filter the query by a related \Thelia\Model\Order object
Adds a JOIN clause to the query using the Order relation
Use the Order relation Order object
Filter the query by a related \Thelia\Model\Cart object
Adds a JOIN clause to the query using the Cart relation
Use the Cart relation Cart object
Filter the query by a related \Thelia\Model\CouponCustomerCount object
Adds a JOIN clause to the query using the CouponCustomerCount relation
Use the CouponCustomerCount relation CouponCustomerCount object
Filter the query by a related \Thelia\Model\CustomerVersion object
Adds a JOIN clause to the query using the CustomerVersion relation
Use the CustomerVersion relation CustomerVersion object
Filter the query by a related Coupon object using the couponcustomercount table as cross reference
Deletes all rows from the customer table.
Performs a DELETE on the database, given a ChildCustomer or Criteria object OR a primary key value.
Order by the title_id column
Order by the lang_id column
Order by the firstname column
Order by the lastname column
Order by the email column
Order by the password column
Order by the reseller column
Order by the sponsor column
Order by the discount column
Order by the remembermetoken column
Order by the remembermeserial column
Order by the enable column
Order by the confirmation_token column
Order by the created_at column
Order by the updated_at column
Order by the version column
Order by the versioncreatedat column
Order by the versioncreatedby column
Group by the remembermeserial column
Group by the confirmation_token column
Group by the versioncreatedat column
Group by the versioncreatedby column
Adds a LEFT JOIN clause to the query using the CustomerTitle relation
Adds a RIGHT JOIN clause to the query using the CustomerTitle relation
Adds a INNER JOIN clause to the query using the CustomerTitle relation
Adds a LEFT JOIN clause to the query using the LangModel relation
Adds a RIGHT JOIN clause to the query using the LangModel relation
Adds a INNER JOIN clause to the query using the LangModel relation
Adds a LEFT JOIN clause to the query using the Address relation
Adds a RIGHT JOIN clause to the query using the Address relation
Adds a INNER JOIN clause to the query using the Address relation
Adds a LEFT JOIN clause to the query using the Order relation
Adds a RIGHT JOIN clause to the query using the Order relation
Adds a INNER JOIN clause to the query using the Order relation
Adds a LEFT JOIN clause to the query using the Cart relation
Adds a RIGHT JOIN clause to the query using the Cart relation
Adds a INNER JOIN clause to the query using the Cart relation
Adds a LEFT JOIN clause to the query using the CouponCustomerCount relation
Adds a RIGHT JOIN clause to the query using the CouponCustomerCount relation
Adds a INNER JOIN clause to the query using the CouponCustomerCount relation
Adds a LEFT JOIN clause to the query using the CustomerVersion relation
Adds a RIGHT JOIN clause to the query using the CustomerVersion relation
Adds a INNER JOIN clause to the query using the CustomerVersion relation
Return the first ChildCustomer matching the query
Return the first ChildCustomer matching the query, or a new ChildCustomer object populated from the query conditions when no match is found
Return the first ChildCustomer filtered by the id column
Return the first ChildCustomer filtered by the title_id column
Return the first ChildCustomer filtered by the lang_id column
Return the first ChildCustomer filtered by the ref column
Return the first ChildCustomer filtered by the firstname column
Return the first ChildCustomer filtered by the lastname column
Return the first ChildCustomer filtered by the email column
Return the first ChildCustomer filtered by the password column
Return the first ChildCustomer filtered by the algo column
Return the first ChildCustomer filtered by the reseller column
Return the first ChildCustomer filtered by the sponsor column
Return the first ChildCustomer filtered by the discount column
Return the first ChildCustomer filtered by the remembermetoken column
Return the first ChildCustomer filtered by the remembermeserial column
Return the first ChildCustomer filtered by the enable column
Return the first ChildCustomer filtered by the confirmation_token column
Return the first ChildCustomer filtered by the created_at column
Return the first ChildCustomer filtered by the updated_at column
Return the first ChildCustomer filtered by the version column
Return the first ChildCustomer filtered by the versioncreatedat column
Return the first ChildCustomer filtered by the versioncreatedby column
Return ChildCustomer objects filtered by the title_id column
Return ChildCustomer objects filtered by the lang_id column
Return ChildCustomer objects filtered by the ref column
Return ChildCustomer objects filtered by the firstname column
Return ChildCustomer objects filtered by the lastname column
Return ChildCustomer objects filtered by the email column
Return ChildCustomer objects filtered by the password column
Return ChildCustomer objects filtered by the algo column
Return ChildCustomer objects filtered by the reseller column
Return ChildCustomer objects filtered by the sponsor column
Return ChildCustomer objects filtered by the discount column
Return ChildCustomer objects filtered by the remembermetoken column
Return ChildCustomer objects filtered by the remembermeserial column
Return ChildCustomer objects filtered by the enable column
Return ChildCustomer objects filtered by the confirmation_token column
Return ChildCustomer objects filtered by the created_at column
Return ChildCustomer objects filtered by the updated_at column
Return ChildCustomer objects filtered by the version column
Return ChildCustomer objects filtered by the versioncreatedat column
Return ChildCustomer objects filtered by the versioncreatedby column
No description
No description
Details
in
CustomerQuery at line 165
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\Customer',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\CustomerQuery object.
in
CustomerQuery at line 178
static
CustomerQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildCustomerQuery object.
in
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);
in
CustomerQuery 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);
in
CustomerQuery at line 311
CustomerQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
in
CustomerQuery at line 324
CustomerQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
in
CustomerQuery 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
in
CustomerQuery 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
in
CustomerQuery 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
in
CustomerQuery 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%'
in
CustomerQuery 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%'
in
CustomerQuery 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%'
in
CustomerQuery 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%'
in
CustomerQuery 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%'
in
CustomerQuery 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%'
in
CustomerQuery 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
in
CustomerQuery 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%'
in
CustomerQuery 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
in
CustomerQuery 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%'
in
CustomerQuery 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%'
in
CustomerQuery 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
in
CustomerQuery 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%'
in
CustomerQuery 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'
in
CustomerQuery 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'
in
CustomerQuery 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
in
CustomerQuery 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'
in
CustomerQuery 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%'
in
CustomerQuery at line 1077
CustomerQuery
filterByCustomerTitle(
CustomerTitle|ObjectCollection $customerTitle,
string $comparison = null)
Filter the query by a related \Thelia\Model\CustomerTitle object
in
CustomerQuery at line 1102
CustomerQuery
joinCustomerTitle(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CustomerTitle relation
in
CustomerQuery at line 1137
CustomerTitleQuery
useCustomerTitleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CustomerTitle relation CustomerTitle object
in
CustomerQuery at line 1152
CustomerQuery
filterByLangModel(
Lang|ObjectCollection $lang,
string $comparison = null)
Filter the query by a related \Thelia\Model\Lang object
in
CustomerQuery at line 1177
CustomerQuery
joinLangModel(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the LangModel relation
in
CustomerQuery at line 1212
LangQuery
useLangModelQuery(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the LangModel relation Lang object
in
CustomerQuery at line 1227
CustomerQuery
filterByAddress(
Address|ObjectCollection $address,
string $comparison = null)
Filter the query by a related \Thelia\Model\Address object
in
CustomerQuery at line 1250
CustomerQuery
joinAddress(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Address relation
in
CustomerQuery at line 1285
AddressQuery
useAddressQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Address relation Address object
in
CustomerQuery at line 1300
CustomerQuery
filterByOrder(
Order|ObjectCollection $order,
string $comparison = null)
Filter the query by a related \Thelia\Model\Order object
in
CustomerQuery at line 1323
CustomerQuery
joinOrder(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Order relation
in
CustomerQuery at line 1358
OrderQuery
useOrderQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Order relation Order object
in
CustomerQuery at line 1373
CustomerQuery
filterByCart(
Cart|ObjectCollection $cart,
string $comparison = null)
Filter the query by a related \Thelia\Model\Cart object
in
CustomerQuery at line 1396
CustomerQuery
joinCart(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the Cart relation
in
CustomerQuery at line 1431
CartQuery
useCartQuery(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the Cart relation Cart object
in
CustomerQuery at line 1446
CustomerQuery
filterByCouponCustomerCount(
CouponCustomerCount|ObjectCollection $couponCustomerCount,
string $comparison = null)
Filter the query by a related \Thelia\Model\CouponCustomerCount object
in
CustomerQuery at line 1469
CustomerQuery
joinCouponCustomerCount(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CouponCustomerCount relation
in
CustomerQuery at line 1504
CouponCustomerCountQuery
useCouponCustomerCountQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CouponCustomerCount relation CouponCustomerCount object
in
CustomerQuery at line 1519
CustomerQuery
filterByCustomerVersion(
CustomerVersion|ObjectCollection $customerVersion,
string $comparison = null)
Filter the query by a related \Thelia\Model\CustomerVersion object
in
CustomerQuery at line 1542
CustomerQuery
joinCustomerVersion(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CustomerVersion relation
in
CustomerQuery at line 1577
CustomerVersionQuery
useCustomerVersionQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CustomerVersion relation CustomerVersion object
in
CustomerQuery 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
in
CustomerQuery at line 1608
CustomerQuery
prune(
Customer $customer = null)
Exclude object from result
in
CustomerQuery at line 1623
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the customer table.
in
CustomerQuery 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.
in
CustomerQuery at line 1701
CustomerQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
in
CustomerQuery at line 1713
CustomerQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
in
CustomerQuery at line 1723
CustomerQuery
lastUpdatedFirst()
Order by update date desc
in
CustomerQuery at line 1733
CustomerQuery
firstUpdatedFirst()
Order by update date asc
in
CustomerQuery at line 1743
CustomerQuery
lastCreatedFirst()
Order by create date desc
in
CustomerQuery at line 1753
CustomerQuery
firstCreatedFirst()
Order by create date asc
in
CustomerQuery at line 1765
static
boolean
isVersioningEnabled()
Checks whether versioning is enabled
in
CustomerQuery at line 1773
static
enableVersioning()
Enables versioning
in
CustomerQuery at line 1781
static
disableVersioning()
Disables versioning
in
CustomerQuery at line 148
ChildCustomerQuery
orderById($order = Criteria::ASC)
Order by the id column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByTitleId($order = Criteria::ASC)
Order by the title_id column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByLangId($order = Criteria::ASC)
Order by the lang_id column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByRef($order = Criteria::ASC)
Order by the ref column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByFirstname($order = Criteria::ASC)
Order by the firstname column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByLastname($order = Criteria::ASC)
Order by the lastname column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByEmail($order = Criteria::ASC)
Order by the email column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByPassword($order = Criteria::ASC)
Order by the password column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByAlgo($order = Criteria::ASC)
Order by the algo column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByReseller($order = Criteria::ASC)
Order by the reseller column
in
CustomerQuery at line 148
ChildCustomerQuery
orderBySponsor($order = Criteria::ASC)
Order by the sponsor column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByDiscount($order = Criteria::ASC)
Order by the discount column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByRememberMeToken($order = Criteria::ASC)
Order by the remembermetoken column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByRememberMeSerial($order = Criteria::ASC)
Order by the remembermeserial column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByEnable($order = Criteria::ASC)
Order by the enable column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByConfirmationToken($order = Criteria::ASC)
Order by the confirmation_token column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByVersion($order = Criteria::ASC)
Order by the version column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByVersionCreatedAt($order = Criteria::ASC)
Order by the versioncreatedat column
in
CustomerQuery at line 148
ChildCustomerQuery
orderByVersionCreatedBy($order = Criteria::ASC)
Order by the versioncreatedby column
in
CustomerQuery at line 148
ChildCustomerQuery
groupById()
Group by the id column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByTitleId()
Group by the title_id column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByLangId()
Group by the lang_id column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByRef()
Group by the ref column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByFirstname()
Group by the firstname column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByLastname()
Group by the lastname column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByEmail()
Group by the email column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByPassword()
Group by the password column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByAlgo()
Group by the algo column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByReseller()
Group by the reseller column
in
CustomerQuery at line 148
ChildCustomerQuery
groupBySponsor()
Group by the sponsor column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByDiscount()
Group by the discount column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByRememberMeToken()
Group by the remembermetoken column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByRememberMeSerial()
Group by the remembermeserial column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByEnable()
Group by the enable column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByConfirmationToken()
Group by the confirmation_token column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByCreatedAt()
Group by the created_at column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByUpdatedAt()
Group by the updated_at column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByVersion()
Group by the version column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByVersionCreatedAt()
Group by the versioncreatedat column
in
CustomerQuery at line 148
ChildCustomerQuery
groupByVersionCreatedBy()
Group by the versioncreatedby column
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoinCustomerTitle($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CustomerTitle relation
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoinCustomerTitle($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CustomerTitle relation
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoinCustomerTitle($relationAlias = null)
Adds a INNER JOIN clause to the query using the CustomerTitle relation
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoinLangModel($relationAlias = null)
Adds a LEFT JOIN clause to the query using the LangModel relation
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoinLangModel($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the LangModel relation
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoinLangModel($relationAlias = null)
Adds a INNER JOIN clause to the query using the LangModel relation
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoinAddress($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Address relation
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoinAddress($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Address relation
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoinAddress($relationAlias = null)
Adds a INNER JOIN clause to the query using the Address relation
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoinOrder($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Order relation
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoinOrder($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Order relation
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoinOrder($relationAlias = null)
Adds a INNER JOIN clause to the query using the Order relation
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoinCart($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Cart relation
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoinCart($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Cart relation
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoinCart($relationAlias = null)
Adds a INNER JOIN clause to the query using the Cart relation
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoinCouponCustomerCount($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CouponCustomerCount relation
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoinCouponCustomerCount($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CouponCustomerCount relation
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoinCouponCustomerCount($relationAlias = null)
Adds a INNER JOIN clause to the query using the CouponCustomerCount relation
in
CustomerQuery at line 148
ChildCustomerQuery
leftJoinCustomerVersion($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CustomerVersion relation
in
CustomerQuery at line 148
ChildCustomerQuery
rightJoinCustomerVersion($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CustomerVersion relation
in
CustomerQuery at line 148
ChildCustomerQuery
innerJoinCustomerVersion($relationAlias = null)
Adds a INNER JOIN clause to the query using the CustomerVersion relation
in
CustomerQuery at line 148
ChildCustomer
findOne(
ConnectionInterface $con = null)
Return the first ChildCustomer matching the query
in
CustomerQuery 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
in
CustomerQuery at line 148
ChildCustomer
findOneById(
int $id)
Return the first ChildCustomer filtered by the id column
in
CustomerQuery at line 148
ChildCustomer
findOneByTitleId(
int $title_id)
Return the first ChildCustomer filtered by the title_id column
in
CustomerQuery at line 148
ChildCustomer
findOneByLangId(
int $lang_id)
Return the first ChildCustomer filtered by the lang_id column
in
CustomerQuery at line 148
ChildCustomer
findOneByRef(
string $ref)
Return the first ChildCustomer filtered by the ref column
in
CustomerQuery at line 148
ChildCustomer
findOneByFirstname(
string $firstname)
Return the first ChildCustomer filtered by the firstname column
in
CustomerQuery at line 148
ChildCustomer
findOneByLastname(
string $lastname)
Return the first ChildCustomer filtered by the lastname column
in
CustomerQuery at line 148
ChildCustomer
findOneByEmail(
string $email)
Return the first ChildCustomer filtered by the email column
in
CustomerQuery at line 148
ChildCustomer
findOneByPassword(
string $password)
Return the first ChildCustomer filtered by the password column
in
CustomerQuery at line 148
ChildCustomer
findOneByAlgo(
string $algo)
Return the first ChildCustomer filtered by the algo column
in
CustomerQuery at line 148
ChildCustomer
findOneByReseller(
int $reseller)
Return the first ChildCustomer filtered by the reseller column
in
CustomerQuery at line 148
ChildCustomer
findOneBySponsor(
string $sponsor)
Return the first ChildCustomer filtered by the sponsor column
in
CustomerQuery at line 148
ChildCustomer
findOneByDiscount(
string $discount)
Return the first ChildCustomer filtered by the discount column
in
CustomerQuery at line 148
ChildCustomer
findOneByRememberMeToken(
string $remember_me_token)
Return the first ChildCustomer filtered by the remembermetoken column
in
CustomerQuery at line 148
ChildCustomer
findOneByRememberMeSerial(
string $remember_me_serial)
Return the first ChildCustomer filtered by the remembermeserial column
in
CustomerQuery at line 148
ChildCustomer
findOneByEnable(
int $enable)
Return the first ChildCustomer filtered by the enable column
in
CustomerQuery at line 148
ChildCustomer
findOneByConfirmationToken(
string $confirmation_token)
Return the first ChildCustomer filtered by the confirmation_token column
in
CustomerQuery at line 148
ChildCustomer
findOneByCreatedAt(
string $created_at)
Return the first ChildCustomer filtered by the created_at column
in
CustomerQuery at line 148
ChildCustomer
findOneByUpdatedAt(
string $updated_at)
Return the first ChildCustomer filtered by the updated_at column
in
CustomerQuery at line 148
ChildCustomer
findOneByVersion(
int $version)
Return the first ChildCustomer filtered by the version column
in
CustomerQuery at line 148
ChildCustomer
findOneByVersionCreatedAt(
string $version_created_at)
Return the first ChildCustomer filtered by the versioncreatedat column
in
CustomerQuery at line 148
ChildCustomer
findOneByVersionCreatedBy(
string $version_created_by)
Return the first ChildCustomer filtered by the versioncreatedby column
in
CustomerQuery at line 148
array
findById(
int $id)
Return ChildCustomer objects filtered by the id column
in
CustomerQuery at line 148
array
findByTitleId(
int $title_id)
Return ChildCustomer objects filtered by the title_id column
in
CustomerQuery at line 148
array
findByLangId(
int $lang_id)
Return ChildCustomer objects filtered by the lang_id column
in
CustomerQuery at line 148
array
findByRef(
string $ref)
Return ChildCustomer objects filtered by the ref column
in
CustomerQuery at line 148
array
findByFirstname(
string $firstname)
Return ChildCustomer objects filtered by the firstname column
in
CustomerQuery at line 148
array
findByLastname(
string $lastname)
Return ChildCustomer objects filtered by the lastname column
in
CustomerQuery at line 148
array
findByEmail(
string $email)
Return ChildCustomer objects filtered by the email column
in
CustomerQuery at line 148
array
findByPassword(
string $password)
Return ChildCustomer objects filtered by the password column
in
CustomerQuery at line 148
array
findByAlgo(
string $algo)
Return ChildCustomer objects filtered by the algo column
in
CustomerQuery at line 148
array
findByReseller(
int $reseller)
Return ChildCustomer objects filtered by the reseller column
in
CustomerQuery at line 148
array
findBySponsor(
string $sponsor)
Return ChildCustomer objects filtered by the sponsor column
in
CustomerQuery at line 148
array
findByDiscount(
string $discount)
Return ChildCustomer objects filtered by the discount column
in
CustomerQuery at line 148
array
findByRememberMeToken(
string $remember_me_token)
Return ChildCustomer objects filtered by the remembermetoken column
in
CustomerQuery at line 148
array
findByRememberMeSerial(
string $remember_me_serial)
Return ChildCustomer objects filtered by the remembermeserial column
in
CustomerQuery at line 148
array
findByEnable(
int $enable)
Return ChildCustomer objects filtered by the enable column
in
CustomerQuery at line 148
array
findByConfirmationToken(
string $confirmation_token)
Return ChildCustomer objects filtered by the confirmation_token column
in
CustomerQuery at line 148
array
findByCreatedAt(
string $created_at)
Return ChildCustomer objects filtered by the created_at column
in
CustomerQuery at line 148
array
findByUpdatedAt(
string $updated_at)
Return ChildCustomer objects filtered by the updated_at column
in
CustomerQuery at line 148
array
findByVersion(
int $version)
Return ChildCustomer objects filtered by the version column
in
CustomerQuery at line 148
array
findByVersionCreatedAt(
string $version_created_at)
Return ChildCustomer objects filtered by the versioncreatedat column
in
CustomerQuery at line 148
array
findByVersionCreatedBy(
string $version_created_by)
Return ChildCustomer objects filtered by the versioncreatedby column