first import
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* A handler to provide an area that is constructed by the administrator using PHP.
|
||||
*
|
||||
* @ingroup views_area_handlers
|
||||
*/
|
||||
class views_php_handler_area extends views_handler_area {
|
||||
|
||||
/**
|
||||
* Implements views_object#option_definition().
|
||||
*/
|
||||
function option_definition() {
|
||||
$options = parent::option_definition();
|
||||
$options['php_output'] = array('default' => "<h4>Example PHP code</h4>\n<p>Time: <?php print date('H:i', time());?></p>\n");
|
||||
return $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler#option_definition().
|
||||
*/
|
||||
function options_form(&$form, &$form_state) {
|
||||
parent::options_form($form, $form_state);
|
||||
|
||||
$form += views_php_form_element($this,
|
||||
FALSE,
|
||||
array('php_output', t('Output code'), t('Code to construct the output of this area.'), TRUE),
|
||||
array('$view', '$handler', '$results')
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Implements views_handler_area#render().
|
||||
*/
|
||||
function render($empty = FALSE) {
|
||||
// Ecexute output PHP code.
|
||||
if ((!$empty || !empty($this->options['empty'])) && !empty($this->options['php_output'])) {
|
||||
$function = create_function('$view, $handler, $results', ' ?>' . $this->options['php_output'] . '<?php ');
|
||||
ob_start();
|
||||
$function($this->view, $this, $this->view->result);
|
||||
return ob_get_clean();
|
||||
}
|
||||
return '';
|
||||
}
|
||||
}
|
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* A handler to provide a field that is constructed by the administrator using PHP.
|
||||
*
|
||||
* @ingroup views_field_handlers
|
||||
*/
|
||||
class views_php_handler_field extends views_handler_field {
|
||||
const CLICK_SORT_DISABLED = 0;
|
||||
const CLICK_SORT_NUMERIC = 1;
|
||||
const CLICK_SORT_ALPHA = 2;
|
||||
const CLICK_SORT_ALPHA_CASE = 3;
|
||||
const CLICK_SORT_NAT = 4;
|
||||
const CLICK_SORT_NAT_CASE = 5;
|
||||
const CLICK_SORT_PHP = 6;
|
||||
|
||||
protected $php_static_variable = NULL;
|
||||
|
||||
/**
|
||||
* Implements views_object#option_definition().
|
||||
*/
|
||||
function option_definition() {
|
||||
$options = parent::option_definition();
|
||||
$options['use_php_setup'] = array('default' => FALSE);
|
||||
$options['php_setup'] = array('default' => '');
|
||||
$options['php_value'] = array('default' => '');
|
||||
$options['php_output'] = array('default' => '');
|
||||
$options['use_php_click_sortable'] = array('default' => self::CLICK_SORT_DISABLED);
|
||||
$options['php_click_sortable'] = array('default' => FALSE);
|
||||
return $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler#options_form().
|
||||
*/
|
||||
function options_form(&$form, &$form_state) {
|
||||
parent::options_form($form, $form_state);
|
||||
|
||||
$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_value', t('Value code'), t('Code to construct the value of this field.'), FALSE),
|
||||
array('$view', '$handler', '$static', '$row', '$data')
|
||||
);
|
||||
$form += views_php_form_element($this,
|
||||
array('use_php_click_sortable', t('Enable click sort'), t('If checked, you can use PHP code to enable click sort on the field.')),
|
||||
array('php_click_sortable', t('Click sort code'), t('The comparison code must return an integer less than, equal to, or greater than zero if the first row should respectively appear before, stay where it was compared to, or appear after the second row.'), FALSE),
|
||||
array(
|
||||
'$view', '$handler', '$static',
|
||||
'$row1' => t('Data of row.'),
|
||||
'$row2' => t('Data of row to compare against.'),
|
||||
)
|
||||
);
|
||||
$form['use_php_click_sortable']['#type'] = 'select';
|
||||
$form['use_php_click_sortable']['#options'] = array(
|
||||
self::CLICK_SORT_DISABLED => t('No'),
|
||||
self::CLICK_SORT_NUMERIC => t('Sort numerically'),
|
||||
self::CLICK_SORT_ALPHA => t('Sort alphabetically'),
|
||||
self::CLICK_SORT_ALPHA_CASE => t('Sort alphabetically (case insensitive)'),
|
||||
self::CLICK_SORT_NAT => t('Sort using a "natural order" algorithm'),
|
||||
self::CLICK_SORT_NAT_CASE => t('Sort using a "natural order" algorithm (case insensitive)'),
|
||||
self::CLICK_SORT_PHP => t('Sort using custom PHP code'),
|
||||
);
|
||||
$form['use_php_click_sortable']['#default_value'] = $this->options['use_php_click_sortable'];
|
||||
$form['php_click_sortable']['#states'] = array(
|
||||
'visible' => array(
|
||||
':input[name="options[use_php_click_sortable]"]' => array('value' => (string)self::CLICK_SORT_PHP),
|
||||
),
|
||||
);
|
||||
$form += views_php_form_element($this,
|
||||
FALSE,
|
||||
array('php_output', t('Output code'), t('Code to construct the output of this field.'), TRUE),
|
||||
array('$view', '$handler', '$static', '$row', '$data', '$value' => t('Value of this field.'))
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler_field#query().
|
||||
*
|
||||
* @see views_php_views_pre_execute()
|
||||
*/
|
||||
function query() {
|
||||
// Provide an field alias but don't actually alter the query.
|
||||
$this->field_alias = 'views_php_' . $this->position;
|
||||
// Inform views_php_views_pre_execute() to seize control over the query.
|
||||
$this->view->views_php = TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler_field#click_sortable().
|
||||
*/
|
||||
function click_sortable() {
|
||||
return $this->options['use_php_click_sortable'] != self::CLICK_SORT_DISABLED;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler_field#click_sort().
|
||||
*
|
||||
* @see self::php_post_execute()
|
||||
*/
|
||||
function click_sort($order) {
|
||||
$this->php_click_sort_order = $order;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @see views_php_views_pre_execute()
|
||||
* @see self::php_post_execute()
|
||||
*/
|
||||
function php_pre_execute() {
|
||||
// Ecexute 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();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @see views_php_views_post_execute()
|
||||
*/
|
||||
function php_post_execute() {
|
||||
// Ecexute value PHP code.
|
||||
if (!empty($this->options['php_value'])) {
|
||||
$function = create_function('$view, $handler, &$static, $row, $data', $this->options['php_value'] . ';');
|
||||
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;
|
||||
}
|
||||
$row->{$this->field_alias} = $function($this->view, $this, $this->php_static_variable, $normalized_row, $row);
|
||||
}
|
||||
ob_end_clean();
|
||||
}
|
||||
|
||||
// If we're sorting, do the actual sorting then fix the results as per the pager info.
|
||||
if (!empty($this->options['use_php_click_sortable']) && !empty($this->php_click_sort_order)) {
|
||||
if ($this->options['use_php_click_sortable'] == self::CLICK_SORT_PHP) {
|
||||
if (!empty($this->options['php_click_sortable'])) {
|
||||
$this->php_click_sort_function = create_function('$view, $handler, &$static, $row1, $row2', $this->options['php_click_sortable'] . ';');
|
||||
}
|
||||
}
|
||||
else {
|
||||
$predefined = array(
|
||||
self::CLICK_SORT_NUMERIC => array($this, 'php_click_sort_numeric'),
|
||||
self::CLICK_SORT_ALPHA => 'strcasecmp',
|
||||
self::CLICK_SORT_ALPHA_CASE => 'strcmp',
|
||||
self::CLICK_SORT_NAT => 'strnatcasecmp',
|
||||
self::CLICK_SORT_NAT_CASE => 'strnatcmp',
|
||||
);
|
||||
$this->php_click_sort_function = $predefined[$this->options['use_php_click_sortable']];
|
||||
}
|
||||
|
||||
if (isset($this->php_click_sort_function)) {
|
||||
usort($this->view->result, array($this, 'php_click_sort'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function; usort() callback for click sort support.
|
||||
*/
|
||||
function php_click_sort($row1, $row2) {
|
||||
$factor = strtoupper($this->php_click_sort_order) == 'ASC' ? 1 : -1;
|
||||
$function = $this->php_click_sort_function;
|
||||
if ($this->options['use_php_click_sortable'] == self::CLICK_SORT_PHP) {
|
||||
foreach (array('row1' => 'normalized_row1', 'row2' => 'normalized_row2') as $name => $normalized_name) {
|
||||
$$normalized_name = new stdClass;
|
||||
foreach ($this->view->display_handler->get_handlers('field') as $field => $handler) {
|
||||
$$normalized_name->$field = isset($$name->{$handler->field_alias}) ? $$name->{$handler->field_alias} : NULL;
|
||||
}
|
||||
}
|
||||
ob_start();
|
||||
$result = (int)$function($this->view, $this, $this->php_static_variable, $normalized_row1, $normalized_row2);
|
||||
ob_end_clean();
|
||||
}
|
||||
else {
|
||||
$result = $function($row1->{$this->field_alias}, $row2->{$this->field_alias});
|
||||
}
|
||||
return $factor * $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function; usort callback for numeric sort.
|
||||
*/
|
||||
function php_click_sort_numeric($a, $b) {
|
||||
return $a - $b;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler_field#pre_render().
|
||||
*/
|
||||
function pre_render(&$values) {
|
||||
if (!empty($this->options['php_output'])) {
|
||||
$this->php_output_lamda_function = create_function('$view, $handler, &$static, $row, $data, $value', ' ?>' . $this->options['php_output'] . '<?php ');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler_field#render().
|
||||
*/
|
||||
function render($values) {
|
||||
// Ecexute output PHP code.
|
||||
if (!empty($this->options['php_output']) && isset($this->php_output_lamda_function)) {
|
||||
$normalized_row = new stdClass;
|
||||
foreach ($this->view->display_handler->get_handlers('field') as $field => $handler) {
|
||||
$normalized_row->$field = isset($values->{$handler->field_alias}) ? $values->{$handler->field_alias} : NULL;
|
||||
}
|
||||
|
||||
$function = $this->php_output_lamda_function;
|
||||
ob_start();
|
||||
$function($this->view, $this, $this->php_static_variable, $normalized_row, $values, isset($values->{$this->field_alias}) ? $values->{$this->field_alias} : NULL);
|
||||
$value = ob_get_clean();
|
||||
}
|
||||
else {
|
||||
$value = check_plain($values->{$this->field_alias});
|
||||
}
|
||||
return $value;
|
||||
}
|
||||
}
|
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* A handler to filter a view using PHP defined by the administrator.
|
||||
*
|
||||
* @ingroup views_filter_handlers
|
||||
*/
|
||||
class views_php_handler_filter extends views_handler_filter {
|
||||
|
||||
protected $php_static_variable = NULL;
|
||||
|
||||
/**
|
||||
* Implements views_handler#can_expose().
|
||||
*/
|
||||
function can_expose() { return FALSE; }
|
||||
|
||||
/**
|
||||
* Implements views_object#admin_summary().
|
||||
*/
|
||||
function admin_summary() {
|
||||
return t('PHP');
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_object#option_definition().
|
||||
*/
|
||||
function option_definition() {
|
||||
$options = parent::option_definition();
|
||||
$options['use_php_setup'] = array('default' => FALSE);
|
||||
$options['php_setup'] = array('default' => '');
|
||||
$options['php_filter'] = array('default' => '');
|
||||
return $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler#option_definition().
|
||||
*/
|
||||
function options_form(&$form, &$form_state) {
|
||||
parent::options_form($form, $form_state);
|
||||
|
||||
$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')
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler_filter#query().
|
||||
*/
|
||||
function query() {
|
||||
// Inform views_php_views_pre_execute() to seize control over the query.
|
||||
$this->view->views_php = TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @see views_php_views_pre_execute()
|
||||
*/
|
||||
function php_pre_execute() {
|
||||
// Ecexute 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();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @see views_php_views_post_execute()
|
||||
*/
|
||||
function php_post_execute() {
|
||||
// Evaluate the PHP code.
|
||||
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 ($function($this->view, $this, $this->php_static_variable, $normalized_row, $row)) {
|
||||
unset($this->view->result[$i]);
|
||||
}
|
||||
}
|
||||
ob_end_clean();
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,95 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* A handler to sort a view using PHP defined by the administrator.
|
||||
*
|
||||
* @ingroup views_sort_handlers
|
||||
*/
|
||||
class views_php_handler_sort extends views_handler_sort {
|
||||
|
||||
protected $php_static_variable = NULL;
|
||||
|
||||
/**
|
||||
* Implements views_object#option_definition().
|
||||
*/
|
||||
function option_definition() {
|
||||
$options = parent::option_definition();
|
||||
$options['use_php_setup'] = array('default' => FALSE);
|
||||
$options['php_setup'] = array('default' => '');
|
||||
$options['php_sort'] = array('default' => '');
|
||||
return $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler#option_definition().
|
||||
*/
|
||||
function options_form(&$form, &$form_state) {
|
||||
parent::options_form($form, $form_state);
|
||||
|
||||
$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_sort', t('Sort code'), t('The comparison code must return an integer less than, equal to, or greater than zero if the first row should respectively appear before, stay where it was compared to, or appear after the second row.'), FALSE),
|
||||
array(
|
||||
'$view', '$handler', '$static',
|
||||
'$row1' => t('Data of row.'),
|
||||
'$row2' => t('Data of row to compare against.'),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_handler_sort#query().
|
||||
*/
|
||||
function query() {
|
||||
// Inform views_php_views_pre_execute() to seize control over the query.
|
||||
$this->view->views_php = TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @see views_php_views_pre_execute()
|
||||
*/
|
||||
function php_pre_execute() {
|
||||
// Ecexute 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();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @see views_php_views_post_execute()
|
||||
*/
|
||||
function php_post_execute() {
|
||||
if (!empty($this->options['php_sort']) && $this->view->style_plugin->build_sort()) {
|
||||
$this->php_sort_function = create_function('$view, $handler, &$static, $row1, $row2', $this->options['php_sort'] . ';');
|
||||
ob_start();
|
||||
usort($this->view->result, array($this, 'php_sort'));
|
||||
ob_end_clean();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function; usort() callback for sort support.
|
||||
*/
|
||||
function php_sort($row1, $row2) {
|
||||
$factor = strtoupper($this->options['order']) == 'ASC' ? 1 : -1;
|
||||
$function = $this->php_sort_function;
|
||||
foreach (array('row1' => 'normalized_row1', 'row2' => 'normalized_row2') as $name => $normalized_name) {
|
||||
$$normalized_name = new stdClass;
|
||||
foreach ($this->view->display_handler->get_handlers('field') as $field => $handler) {
|
||||
$$normalized_name->$field = isset($$name->{$handler->field_alias}) ? $$name->{$handler->field_alias} : NULL;
|
||||
}
|
||||
}
|
||||
$result = (int)$function($this->view, $this, $this->php_static_variable, $normalized_row1, $normalized_row2);
|
||||
return $factor * $result;
|
||||
}
|
||||
}
|
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Access plugin that provides access control based on custom PHP code.
|
||||
*
|
||||
* @ingroup views_access_plugins
|
||||
*/
|
||||
class views_php_plugin_access extends views_plugin_access {
|
||||
|
||||
/**
|
||||
* Implements views_plugin_access#summary_title().
|
||||
*/
|
||||
function summary_title() {
|
||||
return t('PHP');
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_object#option_definition().
|
||||
*/
|
||||
function option_definition() {
|
||||
$options = parent::option_definition();
|
||||
$options['php_access'] = array('default' => '');
|
||||
|
||||
return $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_plugin#options_form().
|
||||
*/
|
||||
function options_form(&$form, &$form_state) {
|
||||
parent::options_form($form, $form_state);
|
||||
|
||||
$form += views_php_form_element($this,
|
||||
FALSE,
|
||||
array('php_access', t('Access code'), t('If the code returns TRUE the requesting user is granted access to the view.'), FALSE),
|
||||
array(
|
||||
'$view_name' => t('The name of the view to check.'),
|
||||
'$display_id' => t('The ID of the display to check.'),
|
||||
'$account' => t('The account to check.'),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_plugin#options_submit().
|
||||
*/
|
||||
function options_submit(&$form, &$form_state) {
|
||||
$form_state['values']['access_options']['php_access'] = $form_state['values']['options']['php_access'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_plugin_access#access().
|
||||
*/
|
||||
function access($account) {
|
||||
if (!empty($this->options['php_access'])) {
|
||||
return views_php_check_access($this->options['php_access'], $this->view->name, $this->view->current_display, $account);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_plugin_access#get_access_callback().
|
||||
*/
|
||||
function get_access_callback() {
|
||||
if (!empty($this->options['php_access'])) {
|
||||
return array('views_php_check_access', array($this->options['php_access'], $this->view->name, $this->view->current_display));
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
}
|
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Caching plugin that provides cache control based on custom PHP code.
|
||||
*
|
||||
* @ingroup views_cache_plugins
|
||||
*/
|
||||
class views_php_plugin_cache extends views_plugin_cache {
|
||||
|
||||
/**
|
||||
* Implements views_plugin_cache#summary_title().
|
||||
*/
|
||||
function summary_title() {
|
||||
return t('PHP');
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_object#option_definition().
|
||||
*/
|
||||
function option_definition() {
|
||||
$options = parent::option_definition();
|
||||
$options['php_cache_results'] = array('default' => '');
|
||||
$options['php_cache_output'] = array('default' => '');
|
||||
|
||||
return $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_plugin#options_form().
|
||||
*/
|
||||
function options_form(&$form, &$form_state) {
|
||||
parent::options_form($form, $form_state);
|
||||
|
||||
$form += views_php_form_element($this,
|
||||
FALSE,
|
||||
array('php_cache_results', t('Result cache code'), t('The code must return TRUE if the cache is still fresh, FALSE otherwise.'), FALSE),
|
||||
array('$view', '$plugin', '$cache')
|
||||
);
|
||||
$form += views_php_form_element($this,
|
||||
FALSE,
|
||||
array('php_cache_output', t('Output cache code'), t('The code must return TRUE if the cache is still fresh, FALSE otherwise.'), FALSE),
|
||||
array('$view', '$plugin', '$cache')
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements views_plugin_cache#cache_get()
|
||||
*/
|
||||
function cache_get($type) {
|
||||
//$cutoff = $this->cache_expire($type);
|
||||
switch ($type) {
|
||||
case 'query':
|
||||
// Not supported currently, but this is certainly where we'd put it.
|
||||
return FALSE;
|
||||
case 'results':
|
||||
$cache = cache_get($this->get_results_key(), $this->table);
|
||||
$fresh = !empty($cache);
|
||||
if ($fresh && !empty($this->options['php_cache_results'])) {
|
||||
$function = create_function('$view, $plugin, $cache', $this->options['php_cache_results'] . ';');
|
||||
ob_start();
|
||||
$fresh = $function($this->view, $this, $cache);
|
||||
ob_end_clean();
|
||||
}
|
||||
// Values to set: $view->result, $view->total_rows, $view->execute_time,
|
||||
// $view->current_page.
|
||||
if ($fresh) {
|
||||
//if (!$cutoff || $cache->created > $cutoff) {
|
||||
$this->view->result = $cache->data['result'];
|
||||
$this->view->total_rows = $cache->data['total_rows'];
|
||||
$this->view->set_current_page = $cache->data['current_page'];
|
||||
$this->view->execute_time = 0;
|
||||
return TRUE;
|
||||
//}
|
||||
}
|
||||
return FALSE;
|
||||
case 'output':
|
||||
$cache = cache_get($this->get_output_key(), $this->table);
|
||||
$fresh = !empty($cache);
|
||||
if ($fresh && !empty($this->options['php_cache_output'])) {
|
||||
$function = create_function('$view, $plugin, $cache', $this->options['php_cache_output'] . ';');
|
||||
ob_start();
|
||||
$fresh = $function($this->view, $this, $cache);
|
||||
ob_end_clean();
|
||||
}
|
||||
if ($fresh) {
|
||||
//if (!$cutoff || $cache->created > $cutoff) {
|
||||
$this->storage = $cache->data;
|
||||
$this->view->display_handler->output = $cache->data['output'];
|
||||
$this->restore_headers();
|
||||
return TRUE;
|
||||
//}
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* A (fake) pager plugin that wraps around the actual pager.
|
||||
*
|
||||
* @ingroup views_pager_plugins
|
||||
*/
|
||||
class views_php_plugin_pager extends views_php_plugin_wrapper {
|
||||
|
||||
/**
|
||||
* Perform any needed actions just prior to the query executing.
|
||||
*/
|
||||
public function pre_execute($query) {
|
||||
$this->wrapped->pre_execute($query);
|
||||
|
||||
foreach (array(/*'argument',*/ 'field', 'filter', 'sort', /*'relationship'*/) as $type) {
|
||||
foreach ($this->wrapped->view->$type as $id => $handler) {
|
||||
if (is_callable(array($handler, 'php_pre_execute'))) {
|
||||
$handler->php_pre_execute();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$this->wrapped->view->query->set_limit(0);
|
||||
$this->wrapped->view->query->set_offset(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform any needed actions just after the query executing.
|
||||
*/
|
||||
public function post_execute(&$result) {
|
||||
foreach (array(/*'argument',*/ 'field', 'filter', 'sort', /*'relationship'*/) as $type) {
|
||||
foreach ($this->wrapped->view->$type as $id => $handler) {
|
||||
if (is_callable(array($handler, 'php_post_execute'))) {
|
||||
$handler->php_post_execute();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$this->wrapped->total_items = count($this->wrapped->view->result);
|
||||
$this->wrapped->update_page_info();
|
||||
|
||||
$item_per_page = $this->wrapped->get_items_per_page();
|
||||
if ($item_per_page > 0) {
|
||||
$offset = $this->wrapped->get_current_page() * $item_per_page + $this->wrapped->get_offset();
|
||||
$this->wrapped->view->result = array_slice($this->wrapped->view->result, $offset, $item_per_page);
|
||||
}
|
||||
$this->wrapped->post_execute($result);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Execute the count query, which will be done just prior to the query
|
||||
* itself being executed.
|
||||
*/
|
||||
function execute_count_query(&$count_query) {
|
||||
$this->wrapped->execute_count_query($count_query);
|
||||
}
|
||||
}
|
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* A (fake) pager plugin that wraps around the actual query.
|
||||
*
|
||||
* @ingroup views_query_plugins
|
||||
*/
|
||||
class views_php_plugin_query extends views_php_plugin_wrapper {
|
||||
|
||||
/**
|
||||
* Implements views_plugin_query#execute().
|
||||
*/
|
||||
function execute(&$view) {
|
||||
$pager = new views_php_plugin_pager();
|
||||
$pager->php_wrap($this->wrapped->pager);
|
||||
|
||||
$this->wrapped->execute($view);
|
||||
|
||||
$pager->php_unwrap();
|
||||
}
|
||||
}
|
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* A helper class that wraps around the actual views plugin.
|
||||
*
|
||||
* @see views_php_plugin_query
|
||||
* @see views_php_plugin_pager
|
||||
*/
|
||||
class views_php_plugin_wrapper {
|
||||
|
||||
protected $wrapped;
|
||||
protected $wrapped_link;
|
||||
|
||||
public function php_wrap(&$link) {
|
||||
$this->wrapped_link = &$link;
|
||||
$this->wrapped = $link;
|
||||
$link = $this;
|
||||
}
|
||||
|
||||
public function php_unwrap() {
|
||||
$this->wrapped_link = $this->wrapped;
|
||||
unset($this->wrapped);
|
||||
unset($this->wrapped_link);
|
||||
}
|
||||
|
||||
public function &__get($name) {
|
||||
return $this->wrapped->$name;
|
||||
}
|
||||
|
||||
public function __set($name, $value) {
|
||||
return $this->wrapped->$name = $value;
|
||||
}
|
||||
|
||||
public function __isset($name) {
|
||||
return isset($this->wrapped->$name);
|
||||
}
|
||||
|
||||
public function __unset($name) {
|
||||
unset($this->wrapped->$name);
|
||||
}
|
||||
|
||||
public function __call($name, $arguments) {
|
||||
return call_user_func_array(array($this->wrapped, $name), $arguments);
|
||||
}
|
||||
|
||||
/** As of PHP 5.3.0 */
|
||||
public static function __callStatic($name, $arguments) {
|
||||
return call_user_func_array(array(get_class($this->wrapped), $name), $arguments);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user