class ModuleHookQuery extends ModuleHookQuery

Skeleton subclass for performing query and update operations on the 'module_hook' 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

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

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

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

Returns a new ChildModuleHookQuery object.

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

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

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

Filter the query on the module_id column

filterByHookId( mixed $hookId = null, string $comparison = null)

Filter the query on the hook_id column

filterByClassname( string $classname = null, string $comparison = null)

Filter the query on the classname column

filterByMethod( string $method = null, string $comparison = null)

Filter the query on the method column

filterByActive( boolean|string $active = null, string $comparison = null)

Filter the query on the active column

filterByHookActive( boolean|string $hookActive = null, string $comparison = null)

Filter the query on the hook_active column

filterByModuleActive( boolean|string $moduleActive = null, string $comparison = null)

Filter the query on the module_active column

filterByPosition( mixed $position = null, string $comparison = null)

Filter the query on the position column

filterByTemplates( string $templates = null, string $comparison = null)

Filter the query on the templates column

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

filterByHook( Hook|ObjectCollection $hook, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Hook relation

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

Use the Hook relation Hook object

prune( ModuleHook $moduleHook = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the module_hook table.

int
delete( ConnectionInterface $con = null)

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

ChildModuleHookQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildModuleHookQuery
orderByModuleId($order = Criteria::ASC)

Order by the module_id column

ChildModuleHookQuery
orderByHookId($order = Criteria::ASC)

Order by the hook_id column

ChildModuleHookQuery
orderByClassname($order = Criteria::ASC)

Order by the classname column

ChildModuleHookQuery
orderByMethod($order = Criteria::ASC)

Order by the method column

ChildModuleHookQuery
orderByActive($order = Criteria::ASC)

Order by the active column

ChildModuleHookQuery
orderByHookActive($order = Criteria::ASC)

Order by the hook_active column

ChildModuleHookQuery
orderByModuleActive($order = Criteria::ASC)

Order by the module_active column

ChildModuleHookQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildModuleHookQuery
orderByTemplates($order = Criteria::ASC)

Order by the templates column

ChildModuleHookQuery
groupById()

Group by the id column

ChildModuleHookQuery
groupByModuleId()

Group by the module_id column

ChildModuleHookQuery
groupByHookId()

Group by the hook_id column

ChildModuleHookQuery
groupByClassname()

Group by the classname column

ChildModuleHookQuery
groupByMethod()

Group by the method column

ChildModuleHookQuery
groupByActive()

Group by the active column

ChildModuleHookQuery
groupByHookActive()

Group by the hook_active column

ChildModuleHookQuery
groupByModuleActive()

Group by the module_active column

ChildModuleHookQuery
groupByPosition()

Group by the position column

ChildModuleHookQuery
groupByTemplates()

Group by the templates column

ChildModuleHookQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildModuleHookQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildModuleHookQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildModuleHookQuery
leftJoinModule($relationAlias = null)

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

ChildModuleHookQuery
rightJoinModule($relationAlias = null)

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

ChildModuleHookQuery
innerJoinModule($relationAlias = null)

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

ChildModuleHookQuery
leftJoinHook($relationAlias = null)

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

ChildModuleHookQuery
rightJoinHook($relationAlias = null)

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

ChildModuleHookQuery
innerJoinHook($relationAlias = null)

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

ChildModuleHook
findOne( ConnectionInterface $con = null)

Return the first ChildModuleHook matching the query

ChildModuleHook
findOneOrCreate( ConnectionInterface $con = null)

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

ChildModuleHook
findOneById( int $id)

Return the first ChildModuleHook filtered by the id column

ChildModuleHook
findOneByModuleId( int $module_id)

Return the first ChildModuleHook filtered by the module_id column

ChildModuleHook
findOneByHookId( int $hook_id)

Return the first ChildModuleHook filtered by the hook_id column

ChildModuleHook
findOneByClassname( string $classname)

Return the first ChildModuleHook filtered by the classname column

ChildModuleHook
findOneByMethod( string $method)

Return the first ChildModuleHook filtered by the method column

ChildModuleHook
findOneByActive( boolean $active)

Return the first ChildModuleHook filtered by the active column

ChildModuleHook
findOneByHookActive( boolean $hook_active)

Return the first ChildModuleHook filtered by the hook_active column

ChildModuleHook
findOneByModuleActive( boolean $module_active)

Return the first ChildModuleHook filtered by the module_active column

ChildModuleHook
findOneByPosition( int $position)

Return the first ChildModuleHook filtered by the position column

ChildModuleHook
findOneByTemplates( string $templates)

Return the first ChildModuleHook filtered by the templates column

array
findById( int $id)

Return ChildModuleHook objects filtered by the id column

array
findByModuleId( int $module_id)

Return ChildModuleHook objects filtered by the module_id column

array
findByHookId( int $hook_id)

Return ChildModuleHook objects filtered by the hook_id column

array
findByClassname( string $classname)

Return ChildModuleHook objects filtered by the classname column

array
findByMethod( string $method)

Return ChildModuleHook objects filtered by the method column

array
findByActive( boolean $active)

Return ChildModuleHook objects filtered by the active column

array
findByHookActive( boolean $hook_active)

Return ChildModuleHook objects filtered by the hook_active column

array
findByModuleActive( boolean $module_active)

Return ChildModuleHook objects filtered by the module_active column

array
findByPosition( int $position)

Return ChildModuleHook objects filtered by the position column

array
findByTemplates( string $templates)

Return ChildModuleHook objects filtered by the templates column

Details

in ModuleHookQuery at line 94
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\ModuleHook', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\ModuleHookQuery 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'

in ModuleHookQuery at line 107
static ModuleHookQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildModuleHookQuery object.

Parameters

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

Return Value

ModuleHookQuery

in ModuleHookQuery at line 137
ModuleHook|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);

Parameters

mixed $key Primary key to use for the query
ConnectionInterface $con an optional connection object

Return Value

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

in ModuleHookQuery at line 219
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $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

in ModuleHookQuery at line 240
ModuleHookQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 253
ModuleHookQuery 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

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 277
ModuleHookQuery 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

Parameters

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

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 320
ModuleHookQuery 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

ModuleHookQuery The current query, for fluid interface

See also

filterByModule()

in ModuleHookQuery at line 363
ModuleHookQuery 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

Parameters

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

ModuleHookQuery The current query, for fluid interface

See also

filterByHook()

in ModuleHookQuery at line 401
ModuleHookQuery 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%'

Parameters

string $classname The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 430
ModuleHookQuery 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%'

Parameters

string $method The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 462
ModuleHookQuery filterByActive( boolean|string $active = null, string $comparison = null)

Filter the query on the active column

Example usage: $query->filterByActive(true); // WHERE active = true $query->filterByActive('yes'); // WHERE active = true

Parameters

boolean|string $active The value to use as filter. Non-boolean arguments are converted using the following rules: * 1, '1', 'true', 'on', and 'yes' are converted to boolean true * 0, '0', 'false', 'off', and 'no' are converted to boolean false Check on string values is case insensitive (so 'FaLsE' is seen as 'false').
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 489
ModuleHookQuery filterByHookActive( boolean|string $hookActive = null, string $comparison = null)

Filter the query on the hook_active column

Example usage: $query->filterByHookActive(true); // WHERE hookactive = true $query->filterByHookActive('yes'); // WHERE hookactive = true

Parameters

boolean|string $hookActive The value to use as filter. Non-boolean arguments are converted using the following rules: * 1, '1', 'true', 'on', and 'yes' are converted to boolean true * 0, '0', 'false', 'off', and 'no' are converted to boolean false Check on string values is case insensitive (so 'FaLsE' is seen as 'false').
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 516
ModuleHookQuery filterByModuleActive( boolean|string $moduleActive = null, string $comparison = null)

Filter the query on the module_active column

Example usage: $query->filterByModuleActive(true); // WHERE moduleactive = true $query->filterByModuleActive('yes'); // WHERE moduleactive = true

Parameters

boolean|string $moduleActive The value to use as filter. Non-boolean arguments are converted using the following rules: * 1, '1', 'true', 'on', and 'yes' are converted to boolean true * 0, '0', 'false', 'off', and 'no' are converted to boolean false Check on string values is case insensitive (so 'FaLsE' is seen as 'false').
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 543
ModuleHookQuery 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

Parameters

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

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 581
ModuleHookQuery filterByTemplates( string $templates = null, string $comparison = null)

Filter the query on the templates column

Example usage: $query->filterByTemplates('fooValue'); // WHERE templates = 'fooValue' $query->filterByTemplates('%fooValue%'); // WHERE templates LIKE '%fooValue%'

Parameters

string $templates The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 603
ModuleHookQuery 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

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 628
ModuleHookQuery 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

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 663
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()

in ModuleHookQuery at line 678
ModuleHookQuery filterByHook( Hook|ObjectCollection $hook, string $comparison = null)

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

Parameters

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

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 703
ModuleHookQuery joinHook( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Hook relation

Parameters

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

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 738
HookQuery useHookQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

in ModuleHookQuery at line 752
ModuleHookQuery prune( ModuleHook $moduleHook = null)

Exclude object from result

Parameters

ModuleHook $moduleHook Object to remove from the list of results

Return Value

ModuleHookQuery The current query, for fluid interface

in ModuleHookQuery at line 767
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the module_hook table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

in ModuleHookQuery at line 804
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildModuleHook 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.

in ModuleHookQuery at line 84
ChildModuleHookQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByModuleId($order = Criteria::ASC)

Order by the module_id column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByHookId($order = Criteria::ASC)

Order by the hook_id column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByClassname($order = Criteria::ASC)

Order by the classname column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByMethod($order = Criteria::ASC)

Order by the method column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByActive($order = Criteria::ASC)

Order by the active column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByHookActive($order = Criteria::ASC)

Order by the hook_active column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByModuleActive($order = Criteria::ASC)

Order by the module_active column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery orderByTemplates($order = Criteria::ASC)

Order by the templates column

Parameters

$order

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupById()

Group by the id column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByModuleId()

Group by the module_id column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByHookId()

Group by the hook_id column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByClassname()

Group by the classname column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByMethod()

Group by the method column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByActive()

Group by the active column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByHookActive()

Group by the hook_active column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByModuleActive()

Group by the module_active column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByPosition()

Group by the position column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery groupByTemplates()

Group by the templates column

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery leftJoinModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery rightJoinModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery innerJoinModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery leftJoinHook($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery rightJoinHook($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHookQuery innerJoinHook($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildModuleHookQuery

in ModuleHookQuery at line 84
ChildModuleHook findOne( ConnectionInterface $con = null)

Return the first ChildModuleHook matching the query

Parameters

ConnectionInterface $con

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneById( int $id)

Return the first ChildModuleHook filtered by the id column

Parameters

int $id

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByModuleId( int $module_id)

Return the first ChildModuleHook filtered by the module_id column

Parameters

int $module_id

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByHookId( int $hook_id)

Return the first ChildModuleHook filtered by the hook_id column

Parameters

int $hook_id

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByClassname( string $classname)

Return the first ChildModuleHook filtered by the classname column

Parameters

string $classname

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByMethod( string $method)

Return the first ChildModuleHook filtered by the method column

Parameters

string $method

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByActive( boolean $active)

Return the first ChildModuleHook filtered by the active column

Parameters

boolean $active

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByHookActive( boolean $hook_active)

Return the first ChildModuleHook filtered by the hook_active column

Parameters

boolean $hook_active

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByModuleActive( boolean $module_active)

Return the first ChildModuleHook filtered by the module_active column

Parameters

boolean $module_active

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByPosition( int $position)

Return the first ChildModuleHook filtered by the position column

Parameters

int $position

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
ChildModuleHook findOneByTemplates( string $templates)

Return the first ChildModuleHook filtered by the templates column

Parameters

string $templates

Return Value

ChildModuleHook

in ModuleHookQuery at line 84
array findById( int $id)

Return ChildModuleHook objects filtered by the id column

Parameters

int $id

Return Value

array

in ModuleHookQuery at line 84
array findByModuleId( int $module_id)

Return ChildModuleHook objects filtered by the module_id column

Parameters

int $module_id

Return Value

array

in ModuleHookQuery at line 84
array findByHookId( int $hook_id)

Return ChildModuleHook objects filtered by the hook_id column

Parameters

int $hook_id

Return Value

array

in ModuleHookQuery at line 84
array findByClassname( string $classname)

Return ChildModuleHook objects filtered by the classname column

Parameters

string $classname

Return Value

array

in ModuleHookQuery at line 84
array findByMethod( string $method)

Return ChildModuleHook objects filtered by the method column

Parameters

string $method

Return Value

array

in ModuleHookQuery at line 84
array findByActive( boolean $active)

Return ChildModuleHook objects filtered by the active column

Parameters

boolean $active

Return Value

array

in ModuleHookQuery at line 84
array findByHookActive( boolean $hook_active)

Return ChildModuleHook objects filtered by the hook_active column

Parameters

boolean $hook_active

Return Value

array

in ModuleHookQuery at line 84
array findByModuleActive( boolean $module_active)

Return ChildModuleHook objects filtered by the module_active column

Parameters

boolean $module_active

Return Value

array

in ModuleHookQuery at line 84
array findByPosition( int $position)

Return ChildModuleHook objects filtered by the position column

Parameters

int $position

Return Value

array

in ModuleHookQuery at line 84
array findByTemplates( string $templates)

Return ChildModuleHook objects filtered by the templates column

Parameters

string $templates

Return Value

array