function ViewsPhp::phpPreExecute in Views PHP 8
Same name in this branch
- 8 src/Plugin/views/filter/ViewsPhp.php \Drupal\views_php\Plugin\views\filter\ViewsPhp::phpPreExecute()
- 8 src/Plugin/views/sort/ViewsPhp.php \Drupal\views_php\Plugin\views\sort\ViewsPhp::phpPreExecute()
- 8 src/Plugin/views/field/ViewsPhp.php \Drupal\views_php\Plugin\views\field\ViewsPhp::phpPreExecute()
See also
File
- src/
Plugin/ views/ sort/ ViewsPhp.php, line 72 - Definition of Drupal\views_php\Plugin\views\sort\ViewsPhp.
Class
- ViewsPhp
- A handler to sort a view using PHP defined by the administrator.
Namespace
Drupal\views_php\Plugin\views\sortCode
function phpPreExecute() {
// Execute static PHP code.
if (!empty($this->options['php_setup'])) {
$function = create_function('$view, $handler, &$static', $this->options['php_setup'] . ';');
ob_start();
$function($this->view, $this, $this->php_static_variable);
ob_end_clean();
}
}