There is no instruction to retrieve data from the variables.
print_r($handler) in the php filter does not get any result. So how do I get all variables?
There is no instruction to retrieve data from the variables.
print_r($handler) in the php filter does not get any result. So how do I get all variables?
Comments
Comment #1
funkytraffic commentedI thought it was possible to overwrite filter values like
$handler->options['filters']['term_node_tid_depth']['value'] = array('4195' => '4195')
Comment #2
Fidelix commentedTry print_r(get_defined_vars());
Or even better, install the devel module, and use:
dpm(get_defined_vars());
Comment #3
liam morlandDrupal 6 is no longer supported. If this applies to a later version, please re-open and update the version.