CustomerVersionQuery
class CustomerVersionQuery extends ModelCriteria
Base class that represents a query for the 'customer_version' table.
Methods
Initializes internal state of \Thelia\Model\Base\CustomerVersionQuery object.
Returns a new ChildCustomerVersionQuery object.
Find object by primary key.
Find objects by primary key
$objs = $c->findPks(array(array(12, 56), array(832, 123), array(123, 456)), $con);
Filter the query by primary key
Filter the query by a list of primary keys
Filter the query on the id column
Filter the query on the 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 on the order_ids column
Filter the query on the order_ids column
Filter the query on the order_versions column
Filter the query on the order_versions column
Filter the query by a related \Thelia\Model\Customer object
Adds a JOIN clause to the query using the Customer relation
Use the Customer relation Customer object
Deletes all rows from the customer_version table.
Performs a DELETE on the database, given a ChildCustomerVersion or Criteria object OR a primary key value.
Order by the id column
Order by the title_id column
Order by the lang_id column
Order by the ref column
Order by the firstname column
Order by the lastname column
Order by the email column
Order by the password column
Order by the algo 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
Order by the order_ids column
Order by the order_versions column
Group by the id column
Group by the title_id column
Group by the lang_id column
Group by the ref column
Group by the firstname column
Group by the lastname column
Group by the email column
Group by the password column
Group by the algo column
Group by the reseller column
Group by the sponsor column
Group by the discount column
Group by the remembermetoken column
Group by the remembermeserial column
Group by the enable column
Group by the confirmation_token column
Group by the created_at column
Group by the updated_at column
Group by the version column
Group by the versioncreatedat column
Group by the versioncreatedby column
Group by the order_ids column
Group by the order_versions column
Adds a LEFT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Adds a INNER JOIN clause to the query
Adds a LEFT JOIN clause to the query using the Customer relation
Adds a RIGHT JOIN clause to the query using the Customer relation
Adds a INNER JOIN clause to the query using the Customer relation
Return the first ChildCustomerVersion matching the query
Return the first ChildCustomerVersion matching the query, or a new ChildCustomerVersion object populated from the query conditions when no match is found
Return the first ChildCustomerVersion filtered by the id column
Return the first ChildCustomerVersion filtered by the title_id column
Return the first ChildCustomerVersion filtered by the lang_id column
Return the first ChildCustomerVersion filtered by the ref column
Return the first ChildCustomerVersion filtered by the firstname column
Return the first ChildCustomerVersion filtered by the lastname column
Return the first ChildCustomerVersion filtered by the email column
Return the first ChildCustomerVersion filtered by the password column
Return the first ChildCustomerVersion filtered by the algo column
Return the first ChildCustomerVersion filtered by the reseller column
Return the first ChildCustomerVersion filtered by the sponsor column
Return the first ChildCustomerVersion filtered by the discount column
Return the first ChildCustomerVersion filtered by the remembermetoken column
Return the first ChildCustomerVersion filtered by the remembermeserial column
Return the first ChildCustomerVersion filtered by the enable column
Return the first ChildCustomerVersion filtered by the confirmation_token column
Return the first ChildCustomerVersion filtered by the created_at column
Return the first ChildCustomerVersion filtered by the updated_at column
Return the first ChildCustomerVersion filtered by the version column
Return the first ChildCustomerVersion filtered by the versioncreatedat column
Return the first ChildCustomerVersion filtered by the versioncreatedby column
Return the first ChildCustomerVersion filtered by the order_ids column
Return the first ChildCustomerVersion filtered by the order_versions column
Return ChildCustomerVersion objects filtered by the id column
Return ChildCustomerVersion objects filtered by the title_id column
Return ChildCustomerVersion objects filtered by the lang_id column
Return ChildCustomerVersion objects filtered by the ref column
Return ChildCustomerVersion objects filtered by the firstname column
Return ChildCustomerVersion objects filtered by the lastname column
Return ChildCustomerVersion objects filtered by the email column
Return ChildCustomerVersion objects filtered by the password column
Return ChildCustomerVersion objects filtered by the algo column
Return ChildCustomerVersion objects filtered by the reseller column
Return ChildCustomerVersion objects filtered by the sponsor column
Return ChildCustomerVersion objects filtered by the discount column
Return ChildCustomerVersion objects filtered by the remembermetoken column
Return ChildCustomerVersion objects filtered by the remembermeserial column
Return ChildCustomerVersion objects filtered by the enable column
Return ChildCustomerVersion objects filtered by the confirmation_token column
Return ChildCustomerVersion objects filtered by the created_at column
Return ChildCustomerVersion objects filtered by the updated_at column
Return ChildCustomerVersion objects filtered by the version column
Return ChildCustomerVersion objects filtered by the versioncreatedat column
Return ChildCustomerVersion objects filtered by the versioncreatedby column
Return ChildCustomerVersion objects filtered by the order_ids column
Return ChildCustomerVersion objects filtered by the order_versions column
Details
at line 142
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\CustomerVersion',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\CustomerVersionQuery object.
at line 155
static
CustomerVersionQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildCustomerVersionQuery object.
at line 185
CustomerVersion|array|mixed
findPk($key, $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(array(12, 34), $con);
at line 268
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(array(12, 56), array(832, 123), array(123, 456)), $con);
at line 289
CustomerVersionQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
at line 304
CustomerVersionQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
at line 339
CustomerVersionQuery
filterById(
mixed $id = null,
string $comparison = null)
Filter the query on the id column
Example usage:
$query->filterById(1234); // WHERE id = 1234
$query->filterById(array(12, 34)); // WHERE id IN (12, 34)
$query->filterById(array('min' => 12)); // WHERE id > 12
at line 380
CustomerVersionQuery
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
at line 421
CustomerVersionQuery
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
at line 459
CustomerVersionQuery
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%'
at line 488
CustomerVersionQuery
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%'
at line 517
CustomerVersionQuery
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%'
at line 546
CustomerVersionQuery
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%'
at line 575
CustomerVersionQuery
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%'
at line 604
CustomerVersionQuery
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%'
at line 636
CustomerVersionQuery
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
at line 674
CustomerVersionQuery
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%'
at line 706
CustomerVersionQuery
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
at line 744
CustomerVersionQuery
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%'
at line 773
CustomerVersionQuery
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%'
at line 805
CustomerVersionQuery
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
at line 843
CustomerVersionQuery
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%'
at line 877
CustomerVersionQuery
filterByCreatedAt(
mixed $createdAt = null,
string $comparison = null)
Filter the query on the created_at column
Example usage:
$query->filterByCreatedAt('2011-03-14'); // WHERE createdat = '2011-03-14'
$query->filterByCreatedAt('now'); // WHERE createdat = '2011-03-14'
$query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'
at line 920
CustomerVersionQuery
filterByUpdatedAt(
mixed $updatedAt = null,
string $comparison = null)
Filter the query on the updated_at column
Example usage:
$query->filterByUpdatedAt('2011-03-14'); // WHERE updatedat = '2011-03-14'
$query->filterByUpdatedAt('now'); // WHERE updatedat = '2011-03-14'
$query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'
at line 961
CustomerVersionQuery
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
at line 1004
CustomerVersionQuery
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'
at line 1042
CustomerVersionQuery
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%'
at line 1064
CustomerVersionQuery
filterByOrderIds(
array $orderIds = null,
string $comparison = null)
Filter the query on the order_ids column
at line 1113
CustomerVersionQuery
filterByOrderId(
mixed $orderIds = null,
string $comparison = null)
Filter the query on the order_ids column
at line 1145
CustomerVersionQuery
filterByOrderVersions(
array $orderVersions = null,
string $comparison = null)
Filter the query on the order_versions column
at line 1194
CustomerVersionQuery
filterByOrderVersion(
mixed $orderVersions = null,
string $comparison = null)
Filter the query on the order_versions column
at line 1226
CustomerVersionQuery
filterByCustomer(
Customer|ObjectCollection $customer,
string $comparison = null)
Filter the query by a related \Thelia\Model\Customer object
at line 1251
CustomerVersionQuery
joinCustomer(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Customer relation
at line 1286
CustomerQuery
useCustomerQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Customer relation Customer object
at line 1300
CustomerVersionQuery
prune(
CustomerVersion $customerVersion = null)
Exclude object from result
at line 1317
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the customer_version table.
at line 1354
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildCustomerVersion or Criteria object OR a primary key value.
at line 132
ChildCustomerVersionQuery
orderById($order = Criteria::ASC)
Order by the id column
at line 132
ChildCustomerVersionQuery
orderByTitleId($order = Criteria::ASC)
Order by the title_id column
at line 132
ChildCustomerVersionQuery
orderByLangId($order = Criteria::ASC)
Order by the lang_id column
at line 132
ChildCustomerVersionQuery
orderByRef($order = Criteria::ASC)
Order by the ref column
at line 132
ChildCustomerVersionQuery
orderByFirstname($order = Criteria::ASC)
Order by the firstname column
at line 132
ChildCustomerVersionQuery
orderByLastname($order = Criteria::ASC)
Order by the lastname column
at line 132
ChildCustomerVersionQuery
orderByEmail($order = Criteria::ASC)
Order by the email column
at line 132
ChildCustomerVersionQuery
orderByPassword($order = Criteria::ASC)
Order by the password column
at line 132
ChildCustomerVersionQuery
orderByAlgo($order = Criteria::ASC)
Order by the algo column
at line 132
ChildCustomerVersionQuery
orderByReseller($order = Criteria::ASC)
Order by the reseller column
at line 132
ChildCustomerVersionQuery
orderBySponsor($order = Criteria::ASC)
Order by the sponsor column
at line 132
ChildCustomerVersionQuery
orderByDiscount($order = Criteria::ASC)
Order by the discount column
at line 132
ChildCustomerVersionQuery
orderByRememberMeToken($order = Criteria::ASC)
Order by the remembermetoken column
at line 132
ChildCustomerVersionQuery
orderByRememberMeSerial($order = Criteria::ASC)
Order by the remembermeserial column
at line 132
ChildCustomerVersionQuery
orderByEnable($order = Criteria::ASC)
Order by the enable column
at line 132
ChildCustomerVersionQuery
orderByConfirmationToken($order = Criteria::ASC)
Order by the confirmation_token column
at line 132
ChildCustomerVersionQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
at line 132
ChildCustomerVersionQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
at line 132
ChildCustomerVersionQuery
orderByVersion($order = Criteria::ASC)
Order by the version column
at line 132
ChildCustomerVersionQuery
orderByVersionCreatedAt($order = Criteria::ASC)
Order by the versioncreatedat column
at line 132
ChildCustomerVersionQuery
orderByVersionCreatedBy($order = Criteria::ASC)
Order by the versioncreatedby column
at line 132
ChildCustomerVersionQuery
orderByOrderIds($order = Criteria::ASC)
Order by the order_ids column
at line 132
ChildCustomerVersionQuery
orderByOrderVersions($order = Criteria::ASC)
Order by the order_versions column
at line 132
ChildCustomerVersionQuery
groupById()
Group by the id column
at line 132
ChildCustomerVersionQuery
groupByTitleId()
Group by the title_id column
at line 132
ChildCustomerVersionQuery
groupByLangId()
Group by the lang_id column
at line 132
ChildCustomerVersionQuery
groupByRef()
Group by the ref column
at line 132
ChildCustomerVersionQuery
groupByFirstname()
Group by the firstname column
at line 132
ChildCustomerVersionQuery
groupByLastname()
Group by the lastname column
at line 132
ChildCustomerVersionQuery
groupByEmail()
Group by the email column
at line 132
ChildCustomerVersionQuery
groupByPassword()
Group by the password column
at line 132
ChildCustomerVersionQuery
groupByAlgo()
Group by the algo column
at line 132
ChildCustomerVersionQuery
groupByReseller()
Group by the reseller column
at line 132
ChildCustomerVersionQuery
groupBySponsor()
Group by the sponsor column
at line 132
ChildCustomerVersionQuery
groupByDiscount()
Group by the discount column
at line 132
ChildCustomerVersionQuery
groupByRememberMeToken()
Group by the remembermetoken column
at line 132
ChildCustomerVersionQuery
groupByRememberMeSerial()
Group by the remembermeserial column
at line 132
ChildCustomerVersionQuery
groupByEnable()
Group by the enable column
at line 132
ChildCustomerVersionQuery
groupByConfirmationToken()
Group by the confirmation_token column
at line 132
ChildCustomerVersionQuery
groupByCreatedAt()
Group by the created_at column
at line 132
ChildCustomerVersionQuery
groupByUpdatedAt()
Group by the updated_at column
at line 132
ChildCustomerVersionQuery
groupByVersion()
Group by the version column
at line 132
ChildCustomerVersionQuery
groupByVersionCreatedAt()
Group by the versioncreatedat column
at line 132
ChildCustomerVersionQuery
groupByVersionCreatedBy()
Group by the versioncreatedby column
at line 132
ChildCustomerVersionQuery
groupByOrderIds()
Group by the order_ids column
at line 132
ChildCustomerVersionQuery
groupByOrderVersions()
Group by the order_versions column
at line 132
ChildCustomerVersionQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
at line 132
ChildCustomerVersionQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
at line 132
ChildCustomerVersionQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
at line 132
ChildCustomerVersionQuery
leftJoinCustomer($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Customer relation
at line 132
ChildCustomerVersionQuery
rightJoinCustomer($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Customer relation
at line 132
ChildCustomerVersionQuery
innerJoinCustomer($relationAlias = null)
Adds a INNER JOIN clause to the query using the Customer relation
at line 132
ChildCustomerVersion
findOne(
ConnectionInterface $con = null)
Return the first ChildCustomerVersion matching the query
at line 132
ChildCustomerVersion
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildCustomerVersion matching the query, or a new ChildCustomerVersion object populated from the query conditions when no match is found
at line 132
ChildCustomerVersion
findOneById(
int $id)
Return the first ChildCustomerVersion filtered by the id column
at line 132
ChildCustomerVersion
findOneByTitleId(
int $title_id)
Return the first ChildCustomerVersion filtered by the title_id column
at line 132
ChildCustomerVersion
findOneByLangId(
int $lang_id)
Return the first ChildCustomerVersion filtered by the lang_id column
at line 132
ChildCustomerVersion
findOneByRef(
string $ref)
Return the first ChildCustomerVersion filtered by the ref column
at line 132
ChildCustomerVersion
findOneByFirstname(
string $firstname)
Return the first ChildCustomerVersion filtered by the firstname column
at line 132
ChildCustomerVersion
findOneByLastname(
string $lastname)
Return the first ChildCustomerVersion filtered by the lastname column
at line 132
ChildCustomerVersion
findOneByEmail(
string $email)
Return the first ChildCustomerVersion filtered by the email column
at line 132
ChildCustomerVersion
findOneByPassword(
string $password)
Return the first ChildCustomerVersion filtered by the password column
at line 132
ChildCustomerVersion
findOneByAlgo(
string $algo)
Return the first ChildCustomerVersion filtered by the algo column
at line 132
ChildCustomerVersion
findOneByReseller(
int $reseller)
Return the first ChildCustomerVersion filtered by the reseller column
at line 132
ChildCustomerVersion
findOneBySponsor(
string $sponsor)
Return the first ChildCustomerVersion filtered by the sponsor column
at line 132
ChildCustomerVersion
findOneByDiscount(
string $discount)
Return the first ChildCustomerVersion filtered by the discount column
at line 132
ChildCustomerVersion
findOneByRememberMeToken(
string $remember_me_token)
Return the first ChildCustomerVersion filtered by the remembermetoken column
at line 132
ChildCustomerVersion
findOneByRememberMeSerial(
string $remember_me_serial)
Return the first ChildCustomerVersion filtered by the remembermeserial column
at line 132
ChildCustomerVersion
findOneByEnable(
int $enable)
Return the first ChildCustomerVersion filtered by the enable column
at line 132
ChildCustomerVersion
findOneByConfirmationToken(
string $confirmation_token)
Return the first ChildCustomerVersion filtered by the confirmation_token column
at line 132
ChildCustomerVersion
findOneByCreatedAt(
string $created_at)
Return the first ChildCustomerVersion filtered by the created_at column
at line 132
ChildCustomerVersion
findOneByUpdatedAt(
string $updated_at)
Return the first ChildCustomerVersion filtered by the updated_at column
at line 132
ChildCustomerVersion
findOneByVersion(
int $version)
Return the first ChildCustomerVersion filtered by the version column
at line 132
ChildCustomerVersion
findOneByVersionCreatedAt(
string $version_created_at)
Return the first ChildCustomerVersion filtered by the versioncreatedat column
at line 132
ChildCustomerVersion
findOneByVersionCreatedBy(
string $version_created_by)
Return the first ChildCustomerVersion filtered by the versioncreatedby column
at line 132
ChildCustomerVersion
findOneByOrderIds(
array $order_ids)
Return the first ChildCustomerVersion filtered by the order_ids column
at line 132
ChildCustomerVersion
findOneByOrderVersions(
array $order_versions)
Return the first ChildCustomerVersion filtered by the order_versions column
at line 132
array
findById(
int $id)
Return ChildCustomerVersion objects filtered by the id column
at line 132
array
findByTitleId(
int $title_id)
Return ChildCustomerVersion objects filtered by the title_id column
at line 132
array
findByLangId(
int $lang_id)
Return ChildCustomerVersion objects filtered by the lang_id column
at line 132
array
findByRef(
string $ref)
Return ChildCustomerVersion objects filtered by the ref column
at line 132
array
findByFirstname(
string $firstname)
Return ChildCustomerVersion objects filtered by the firstname column
at line 132
array
findByLastname(
string $lastname)
Return ChildCustomerVersion objects filtered by the lastname column
at line 132
array
findByEmail(
string $email)
Return ChildCustomerVersion objects filtered by the email column
at line 132
array
findByPassword(
string $password)
Return ChildCustomerVersion objects filtered by the password column
at line 132
array
findByAlgo(
string $algo)
Return ChildCustomerVersion objects filtered by the algo column
at line 132
array
findByReseller(
int $reseller)
Return ChildCustomerVersion objects filtered by the reseller column
at line 132
array
findBySponsor(
string $sponsor)
Return ChildCustomerVersion objects filtered by the sponsor column
at line 132
array
findByDiscount(
string $discount)
Return ChildCustomerVersion objects filtered by the discount column
at line 132
array
findByRememberMeToken(
string $remember_me_token)
Return ChildCustomerVersion objects filtered by the remembermetoken column
at line 132
array
findByRememberMeSerial(
string $remember_me_serial)
Return ChildCustomerVersion objects filtered by the remembermeserial column
at line 132
array
findByEnable(
int $enable)
Return ChildCustomerVersion objects filtered by the enable column
at line 132
array
findByConfirmationToken(
string $confirmation_token)
Return ChildCustomerVersion objects filtered by the confirmation_token column
at line 132
array
findByCreatedAt(
string $created_at)
Return ChildCustomerVersion objects filtered by the created_at column
at line 132
array
findByUpdatedAt(
string $updated_at)
Return ChildCustomerVersion objects filtered by the updated_at column
at line 132
array
findByVersion(
int $version)
Return ChildCustomerVersion objects filtered by the version column
at line 132
array
findByVersionCreatedAt(
string $version_created_at)
Return ChildCustomerVersion objects filtered by the versioncreatedat column
at line 132
array
findByVersionCreatedBy(
string $version_created_by)
Return ChildCustomerVersion objects filtered by the versioncreatedby column
at line 132
array
findByOrderIds(
array $order_ids)
Return ChildCustomerVersion objects filtered by the order_ids column
at line 132
array
findByOrderVersions(
array $order_versions)
Return ChildCustomerVersion objects filtered by the order_versions column