Class TaskCollection
Collection object for Tasks. Provides features for lazily loading tasks, and firing callbacks on loaded tasks.
- ObjectCollection
- TaskCollection
Copyright: Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
License: MIT License
Location: Cake/Console/TaskCollection.php
Properties summary
-
$_Shell
protectedShell to use to set params to tasks. -
$taskPathPrefix
publicstring
The directory inside each shell path that contains tasks.
Inherited Properties
Method Summary
-
__construct() public
Constructor -
load() public
Loads/constructs a task. Will return the instance in the registry if it already exists.
Method Detail
load() public ¶
load( string $task , array $settings = array() )
Loads/constructs a task. Will return the instance in the registry if it already exists.
You can alias your task as an existing task by setting the 'className' key, i.e.,
public $tasks = array( 'DbConfig' => array( 'className' => 'Bakeplus.DbConfigure' ); );
All calls to the DbConfig
task would use DbConfigure
found in the Bakeplus
plugin instead.
Parameters
- string $task
- Task name to load
- array $settings optional array()
- Settings for the task.
Returns
A task object, Either the existing loaded task or a new one.
Throws
Methods inherited from ObjectCollection
__get() public ¶
__get( string $name )
Provide public read access to the loaded objects
Parameters
- string $name
- Name of property to read
Returns
__isset() public ¶
__isset( string $name )
Provide isset access to _loaded
Parameters
- string $name
- Name of object being checked.
Returns
attached() public deprecated ¶
attached( string $name = null )
Gets the list of attached objects, or, whether the given object is attached
Deprecated
Parameters
- string $name optional null
Optional. The name of the object to check the status of. If omitted, returns an array of currently-attached objects
Returns
If $name is specified, returns the boolean status of the corresponding object. Otherwise, returns an array of all attached objects.
disable() public ¶
disable( string|array $name )
Disables callbacks on an object or array of objects. Public object methods are still callable as normal.
Parameters
- string|array $name
- CamelCased name of the objects(s) to disable (string or array)
enable() public ¶
enable( string|array $name , boolean $prioritize = true )
Enables callbacks on an object or array of objects
Parameters
- string|array $name
- CamelCased name of the object(s) to enable (string or array)
- boolean $prioritize optional true
- Prioritize enabled list after enabling object(s)
enabled() public ¶
enabled( string $name = null )
Gets the list of currently-enabled objects, or, the current status of a single objects
Parameters
- string $name optional null
Optional. The name of the object to check the status of. If omitted, returns an array of currently-enabled object
Returns
If $name is specified, returns the boolean status of the corresponding object. Otherwise, returns an array of all enabled objects.
loaded() public ¶
loaded( string $name = null )
Gets the list of loaded objects, or, whether the given object is loaded
Parameters
- string $name optional null
Optional. The name of the object to check the status of. If omitted, returns an array of currently-loaded objects
Returns
If $name is specified, returns the boolean status of the corresponding object. Otherwise, returns an array of all loaded objects.
normalizeObjectArray() public static ¶
normalizeObjectArray( array $objects )
Normalizes an object array, creates an array that makes lazy loading easier
Parameters
- array $objects
- Array of child objects to normalize.
Returns
Array of normalized objects.
prioritize() public ¶
prioritize( )
Prioritize list of enabled object
Returns
Prioritized list of object
set() public ¶
set( string $name = null , CakeObject
$object = null )
Adds or overwrites an instantiated object to the collection
Parameters
- string $name optional null
- Name of the object
-
CakeObject
$object optional null - The object to use
Returns
Loaded objects
setPriority() public ¶
setPriority( string|array $name , integer|null $priority = null )
Set priority for an object or array of objects
Parameters
- string|array $name
CamelCased name of the object(s) to enable (string or array) If string the second param $priority is used else it should be an associative array with keys as object names and values as priorities to set.
- integer|null $priority optional null
- Integer priority to set or null for default
trigger() public ¶
trigger( string|CakeEvent
$callback , array $params = array() , array $options = array() )
Trigger a callback method on every object in the collection. Used to trigger methods on objects in the collection. Will fire the methods in the order they were attached.
Options
breakOn
Set to the value or values you want the callback propagation to stop on. Can either be a scalar value, or an array of values to break on. Defaults tofalse
.break
Set to true to enabled breaking. When a trigger is broken, the last returned value will be returned. If used in combination withcollectReturn
the collected results will be returned. Defaults tofalse
.collectReturn
Set to true to collect the return of each object into an array. This array of return values will be returned from the trigger() call. Defaults tofalse
.modParams
Allows each object the callback gets called on to modify the parameters to the next object. Setting modParams to an integer value will allow you to modify the parameter with that index. Any non-null value will modify the parameter index indicated. Defaults to false.
Parameters
-
string|
CakeEvent
$callback Method to fire on all the objects. Its assumed all the objects implement the method you are calling. If an instance of CakeEvent is provided, then then Event name will parsed to get the callback name. This is done by getting the last word after any dot in the event name (eg.
Model.afterSave
event will trigger theafterSave
callback)- array $params optional array()
- Array of parameters for the triggered callback.
- array $options optional array()
- Array of options.
Returns
Either the last result or all results if collectReturn is on.