View source
<?php
class views_php_handler_filter extends views_handler_filter {
protected $php_static_variable = NULL;
function can_expose() {
return FALSE;
}
function admin_summary() {
return t('PHP');
}
function option_definition() {
$options = parent::option_definition();
$options['use_php_setup'] = array(
'default' => FALSE,
);
$options['php_setup'] = array(
'default' => '',
);
$options['php_filter'] = array(
'default' => '',
);
$options['sql_filter'] = array(
'default' => '',
);
return $options;
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form += views_php_form_element($this, FALSE, array(
'sql_filter',
t('SQL filter code'),
t('Return a valid SQL WHERE clause.'),
FALSE,
), array(
'$view',
'$handler',
));
$form += views_php_form_element($this, array(
'use_php_setup',
t('Use setup code'),
t('If checked, you can provide PHP code to be run once right before execution of the view. This may be useful to define functions to be re-used in the value and/or output code.'),
), array(
'php_setup',
t('Setup code'),
t('Code to run right before execution of the view.'),
FALSE,
), array(
'$view',
'$handler',
'$static',
));
$form += views_php_form_element($this, FALSE, array(
'php_filter',
t('Filter code'),
t('If the code returns TRUE the current row is removed from the results.'),
FALSE,
), array(
'$view',
'$handler',
'$static',
'$row',
'$data',
));
}
function query() {
$this->view->views_php = TRUE;
if (!empty($this->options['sql_filter'])) {
$function = create_function('$view, $handler, &$static', $this->options['sql_filter'] . ';');
ob_start();
$clause = $function($this->view, $this, $this->php_static_variable);
ob_end_clean();
if (!empty($clause)) {
$this->query
->add_where($this->options['group'], $clause);
}
}
}
function php_pre_execute() {
if (!empty($this->view->build_info['summary'])) {
return;
}
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();
}
if (!empty($this->options['php_filter'])) {
$this->view->use_php_pager = TRUE;
}
}
function php_post_execute() {
if (!empty($this->view->build_info['summary'])) {
return;
}
if (!empty($this->options['php_filter'])) {
$function = create_function('$view, $handler, &$static, $row, $data', $this->options['php_filter'] . ';');
ob_start();
foreach ($this->view->result as $i => $row) {
$normalized_row = new stdClass();
foreach ($this->view->display_handler
->get_handlers('field') as $field => $handler) {
$normalized_row->{$field} = isset($row->{$handler->field_alias}) ? $row->{$handler->field_alias} : NULL;
}
if (!empty($this->view->base_field) && isset($row->{$this->view->base_field})) {
$normalized_row->{$this->view->base_field} = $row->{$this->view->base_field};
}
if ($function($this->view, $this, $this->php_static_variable, $normalized_row, $row)) {
unset($this->view->result[$i]);
$this->view->total_rows--;
}
}
ob_end_clean();
}
}
}