You are here

function ctools_math_expr::funcs in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/math-expr.inc \ctools_math_expr::funcs()

File

includes/math-expr.inc, line 159

Class

ctools_math_expr

Code

function funcs() {
  $output = array();
  foreach ($this->f as $fnn => $dat) {
    $output[] = $fnn . '(' . implode(',', $dat['args']) . ')';
  }
  return $output;
}