Actions
Feature proposal #7084
closedImprove URL functions to better support additional Itemid parsing
Description
Currently plugin, tab, and field class URL functions can not extend the Itemid parsing. Improve the $plugin, $tab, and $field variables to support being an array, which would be merged with $variables but more importantly would extend the Itemid parsing. Examples as follows.
New:$_CB_framework->viewUrl( array( 'emailuser', 'uid' => $user->id ) )
Old:$_CB_framework->viewUrl( 'emailuser', true, array( 'uid' => $user->id ), 'html', 0, '&uid=' . $user->id )
Actions