ModuleQuery
class ModuleQuery extends ModuleQuery
Skeleton subclass for performing query and update operations on the 'module' 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.
Methods
Initializes internal state of \Thelia\Model\Base\ModuleQuery object.
Returns a new ChildModuleQuery 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 code column
Filter the query on the version column
Filter the query on the type column
Filter the query on the category column
Filter the query on the activate column
Filter the query on the position column
Filter the query on the full_namespace column
Filter the query on the created_at column
Filter the query on the updated_at column
Filter the query by a related \Thelia\Model\Order object
Adds a JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
Use the OrderRelatedByPaymentModuleId relation Order object
Filter the query by a related \Thelia\Model\Order object
Adds a JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
Use the OrderRelatedByDeliveryModuleId relation Order object
Filter the query by a related \Thelia\Model\AreaDeliveryModule object
Adds a JOIN clause to the query using the AreaDeliveryModule relation
Use the AreaDeliveryModule relation AreaDeliveryModule object
Filter the query by a related \Thelia\Model\ProfileModule object
Adds a JOIN clause to the query using the ProfileModule relation
Use the ProfileModule relation ProfileModule object
Filter the query by a related \Thelia\Model\ModuleImage object
Adds a JOIN clause to the query using the ModuleImage relation
Use the ModuleImage relation ModuleImage object
Filter the query by a related \Thelia\Model\CouponModule object
Adds a JOIN clause to the query using the CouponModule relation
Use the CouponModule relation CouponModule object
Filter the query by a related \Thelia\Model\OrderCouponModule object
Adds a JOIN clause to the query using the OrderCouponModule relation
Use the OrderCouponModule relation OrderCouponModule object
Filter the query by a related \Thelia\Model\ModuleHook object
Adds a JOIN clause to the query using the ModuleHook relation
Use the ModuleHook relation ModuleHook object
Filter the query by a related \Thelia\Model\ModuleConfig object
Adds a JOIN clause to the query using the ModuleConfig relation
Use the ModuleConfig relation ModuleConfig object
Filter the query by a related \Thelia\Model\IgnoredModuleHook object
Adds a JOIN clause to the query using the IgnoredModuleHook relation
Use the IgnoredModuleHook relation IgnoredModuleHook object
Filter the query by a related \Thelia\Model\ModuleI18n object
Adds a JOIN clause to the query using the ModuleI18n relation
Use the ModuleI18n relation ModuleI18n object
Filter the query by a related Coupon object using the coupon_module table as cross reference
Filter the query by a related OrderCoupon object using the ordercouponmodule table as cross reference
Filter the query by a related Hook object using the ignoredmodulehook table as cross reference
Deletes all rows from the module table.
Performs a DELETE on the database, given a ChildModule or Criteria object OR a primary key value.
Adds a JOIN clause to the query using the i18n relation
Adds a JOIN clause to the query and hydrates the related I18n object.
Use the I18n relation query object
Order by the version column
Order by the category column
Order by the activate column
Order by the position column
Order by the full_namespace column
Order by the created_at column
Order by the updated_at column
Adds a LEFT JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
Adds a RIGHT JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
Adds a INNER JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
Adds a LEFT JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
Adds a RIGHT JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
Adds a INNER JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
Adds a LEFT JOIN clause to the query using the AreaDeliveryModule relation
Adds a RIGHT JOIN clause to the query using the AreaDeliveryModule relation
Adds a INNER JOIN clause to the query using the AreaDeliveryModule relation
Adds a LEFT JOIN clause to the query using the ProfileModule relation
Adds a RIGHT JOIN clause to the query using the ProfileModule relation
Adds a INNER JOIN clause to the query using the ProfileModule relation
Adds a LEFT JOIN clause to the query using the ModuleImage relation
Adds a RIGHT JOIN clause to the query using the ModuleImage relation
Adds a INNER JOIN clause to the query using the ModuleImage relation
Adds a LEFT JOIN clause to the query using the CouponModule relation
Adds a RIGHT JOIN clause to the query using the CouponModule relation
Adds a INNER JOIN clause to the query using the CouponModule relation
Adds a LEFT JOIN clause to the query using the OrderCouponModule relation
Adds a RIGHT JOIN clause to the query using the OrderCouponModule relation
Adds a INNER JOIN clause to the query using the OrderCouponModule relation
Adds a LEFT JOIN clause to the query using the ModuleHook relation
Adds a RIGHT JOIN clause to the query using the ModuleHook relation
Adds a INNER JOIN clause to the query using the ModuleHook relation
Adds a LEFT JOIN clause to the query using the ModuleConfig relation
Adds a RIGHT JOIN clause to the query using the ModuleConfig relation
Adds a INNER JOIN clause to the query using the ModuleConfig relation
Adds a LEFT JOIN clause to the query using the IgnoredModuleHook relation
Adds a RIGHT JOIN clause to the query using the IgnoredModuleHook relation
Adds a INNER JOIN clause to the query using the IgnoredModuleHook relation
Adds a LEFT JOIN clause to the query using the ModuleI18n relation
Adds a RIGHT JOIN clause to the query using the ModuleI18n relation
Adds a INNER JOIN clause to the query using the ModuleI18n relation
Return the first ChildModule matching the query
Return the first ChildModule matching the query, or a new ChildModule object populated from the query conditions when no match is found
Return the first ChildModule filtered by the id column
Return the first ChildModule filtered by the code column
Return the first ChildModule filtered by the version column
Return the first ChildModule filtered by the type column
Return the first ChildModule filtered by the category column
Return the first ChildModule filtered by the activate column
Return the first ChildModule filtered by the position column
Return the first ChildModule filtered by the full_namespace column
Return the first ChildModule filtered by the created_at column
Return the first ChildModule filtered by the updated_at column
Return ChildModule objects filtered by the code column
Return ChildModule objects filtered by the version column
Return ChildModule objects filtered by the type column
Return ChildModule objects filtered by the category column
Return ChildModule objects filtered by the activate column
Return ChildModule objects filtered by the position column
Return ChildModule objects filtered by the full_namespace column
Return ChildModule objects filtered by the created_at column
Return ChildModule objects filtered by the updated_at column
No description
No description
No description
if the container is provided, this method will found the module in the container. Reflection is used instead.
Details
in
ModuleQuery at line 131
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\Module',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\ModuleQuery object.
in
ModuleQuery at line 144
static
ModuleQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildModuleQuery object.
in
ModuleQuery at line 174
Module|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
ModuleQuery at line 256
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
in
ModuleQuery at line 277
ModuleQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
in
ModuleQuery at line 290
ModuleQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
in
ModuleQuery at line 314
ModuleQuery
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
ModuleQuery at line 352
ModuleQuery
filterByCode(
string $code = null,
string $comparison = null)
Filter the query on the code column
Example usage:
$query->filterByCode('fooValue'); // WHERE code = 'fooValue'
$query->filterByCode('%fooValue%'); // WHERE code LIKE '%fooValue%'
in
ModuleQuery at line 381
ModuleQuery
filterByVersion(
string $version = null,
string $comparison = null)
Filter the query on the version column
Example usage:
$query->filterByVersion('fooValue'); // WHERE version = 'fooValue'
$query->filterByVersion('%fooValue%'); // WHERE version LIKE '%fooValue%'
in
ModuleQuery at line 413
ModuleQuery
filterByType(
mixed $type = null,
string $comparison = null)
Filter the query on the type column
Example usage:
$query->filterByType(1234); // WHERE type = 1234
$query->filterByType(array(12, 34)); // WHERE type IN (12, 34)
$query->filterByType(array('min' => 12)); // WHERE type > 12
in
ModuleQuery at line 451
ModuleQuery
filterByCategory(
string $category = null,
string $comparison = null)
Filter the query on the category column
Example usage:
$query->filterByCategory('fooValue'); // WHERE category = 'fooValue'
$query->filterByCategory('%fooValue%'); // WHERE category LIKE '%fooValue%'
in
ModuleQuery at line 483
ModuleQuery
filterByActivate(
mixed $activate = null,
string $comparison = null)
Filter the query on the activate column
Example usage:
$query->filterByActivate(1234); // WHERE activate = 1234
$query->filterByActivate(array(12, 34)); // WHERE activate IN (12, 34)
$query->filterByActivate(array('min' => 12)); // WHERE activate > 12
in
ModuleQuery at line 524
ModuleQuery
filterByPosition(
mixed $position = null,
string $comparison = null)
Filter the query on the position column
Example usage:
$query->filterByPosition(1234); // WHERE position = 1234
$query->filterByPosition(array(12, 34)); // WHERE position IN (12, 34)
$query->filterByPosition(array('min' => 12)); // WHERE position > 12
in
ModuleQuery at line 562
ModuleQuery
filterByFullNamespace(
string $fullNamespace = null,
string $comparison = null)
Filter the query on the full_namespace column
Example usage:
$query->filterByFullNamespace('fooValue'); // WHERE fullnamespace = 'fooValue'
$query->filterByFullNamespace('%fooValue%'); // WHERE fullnamespace LIKE '%fooValue%'
in
ModuleQuery at line 596
ModuleQuery
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
ModuleQuery at line 639
ModuleQuery
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
ModuleQuery at line 670
ModuleQuery
filterByOrderRelatedByPaymentModuleId(
Order|ObjectCollection $order,
string $comparison = null)
Filter the query by a related \Thelia\Model\Order object
in
ModuleQuery at line 693
ModuleQuery
joinOrderRelatedByPaymentModuleId(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
in
ModuleQuery at line 728
OrderQuery
useOrderRelatedByPaymentModuleIdQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderRelatedByPaymentModuleId relation Order object
in
ModuleQuery at line 743
ModuleQuery
filterByOrderRelatedByDeliveryModuleId(
Order|ObjectCollection $order,
string $comparison = null)
Filter the query by a related \Thelia\Model\Order object
in
ModuleQuery at line 766
ModuleQuery
joinOrderRelatedByDeliveryModuleId(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
in
ModuleQuery at line 801
OrderQuery
useOrderRelatedByDeliveryModuleIdQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderRelatedByDeliveryModuleId relation Order object
in
ModuleQuery at line 816
ModuleQuery
filterByAreaDeliveryModule(
AreaDeliveryModule|ObjectCollection $areaDeliveryModule,
string $comparison = null)
Filter the query by a related \Thelia\Model\AreaDeliveryModule object
in
ModuleQuery at line 839
ModuleQuery
joinAreaDeliveryModule(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the AreaDeliveryModule relation
in
ModuleQuery at line 874
AreaDeliveryModuleQuery
useAreaDeliveryModuleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the AreaDeliveryModule relation AreaDeliveryModule object
in
ModuleQuery at line 889
ModuleQuery
filterByProfileModule(
ProfileModule|ObjectCollection $profileModule,
string $comparison = null)
Filter the query by a related \Thelia\Model\ProfileModule object
in
ModuleQuery at line 912
ModuleQuery
joinProfileModule(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the ProfileModule relation
in
ModuleQuery at line 947
ProfileModuleQuery
useProfileModuleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the ProfileModule relation ProfileModule object
in
ModuleQuery at line 962
ModuleQuery
filterByModuleImage(
ModuleImage|ObjectCollection $moduleImage,
string $comparison = null)
Filter the query by a related \Thelia\Model\ModuleImage object
in
ModuleQuery at line 985
ModuleQuery
joinModuleImage(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the ModuleImage relation
in
ModuleQuery at line 1020
ModuleImageQuery
useModuleImageQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the ModuleImage relation ModuleImage object
in
ModuleQuery at line 1035
ModuleQuery
filterByCouponModule(
CouponModule|ObjectCollection $couponModule,
string $comparison = null)
Filter the query by a related \Thelia\Model\CouponModule object
in
ModuleQuery at line 1058
ModuleQuery
joinCouponModule(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CouponModule relation
in
ModuleQuery at line 1093
CouponModuleQuery
useCouponModuleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CouponModule relation CouponModule object
in
ModuleQuery at line 1108
ModuleQuery
filterByOrderCouponModule(
OrderCouponModule|ObjectCollection $orderCouponModule,
string $comparison = null)
Filter the query by a related \Thelia\Model\OrderCouponModule object
in
ModuleQuery at line 1131
ModuleQuery
joinOrderCouponModule(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderCouponModule relation
in
ModuleQuery at line 1166
OrderCouponModuleQuery
useOrderCouponModuleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderCouponModule relation OrderCouponModule object
in
ModuleQuery at line 1181
ModuleQuery
filterByModuleHook(
ModuleHook|ObjectCollection $moduleHook,
string $comparison = null)
Filter the query by a related \Thelia\Model\ModuleHook object
in
ModuleQuery at line 1204
ModuleQuery
joinModuleHook(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the ModuleHook relation
in
ModuleQuery at line 1239
ModuleHookQuery
useModuleHookQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the ModuleHook relation ModuleHook object
in
ModuleQuery at line 1254
ModuleQuery
filterByModuleConfig(
ModuleConfig|ObjectCollection $moduleConfig,
string $comparison = null)
Filter the query by a related \Thelia\Model\ModuleConfig object
in
ModuleQuery at line 1277
ModuleQuery
joinModuleConfig(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the ModuleConfig relation
in
ModuleQuery at line 1312
ModuleConfigQuery
useModuleConfigQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the ModuleConfig relation ModuleConfig object
in
ModuleQuery at line 1327
ModuleQuery
filterByIgnoredModuleHook(
IgnoredModuleHook|ObjectCollection $ignoredModuleHook,
string $comparison = null)
Filter the query by a related \Thelia\Model\IgnoredModuleHook object
in
ModuleQuery at line 1350
ModuleQuery
joinIgnoredModuleHook(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the IgnoredModuleHook relation
in
ModuleQuery at line 1385
IgnoredModuleHookQuery
useIgnoredModuleHookQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the IgnoredModuleHook relation IgnoredModuleHook object
in
ModuleQuery at line 1400
ModuleQuery
filterByModuleI18n(
ModuleI18n|ObjectCollection $moduleI18n,
string $comparison = null)
Filter the query by a related \Thelia\Model\ModuleI18n object
in
ModuleQuery at line 1423
ModuleQuery
joinModuleI18n(
string $relationAlias = null,
string $joinType = 'LEFT JOIN')
Adds a JOIN clause to the query using the ModuleI18n relation
in
ModuleQuery at line 1458
ModuleI18nQuery
useModuleI18nQuery(
string $relationAlias = null,
string $joinType = 'LEFT JOIN')
Use the ModuleI18n relation ModuleI18n object
in
ModuleQuery at line 1474
ModuleQuery
filterByCoupon(
Coupon $coupon,
string $comparison = Criteria::EQUAL)
Filter the query by a related Coupon object using the coupon_module table as cross reference
in
ModuleQuery at line 1491
ModuleQuery
filterByOrderCoupon(
OrderCoupon $orderCoupon,
string $comparison = Criteria::EQUAL)
Filter the query by a related OrderCoupon object using the ordercouponmodule table as cross reference
in
ModuleQuery at line 1508
ModuleQuery
filterByHook(
Hook $hook,
string $comparison = Criteria::EQUAL)
Filter the query by a related Hook object using the ignoredmodulehook table as cross reference
in
ModuleQuery at line 1523
ModuleQuery
prune(
Module $module = null)
Exclude object from result
in
ModuleQuery at line 1538
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the module table.
in
ModuleQuery at line 1575
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildModule or Criteria object OR a primary key value.
in
ModuleQuery at line 1616
ModuleQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
in
ModuleQuery at line 1628
ModuleQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
in
ModuleQuery at line 1638
ModuleQuery
lastUpdatedFirst()
Order by update date desc
in
ModuleQuery at line 1648
ModuleQuery
firstUpdatedFirst()
Order by update date asc
in
ModuleQuery at line 1658
ModuleQuery
lastCreatedFirst()
Order by create date desc
in
ModuleQuery at line 1668
ModuleQuery
firstCreatedFirst()
Order by create date asc
in
ModuleQuery at line 1684
ModuleQuery
joinI18n(
string $locale = 'en_US',
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the i18n relation
in
ModuleQuery at line 1702
ModuleQuery
joinWithI18n(
string $locale = 'en_US',
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query and hydrates the related I18n object.
Shortcut for $c->joinI18n($locale)->with()
in
ModuleQuery at line 1723
ModuleI18nQuery
useI18nQuery(
string $locale = 'en_US',
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the I18n relation query object
in
ModuleQuery at line 121
ChildModuleQuery
orderById($order = Criteria::ASC)
Order by the id column
in
ModuleQuery at line 121
ChildModuleQuery
orderByCode($order = Criteria::ASC)
Order by the code column
in
ModuleQuery at line 121
ChildModuleQuery
orderByVersion($order = Criteria::ASC)
Order by the version column
in
ModuleQuery at line 121
ChildModuleQuery
orderByType($order = Criteria::ASC)
Order by the type column
in
ModuleQuery at line 121
ChildModuleQuery
orderByCategory($order = Criteria::ASC)
Order by the category column
in
ModuleQuery at line 121
ChildModuleQuery
orderByActivate($order = Criteria::ASC)
Order by the activate column
in
ModuleQuery at line 121
ChildModuleQuery
orderByPosition($order = Criteria::ASC)
Order by the position column
in
ModuleQuery at line 121
ChildModuleQuery
orderByFullNamespace($order = Criteria::ASC)
Order by the full_namespace column
in
ModuleQuery at line 121
ChildModuleQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
in
ModuleQuery at line 121
ChildModuleQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
in
ModuleQuery at line 121
ChildModuleQuery
groupById()
Group by the id column
in
ModuleQuery at line 121
ChildModuleQuery
groupByCode()
Group by the code column
in
ModuleQuery at line 121
ChildModuleQuery
groupByVersion()
Group by the version column
in
ModuleQuery at line 121
ChildModuleQuery
groupByType()
Group by the type column
in
ModuleQuery at line 121
ChildModuleQuery
groupByCategory()
Group by the category column
in
ModuleQuery at line 121
ChildModuleQuery
groupByActivate()
Group by the activate column
in
ModuleQuery at line 121
ChildModuleQuery
groupByPosition()
Group by the position column
in
ModuleQuery at line 121
ChildModuleQuery
groupByFullNamespace()
Group by the full_namespace column
in
ModuleQuery at line 121
ChildModuleQuery
groupByCreatedAt()
Group by the created_at column
in
ModuleQuery at line 121
ChildModuleQuery
groupByUpdatedAt()
Group by the updated_at column
in
ModuleQuery at line 121
ChildModuleQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
in
ModuleQuery at line 121
ChildModuleQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
in
ModuleQuery at line 121
ChildModuleQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinOrderRelatedByPaymentModuleId($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinOrderRelatedByPaymentModuleId($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinOrderRelatedByPaymentModuleId($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderRelatedByPaymentModuleId relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinOrderRelatedByDeliveryModuleId($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinOrderRelatedByDeliveryModuleId($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinOrderRelatedByDeliveryModuleId($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderRelatedByDeliveryModuleId relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinAreaDeliveryModule($relationAlias = null)
Adds a LEFT JOIN clause to the query using the AreaDeliveryModule relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinAreaDeliveryModule($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the AreaDeliveryModule relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinAreaDeliveryModule($relationAlias = null)
Adds a INNER JOIN clause to the query using the AreaDeliveryModule relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinProfileModule($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ProfileModule relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinProfileModule($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ProfileModule relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinProfileModule($relationAlias = null)
Adds a INNER JOIN clause to the query using the ProfileModule relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinModuleImage($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ModuleImage relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinModuleImage($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ModuleImage relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinModuleImage($relationAlias = null)
Adds a INNER JOIN clause to the query using the ModuleImage relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinCouponModule($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CouponModule relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinCouponModule($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CouponModule relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinCouponModule($relationAlias = null)
Adds a INNER JOIN clause to the query using the CouponModule relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinOrderCouponModule($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderCouponModule relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinOrderCouponModule($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderCouponModule relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinOrderCouponModule($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderCouponModule relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinModuleHook($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ModuleHook relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinModuleHook($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ModuleHook relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinModuleHook($relationAlias = null)
Adds a INNER JOIN clause to the query using the ModuleHook relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinModuleConfig($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ModuleConfig relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinModuleConfig($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ModuleConfig relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinModuleConfig($relationAlias = null)
Adds a INNER JOIN clause to the query using the ModuleConfig relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinIgnoredModuleHook($relationAlias = null)
Adds a LEFT JOIN clause to the query using the IgnoredModuleHook relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinIgnoredModuleHook($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the IgnoredModuleHook relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinIgnoredModuleHook($relationAlias = null)
Adds a INNER JOIN clause to the query using the IgnoredModuleHook relation
in
ModuleQuery at line 121
ChildModuleQuery
leftJoinModuleI18n($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ModuleI18n relation
in
ModuleQuery at line 121
ChildModuleQuery
rightJoinModuleI18n($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ModuleI18n relation
in
ModuleQuery at line 121
ChildModuleQuery
innerJoinModuleI18n($relationAlias = null)
Adds a INNER JOIN clause to the query using the ModuleI18n relation
in
ModuleQuery at line 121
ChildModule
findOne(
ConnectionInterface $con = null)
Return the first ChildModule matching the query
in
ModuleQuery at line 121
ChildModule
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildModule matching the query, or a new ChildModule object populated from the query conditions when no match is found
in
ModuleQuery at line 121
ChildModule
findOneById(
int $id)
Return the first ChildModule filtered by the id column
in
ModuleQuery at line 121
ChildModule
findOneByCode(
string $code)
Return the first ChildModule filtered by the code column
in
ModuleQuery at line 121
ChildModule
findOneByVersion(
string $version)
Return the first ChildModule filtered by the version column
in
ModuleQuery at line 121
ChildModule
findOneByType(
int $type)
Return the first ChildModule filtered by the type column
in
ModuleQuery at line 121
ChildModule
findOneByCategory(
string $category)
Return the first ChildModule filtered by the category column
in
ModuleQuery at line 121
ChildModule
findOneByActivate(
int $activate)
Return the first ChildModule filtered by the activate column
in
ModuleQuery at line 121
ChildModule
findOneByPosition(
int $position)
Return the first ChildModule filtered by the position column
in
ModuleQuery at line 121
ChildModule
findOneByFullNamespace(
string $full_namespace)
Return the first ChildModule filtered by the full_namespace column
in
ModuleQuery at line 121
ChildModule
findOneByCreatedAt(
string $created_at)
Return the first ChildModule filtered by the created_at column
in
ModuleQuery at line 121
ChildModule
findOneByUpdatedAt(
string $updated_at)
Return the first ChildModule filtered by the updated_at column
in
ModuleQuery at line 121
array
findById(
int $id)
Return ChildModule objects filtered by the id column
in
ModuleQuery at line 121
array
findByCode(
string $code)
Return ChildModule objects filtered by the code column
in
ModuleQuery at line 121
array
findByVersion(
string $version)
Return ChildModule objects filtered by the version column
in
ModuleQuery at line 121
array
findByType(
int $type)
Return ChildModule objects filtered by the type column
in
ModuleQuery at line 121
array
findByCategory(
string $category)
Return ChildModule objects filtered by the category column
in
ModuleQuery at line 121
array
findByActivate(
int $activate)
Return ChildModule objects filtered by the activate column
in
ModuleQuery at line 121
array
findByPosition(
int $position)
Return ChildModule objects filtered by the position column
in
ModuleQuery at line 121
array
findByFullNamespace(
string $full_namespace)
Return ChildModule objects filtered by the full_namespace column
in
ModuleQuery at line 121
array
findByCreatedAt(
string $created_at)
Return ChildModule objects filtered by the created_at column
in
ModuleQuery at line 121
array
findByUpdatedAt(
string $updated_at)
Return ChildModule objects filtered by the updated_at column
at line 26
static
array|mixed|PropelObjectCollection
getActivated()
at line 38
static
resetActivated()
at line 48
ModuleQuery
filterActivatedByTypeAndId(
int $moduleType,
int $id)
at line 67
false|BaseModule[]
retrieveVirtualProductDelivery(
ContainerInterface $container = null)
if the container is provided, this method will found the module in the container. Reflection is used instead.
If it's possible use it with the container.
return false if no delivery modules are found, an array of BaseModule otherwise.