You are here

function call_php_func_form in Patterns 6

Same name and namespace in other branches
  1. 6.2 components/system.inc \call_php_func_form()
  2. 7.2 patterns_components/components/system.inc \call_php_func_form()
  3. 7 patterns_components/components/system.inc \call_php_func_form()
1 string reference to 'call_php_func_form'
system_patterns in components/system.inc

File

components/system.inc, line 389

Code

function call_php_func_form($form_state, $func, $type, $module, $name, $filepath, $args) {
  return array(
    '#call_php_func' => array(
      'function' => $func,
      'type' => $type,
      'module' => $module,
      'name' => $name,
      'filepath' => $filepath,
      'arguments' => $args,
    ),
  );
}