Feature #39
plugin arguments helper
| Status: | Closed | Start: | 05/09/2009 | |
| Priority: | Normal | Due date: | ||
| Assigned to: | % Done: | 100% |
||
| Category: | - | |||
| Target version: | 0.2.0 | |||
| Resolution: | fixed |
Description
plugins need to get arguments from URL, Pivots, and Nodes (cascade with URL overwriting pivots which overwrite nodes)
syntax can look something like this
arguments::get($plugin); //returns an array of arguments like
$array =
(
'page' => '5',
'another_argument' => 'another value',
);
arguments::get_all(); //returns all the arguments grouped by plugin like
$array =
(
'wiki_content' => array
(
'page' => '5',
'another_argument' => 'another value',
),
);
History
Updated by Lorenzo Pisani over 2 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
- Resolution set to fixed