IgnoredModuleHookQuery
class IgnoredModuleHookQuery extends IgnoredModuleHookQuery
Skeleton subclass for performing query and update operations on the 'ignoredmodulehook' 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\IgnoredModuleHookQuery object.
Returns a new ChildIgnoredModuleHookQuery 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 module_id column
Filter the query on the hook_id column
Filter the query on the method column
Filter the query on the classname 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\Module object
Adds a JOIN clause to the query using the Module relation
Use the Module relation Module object
Filter the query by a related \Thelia\Model\Hook object
Adds a JOIN clause to the query using the Hook relation
Use the Hook relation Hook object
Deletes all rows from the ignoredmodulehook table.
Performs a DELETE on the database, given a ChildIgnoredModuleHook or Criteria object OR a primary key value.
Filter by the latest updated
Filter by the latest created
Order by the module_id column
Order by the hook_id column
Order by the method column
Order by the classname column
Order by the created_at column
Order by the updated_at column
Group by the module_id column
Group by the classname column
Group by the created_at column
Group by the updated_at 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 Module relation
Adds a RIGHT JOIN clause to the query using the Module relation
Adds a INNER JOIN clause to the query using the Module relation
Adds a LEFT JOIN clause to the query using the Hook relation
Adds a RIGHT JOIN clause to the query using the Hook relation
Adds a INNER JOIN clause to the query using the Hook relation
Return the first ChildIgnoredModuleHook matching the query
Return the first ChildIgnoredModuleHook matching the query, or a new ChildIgnoredModuleHook object populated from the query conditions when no match is found
Return the first ChildIgnoredModuleHook filtered by the module_id column
Return the first ChildIgnoredModuleHook filtered by the hook_id column
Return the first ChildIgnoredModuleHook filtered by the method column
Return the first ChildIgnoredModuleHook filtered by the classname column
Return the first ChildIgnoredModuleHook filtered by the created_at column
Return the first ChildIgnoredModuleHook filtered by the updated_at column
Return ChildIgnoredModuleHook objects filtered by the module_id column
Return ChildIgnoredModuleHook objects filtered by the hook_id column
Return ChildIgnoredModuleHook objects filtered by the method column
Return ChildIgnoredModuleHook objects filtered by the classname column
Return ChildIgnoredModuleHook objects filtered by the created_at column
Return ChildIgnoredModuleHook objects filtered by the updated_at column
Details
in
IgnoredModuleHookQuery at line 78
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\IgnoredModuleHook',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\IgnoredModuleHookQuery object.
in
IgnoredModuleHookQuery at line 91
static
IgnoredModuleHookQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildIgnoredModuleHookQuery object.
in
IgnoredModuleHookQuery at line 121
IgnoredModuleHook|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);
in
IgnoredModuleHookQuery at line 204
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);
in
IgnoredModuleHookQuery at line 225
IgnoredModuleHookQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
in
IgnoredModuleHookQuery at line 240
IgnoredModuleHookQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
in
IgnoredModuleHookQuery at line 275
IgnoredModuleHookQuery
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
in
IgnoredModuleHookQuery at line 318
IgnoredModuleHookQuery
filterByHookId(
mixed $hookId = null,
string $comparison = null)
Filter the query on the hook_id column
Example usage:
$query->filterByHookId(1234); // WHERE hookid = 1234
$query->filterByHookId(array(12, 34)); // WHERE hookid IN (12, 34)
$query->filterByHookId(array('min' => 12)); // WHERE hook_id > 12
in
IgnoredModuleHookQuery at line 356
IgnoredModuleHookQuery
filterByMethod(
string $method = null,
string $comparison = null)
Filter the query on the method column
Example usage:
$query->filterByMethod('fooValue'); // WHERE method = 'fooValue'
$query->filterByMethod('%fooValue%'); // WHERE method LIKE '%fooValue%'
in
IgnoredModuleHookQuery at line 385
IgnoredModuleHookQuery
filterByClassname(
string $classname = null,
string $comparison = null)
Filter the query on the classname column
Example usage:
$query->filterByClassname('fooValue'); // WHERE classname = 'fooValue'
$query->filterByClassname('%fooValue%'); // WHERE classname LIKE '%fooValue%'
in
IgnoredModuleHookQuery at line 419
IgnoredModuleHookQuery
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
IgnoredModuleHookQuery at line 462
IgnoredModuleHookQuery
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
IgnoredModuleHookQuery at line 493
IgnoredModuleHookQuery
filterByModule(
Module|ObjectCollection $module,
string $comparison = null)
Filter the query by a related \Thelia\Model\Module object
in
IgnoredModuleHookQuery at line 518
IgnoredModuleHookQuery
joinModule(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Module relation
in
IgnoredModuleHookQuery at line 553
ModuleQuery
useModuleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Module relation Module object
in
IgnoredModuleHookQuery at line 568
IgnoredModuleHookQuery
filterByHook(
Hook|ObjectCollection $hook,
string $comparison = null)
Filter the query by a related \Thelia\Model\Hook object
in
IgnoredModuleHookQuery at line 593
IgnoredModuleHookQuery
joinHook(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Hook relation
in
IgnoredModuleHookQuery at line 628
HookQuery
useHookQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Hook relation Hook object
in
IgnoredModuleHookQuery at line 642
IgnoredModuleHookQuery
prune(
IgnoredModuleHook $ignoredModuleHook = null)
Exclude object from result
in
IgnoredModuleHookQuery at line 659
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the ignoredmodulehook table.
in
IgnoredModuleHookQuery at line 696
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildIgnoredModuleHook or Criteria object OR a primary key value.
in
IgnoredModuleHookQuery at line 737
IgnoredModuleHookQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
in
IgnoredModuleHookQuery at line 749
IgnoredModuleHookQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
in
IgnoredModuleHookQuery at line 759
IgnoredModuleHookQuery
lastUpdatedFirst()
Order by update date desc
in
IgnoredModuleHookQuery at line 769
IgnoredModuleHookQuery
firstUpdatedFirst()
Order by update date asc
in
IgnoredModuleHookQuery at line 779
IgnoredModuleHookQuery
lastCreatedFirst()
Order by create date desc
in
IgnoredModuleHookQuery at line 789
IgnoredModuleHookQuery
firstCreatedFirst()
Order by create date asc
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
orderByModuleId($order = Criteria::ASC)
Order by the module_id column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
orderByHookId($order = Criteria::ASC)
Order by the hook_id column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
orderByMethod($order = Criteria::ASC)
Order by the method column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
orderByClassname($order = Criteria::ASC)
Order by the classname column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
groupByModuleId()
Group by the module_id column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
groupByHookId()
Group by the hook_id column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
groupByMethod()
Group by the method column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
groupByClassname()
Group by the classname column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
groupByCreatedAt()
Group by the created_at column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
groupByUpdatedAt()
Group by the updated_at column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
leftJoinModule($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Module relation
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
rightJoinModule($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Module relation
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
innerJoinModule($relationAlias = null)
Adds a INNER JOIN clause to the query using the Module relation
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
leftJoinHook($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Hook relation
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
rightJoinHook($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Hook relation
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHookQuery
innerJoinHook($relationAlias = null)
Adds a INNER JOIN clause to the query using the Hook relation
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOne(
ConnectionInterface $con = null)
Return the first ChildIgnoredModuleHook matching the query
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildIgnoredModuleHook matching the query, or a new ChildIgnoredModuleHook object populated from the query conditions when no match is found
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOneByModuleId(
int $module_id)
Return the first ChildIgnoredModuleHook filtered by the module_id column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOneByHookId(
int $hook_id)
Return the first ChildIgnoredModuleHook filtered by the hook_id column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOneByMethod(
string $method)
Return the first ChildIgnoredModuleHook filtered by the method column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOneByClassname(
string $classname)
Return the first ChildIgnoredModuleHook filtered by the classname column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOneByCreatedAt(
string $created_at)
Return the first ChildIgnoredModuleHook filtered by the created_at column
in
IgnoredModuleHookQuery at line 68
ChildIgnoredModuleHook
findOneByUpdatedAt(
string $updated_at)
Return the first ChildIgnoredModuleHook filtered by the updated_at column
in
IgnoredModuleHookQuery at line 68
array
findByModuleId(
int $module_id)
Return ChildIgnoredModuleHook objects filtered by the module_id column
in
IgnoredModuleHookQuery at line 68
array
findByHookId(
int $hook_id)
Return ChildIgnoredModuleHook objects filtered by the hook_id column
in
IgnoredModuleHookQuery at line 68
array
findByMethod(
string $method)
Return ChildIgnoredModuleHook objects filtered by the method column
in
IgnoredModuleHookQuery at line 68
array
findByClassname(
string $classname)
Return ChildIgnoredModuleHook objects filtered by the classname column
in
IgnoredModuleHookQuery at line 68
array
findByCreatedAt(
string $created_at)
Return ChildIgnoredModuleHook objects filtered by the created_at column
in
IgnoredModuleHookQuery at line 68
array
findByUpdatedAt(
string $updated_at)
Return ChildIgnoredModuleHook objects filtered by the updated_at column