public static function views_php_plugin_wrapper::__callStatic in Views PHP 7.2
As of PHP 5.3.0
File
- plugins/
views/ views_php_plugin_wrapper.inc, line 47
Class
- views_php_plugin_wrapper
- A helper class that wraps around the actual views plugin.
Code
public static function __callStatic($name, $arguments) {
return call_user_func_array(array(
get_class($this->wrapped),
$name,
), $arguments);
}