function ctools_math_expr::funcs in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 includes/math-expr.inc \ctools_math_expr::funcs()
File
- includes/
math-expr.inc, line 159
Class
Code
function funcs() {
$output = array();
foreach ($this->f as $fnn => $dat) {
$output[] = $fnn . '(' . implode(',', $dat['args']) . ')';
}
return $output;
}