123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- <?php
- class views_plugin_style extends views_plugin {
-
- var $row_tokens = array();
-
- var $row_plugin;
-
- function init(&$view, &$display, $options = NULL) {
- $this->view = &$view;
- $this->display = &$display;
-
- $this->unpack_options($this->options, isset($options) ? $options : $display->handler->get_option('style_options'));
- if ($this->uses_row_plugin() && $display->handler->get_option('row_plugin')) {
- $this->row_plugin = $display->handler->get_plugin('row');
- }
- $this->options += array(
- 'grouping' => array(),
- );
- $this->definition += array(
- 'uses grouping' => TRUE,
- );
- }
- function destroy() {
- parent::destroy();
- if (isset($this->row_plugin)) {
- $this->row_plugin->destroy();
- }
- }
-
- function uses_row_plugin() {
- return !empty($this->definition['uses row plugin']);
- }
-
- function uses_row_class() {
- return !empty($this->definition['uses row class']);
- }
-
- function uses_fields() {
-
-
- $row_uses_fields = FALSE;
- if ($this->uses_row_plugin() && !empty($this->row_plugin)) {
- $row_uses_fields = $this->row_plugin->uses_fields();
- }
-
- return $row_uses_fields || !empty($this->definition['uses fields']) || !empty($this->options['uses_fields']);
- }
-
- function uses_tokens() {
- if ($this->uses_row_class()) {
- $class = $this->options['row_class'];
- if (strpos($class, '[') !== FALSE || strpos($class, '!') !== FALSE || strpos($class, '%') !== FALSE) {
- return TRUE;
- }
- }
- }
-
- function get_row_class($row_index) {
- if ($this->uses_row_class()) {
- $class = $this->options['row_class'];
- if ($this->uses_fields() && $this->view->field) {
- $class = strip_tags($this->tokenize_value($class, $row_index));
- }
- $classes = explode(' ', $class);
- foreach ($classes as &$class) {
- $class = drupal_clean_css_identifier($class);
- }
- return implode(' ', $classes);
- }
- }
-
- function tokenize_value($value, $row_index) {
- if (strpos($value, '[') !== FALSE || strpos($value, '!') !== FALSE || strpos($value, '%') !== FALSE) {
- $fake_item = array(
- 'alter_text' => TRUE,
- 'text' => $value,
- );
-
- $tokens = isset($this->row_tokens[$row_index]) ? $this->row_tokens[$row_index] : array();
- if (!empty($this->view->build_info['substitutions'])) {
- $tokens += $this->view->build_info['substitutions'];
- }
- if ($tokens) {
- $value = strtr($value, $tokens);
- }
- }
- return $value;
- }
-
- function even_empty() {
- return !empty($this->definition['even empty']);
- }
- function option_definition() {
- $options = parent::option_definition();
- $options['grouping'] = array('default' => array());
- if ($this->uses_row_class()) {
- $options['row_class'] = array('default' => '');
- $options['default_row_class'] = array('default' => TRUE, 'bool' => TRUE);
- $options['row_class_special'] = array('default' => TRUE, 'bool' => TRUE);
- }
- $options['uses_fields'] = array('default' => FALSE, 'bool' => TRUE);
- return $options;
- }
- function options_form(&$form, &$form_state) {
- parent::options_form($form, $form_state);
-
-
-
-
- if ($this->uses_fields() && $this->definition['uses grouping']) {
- $options = array('' => t('- None -'));
- $field_labels = $this->display->handler->get_field_labels(TRUE);
- $options += $field_labels;
-
- if (count($options) > 1) {
-
- if (is_string($this->options['grouping'])) {
- $grouping = $this->options['grouping'];
- $this->options['grouping'] = array();
- $this->options['grouping'][0]['field'] = $grouping;
- }
- if (isset($this->options['group_rendered']) && is_string($this->options['group_rendered'])) {
- $this->options['grouping'][0]['rendered'] = $this->options['group_rendered'];
- unset($this->options['group_rendered']);
- }
- $c = count($this->options['grouping']);
-
- for ($i = 0; $i <= $c; $i++) {
- $grouping = !empty($this->options['grouping'][$i]) ? $this->options['grouping'][$i] : array();
- $grouping += array('field' => '', 'rendered' => TRUE, 'rendered_strip' => FALSE);
- $form['grouping'][$i]['field'] = array(
- '#type' => 'select',
- '#title' => t('Grouping field Nr.@number', array('@number' => $i + 1)),
- '#options' => $options,
- '#default_value' => $grouping['field'],
- '#description' => t('You may optionally specify a field by which to group the records. Leave blank to not group.'),
- );
- $form['grouping'][$i]['rendered'] = array(
- '#type' => 'checkbox',
- '#title' => t('Use rendered output to group rows'),
- '#default_value' => $grouping['rendered'],
- '#description' => t('If enabled the rendered output of the grouping field is used to group the rows.'),
- '#dependency' => array(
- 'edit-style-options-grouping-' . $i . '-field' => array_keys($field_labels),
- )
- );
- $form['grouping'][$i]['rendered_strip'] = array(
- '#type' => 'checkbox',
- '#title' => t('Remove tags from rendered output'),
- '#default_value' => $grouping['rendered_strip'],
- '#dependency' => array(
- 'edit-style-options-grouping-' . $i . '-field' => array_keys($field_labels),
- )
- );
- }
- }
- }
- if ($this->uses_row_class()) {
- $form['row_class'] = array(
- '#title' => t('Row class'),
- '#description' => t('The class to provide on each row.'),
- '#type' => 'textfield',
- '#default_value' => $this->options['row_class'],
- );
- if ($this->uses_fields()) {
- $form['row_class']['#description'] .= ' ' . t('You may use field tokens from as per the "Replacement patterns" used in "Rewrite the output of this field" for all fields.');
- }
- $form['default_row_class'] = array(
- '#title' => t('Add views row classes'),
- '#description' => t('Add the default row classes like views-row-1 to the output. You can use this to quickly reduce the amount of markup the view provides by default, at the cost of making it more difficult to apply CSS.'),
- '#type' => 'checkbox',
- '#default_value' => $this->options['default_row_class'],
- );
- $form['row_class_special'] = array(
- '#title' => t('Add striping (odd/even), first/last row classes'),
- '#description' => t('Add css classes to the first and last line, as well as odd/even classes for striping.'),
- '#type' => 'checkbox',
- '#default_value' => $this->options['row_class_special'],
- );
- }
- if (!$this->uses_fields() || !empty($this->options['uses_fields'])) {
- $form['uses_fields'] = array(
- '#type' => 'checkbox',
- '#title' => t('Force using fields'),
- '#description' => t('If neither the row nor the style plugin supports fields, this field allows to enable them, so you can for example use groupby.'),
- '#default_value' => $this->options['uses_fields'],
- );
- }
- }
- function options_validate(&$form, &$form_state) {
-
- if (isset($form_state['values']['style_options']['grouping'])) {
-
- foreach ($form_state['values']['style_options']['grouping'] as $index => $grouping) {
- if (empty($grouping['field'])) {
- unset($form_state['values']['style_options']['grouping'][$index]);
- }
- }
- }
- }
-
- function build_sort() { return TRUE; }
-
- function build_sort_post() { }
-
- function pre_render($result) {
- if (!empty($this->row_plugin)) {
- $this->row_plugin->pre_render($result);
- }
- }
-
- function render() {
- if ($this->uses_row_plugin() && empty($this->row_plugin)) {
- debug('views_plugin_style_default: Missing row plugin');
- return;
- }
-
- $sets = $this->render_grouping(
- $this->view->result,
- $this->options['grouping'],
- TRUE
- );
- return $this->render_grouping_sets($sets);
- }
-
- function render_grouping_sets($sets, $level = 0) {
- $output = '';
- foreach ($sets as $set) {
- $row = reset($set['rows']);
-
- if (is_array($row) && isset($row['group'])) {
- $output .= theme(views_theme_functions('views_view_grouping', $this->view, $this->display),
- array(
- 'view' => $this->view,
- 'grouping' => $this->options['grouping'][$level],
- 'grouping_level' => $level,
- 'rows' => $set['rows'],
- 'title' => $set['group'])
- );
- }
-
- else {
- if ($this->uses_row_plugin()) {
- foreach ($set['rows'] as $index => $row) {
- $this->view->row_index = $index;
- $set['rows'][$index] = $this->row_plugin->render($row);
- }
- }
- $output .= theme($this->theme_functions(),
- array(
- 'view' => $this->view,
- 'options' => $this->options,
- 'grouping_level' => $level,
- 'rows' => $set['rows'],
- 'title' => $set['group'])
- );
- }
- }
- unset($this->view->row_index);
- return $output;
- }
-
- function render_grouping($records, $groupings = array(), $group_rendered = NULL) {
-
-
- if (is_string($groupings)) {
- $rendered = $group_rendered === NULL ? TRUE : $group_rendered;
- $groupings = array(array('field' => $groupings, 'rendered' => $rendered));
- }
-
- $this->render_fields($this->view->result);
- $sets = array();
- if ($groupings) {
- foreach ($records as $index => $row) {
-
-
-
- $set = &$sets;
- foreach ($groupings as $info) {
- $field = $info['field'];
- $rendered = isset($info['rendered']) ? $info['rendered'] : $group_rendered;
- $rendered_strip = isset($info['rendered_strip']) ? $info['rendered_strip'] : FALSE;
- $grouping = '';
- $group_content = '';
-
-
-
- if (isset($this->view->field[$field])) {
- $group_content = $this->get_field($index, $field);
- if ($this->view->field[$field]->options['label']) {
- $group_content = $this->view->field[$field]->options['label'] . ': ' . $group_content;
- }
- if ($rendered) {
- $grouping = $group_content;
- if ($rendered_strip) {
- $group_content = $grouping = strip_tags(htmlspecialchars_decode($group_content));
- }
- }
- else {
- $grouping = $this->get_field_value($index, $field);
-
-
- if (!is_scalar($grouping)) {
- $grouping = md5(serialize($grouping));
- }
- }
- }
-
- if (empty($set[$grouping])) {
- $set[$grouping]['group'] = $group_content;
- $set[$grouping]['rows'] = array();
- }
-
- $set = &$set[$grouping]['rows'];
- }
-
- $set[$index] = $row;
- }
- }
- else {
-
- $sets[''] = array(
- 'group' => '',
- 'rows' => $records,
- );
- }
-
-
-
- if ($group_rendered === NULL) {
- $old_style_sets = array();
- foreach ($sets as $group) {
- $old_style_sets[$group['group']] = $group['rows'];
- }
- $sets = $old_style_sets;
- }
- return $sets;
- }
-
- function render_fields($result) {
- if (!$this->uses_fields()) {
- return;
- }
- if (!isset($this->rendered_fields)) {
- $this->rendered_fields = array();
- $this->view->row_index = 0;
- $keys = array_keys($this->view->field);
-
-
- if (!empty($keys)) {
- foreach ($result as $count => $row) {
- $this->view->row_index = $count;
- foreach ($keys as $id) {
- $this->rendered_fields[$count][$id] = $this->view->field[$id]->theme($row);
- }
- $this->row_tokens[$count] = $this->view->field[$id]->get_render_tokens(array());
- }
- }
- unset($this->view->row_index);
- }
- return $this->rendered_fields;
- }
-
- function get_field($index, $field) {
- if (!isset($this->rendered_fields)) {
- $this->render_fields($this->view->result);
- }
- if (isset($this->rendered_fields[$index][$field])) {
- return $this->rendered_fields[$index][$field];
- }
- }
-
- function get_field_value($index, $field) {
- $this->view->row_index = $index;
- $value = $this->view->field[$field]->get_value($this->view->result[$index]);
- unset($this->view->row_index);
- return $value;
- }
- function validate() {
- $errors = parent::validate();
- if ($this->uses_row_plugin()) {
- $plugin = $this->display->handler->get_plugin('row');
- if (empty($plugin)) {
- $errors[] = t('Style @style requires a row style but the row plugin is invalid.', array('@style' => $this->definition['title']));
- }
- else {
- $result = $plugin->validate();
- if (!empty($result) && is_array($result)) {
- $errors = array_merge($errors, $result);
- }
- }
- }
- return $errors;
- }
- function query() {
- parent::query();
- if (isset($this->row_plugin)) {
- $this->row_plugin->query();
- }
- }
- }
|