You are here

function pm_arg_tail_load in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 page_manager/page_manager.module \pm_arg_tail_load()

Special arg_load function to use %menu_tail like functionality to get everything after the arg together as a single value.

File

page_manager/page_manager.module, line 1017
The page manager module provides a UI and API to manage pages.

Code

function pm_arg_tail_load($value, $subtask, $argument, $map) {
  $value = implode('/', array_slice($map, $argument));
  page_manager_get_task('page');
  return _pm_arg_load($value, $subtask, $argument);
}