class CouponModuleQuery extends ModelCriteria

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

Methods

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

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

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

Returns a new ChildCouponModuleQuery object.

CouponModule|array|mixed
findPk($key, $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(array(12, 56), array(832, 123), array(123, 456)), $con);

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterByCouponId( mixed $couponId = null, string $comparison = null)

Filter the query on the coupon_id column

filterByModuleId( mixed $moduleId = null, string $comparison = null)

Filter the query on the module_id column

filterByCoupon( Coupon|ObjectCollection $coupon, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Coupon relation

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

Use the Coupon relation Coupon object

filterByModule( Module|ObjectCollection $module, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Module relation

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

Use the Module relation Module object

prune( CouponModule $couponModule = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the coupon_module table.

int
delete( ConnectionInterface $con = null)

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

ChildCouponModuleQuery
orderByCouponId($order = Criteria::ASC)

Order by the coupon_id column

ChildCouponModuleQuery
orderByModuleId($order = Criteria::ASC)

Order by the module_id column

ChildCouponModuleQuery
groupByCouponId()

Group by the coupon_id column

ChildCouponModuleQuery
groupByModuleId()

Group by the module_id column

ChildCouponModuleQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildCouponModuleQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildCouponModuleQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildCouponModuleQuery
leftJoinCoupon($relationAlias = null)

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

ChildCouponModuleQuery
rightJoinCoupon($relationAlias = null)

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

ChildCouponModuleQuery
innerJoinCoupon($relationAlias = null)

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

ChildCouponModuleQuery
leftJoinModule($relationAlias = null)

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

ChildCouponModuleQuery
rightJoinModule($relationAlias = null)

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

ChildCouponModuleQuery
innerJoinModule($relationAlias = null)

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

ChildCouponModule
findOne( ConnectionInterface $con = null)

Return the first ChildCouponModule matching the query

ChildCouponModule
findOneOrCreate( ConnectionInterface $con = null)

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

ChildCouponModule
findOneByCouponId( int $coupon_id)

Return the first ChildCouponModule filtered by the coupon_id column

ChildCouponModule
findOneByModuleId( int $module_id)

Return the first ChildCouponModule filtered by the module_id column

array
findByCouponId( int $coupon_id)

Return ChildCouponModule objects filtered by the coupon_id column

array
findByModuleId( int $module_id)

Return ChildCouponModule objects filtered by the module_id column

Details

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

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

Returns a new ChildCouponModuleQuery object.

Parameters

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

Return Value

CouponModuleQuery

at line 105
CouponModule|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);

Parameters

$key
$con

Return Value

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

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

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 209
CouponModuleQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

CouponModuleQuery The current query, for fluid interface

at line 224
CouponModuleQuery 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

CouponModuleQuery The current query, for fluid interface

at line 259
CouponModuleQuery filterByCouponId( mixed $couponId = null, string $comparison = null)

Filter the query on the coupon_id column

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

Parameters

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

CouponModuleQuery The current query, for fluid interface

See also

filterByCoupon()

at line 302
CouponModuleQuery filterByModuleId( mixed $moduleId = null, string $comparison = null)

Filter the query on the module_id column

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

Parameters

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

CouponModuleQuery The current query, for fluid interface

See also

filterByModule()

at line 333
CouponModuleQuery filterByCoupon( Coupon|ObjectCollection $coupon, string $comparison = null)

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

Parameters

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

Return Value

CouponModuleQuery The current query, for fluid interface

at line 358
CouponModuleQuery joinCoupon( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Coupon relation

Parameters

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

Return Value

CouponModuleQuery The current query, for fluid interface

at line 393
CouponQuery useCouponQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

at line 408
CouponModuleQuery filterByModule( Module|ObjectCollection $module, string $comparison = null)

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

Parameters

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

Return Value

CouponModuleQuery The current query, for fluid interface

at line 433
CouponModuleQuery joinModule( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Module relation

Parameters

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

Return Value

CouponModuleQuery The current query, for fluid interface

at line 468
ModuleQuery useModuleQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

at line 482
CouponModuleQuery prune( CouponModule $couponModule = null)

Exclude object from result

Parameters

CouponModule $couponModule Object to remove from the list of results

Return Value

CouponModuleQuery The current query, for fluid interface

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

Deletes all rows from the coupon_module table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

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

Performs a DELETE on the database, given a ChildCouponModule 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 52
ChildCouponModuleQuery orderByCouponId($order = Criteria::ASC)

Order by the coupon_id column

Parameters

$order

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery orderByModuleId($order = Criteria::ASC)

Order by the module_id column

Parameters

$order

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery groupByCouponId()

Group by the coupon_id column

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery groupByModuleId()

Group by the module_id column

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery leftJoinCoupon($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery rightJoinCoupon($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery innerJoinCoupon($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery leftJoinModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery rightJoinModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModuleQuery innerJoinModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildCouponModuleQuery

at line 52
ChildCouponModule findOne( ConnectionInterface $con = null)

Return the first ChildCouponModule matching the query

Parameters

ConnectionInterface $con

Return Value

ChildCouponModule

at line 52
ChildCouponModule findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildCouponModule

at line 52
ChildCouponModule findOneByCouponId( int $coupon_id)

Return the first ChildCouponModule filtered by the coupon_id column

Parameters

int $coupon_id

Return Value

ChildCouponModule

at line 52
ChildCouponModule findOneByModuleId( int $module_id)

Return the first ChildCouponModule filtered by the module_id column

Parameters

int $module_id

Return Value

ChildCouponModule

at line 52
array findByCouponId( int $coupon_id)

Return ChildCouponModule objects filtered by the coupon_id column

Parameters

int $coupon_id

Return Value

array

at line 52
array findByModuleId( int $module_id)

Return ChildCouponModule objects filtered by the module_id column

Parameters

int $module_id

Return Value

array