You are here

public function views_php_plugin_wrapper::__call in Views PHP 7

Same name and namespace in other branches
  1. 7.2 plugins/views/views_php_plugin_wrapper.inc \views_php_plugin_wrapper::__call()

File

plugins/views/views_php_plugin_wrapper.inc, line 63

Class

views_php_plugin_wrapper
A helper class that wraps around the actual views plugin.

Code

public function __call($name, $arguments) {
  return call_user_func_array(array(
    $this->wrapped,
    $name,
  ), $arguments);
}