modX.executeProcessor
modX::executeProcessor
This method is removed in 2.1, and replaced by $modX->runProcessor
Executes a specific processor. The only argument is an array, which can take the following values:
- action - The action to take, similar to connector handling.
- processors_path - If specified, will override the default MODX processors path.
- location - A prefix to load processor files from, will prepend to the action parameter.
Syntax
API Doc: http://api.modx.com/revolution/2.2/db_core_model_modx_modx.class.html#%5CmodX::runProcessor()
mixed executeProcessor (array $options)
Example
Execute the Context getList processor:
$modx->executeProcessor(array(
'location' => 'context',
'action' => 'getList',
));