class ViewsUiNodeViewsWizard

Tests creating node views with the wizard.

Hierarchy

Expanded class hierarchy of ViewsUiNodeViewsWizard

1 string reference to 'ViewsUiNodeViewsWizard'
node.inc in plugins/views_wizard/node.inc

File

plugins/views_wizard/views_ui_node_views_wizard.class.php, line 11

View source
class ViewsUiNodeViewsWizard extends ViewsUiBaseViewsWizard {
    
    /**
     *
     */
    protected function row_style_options($type) {
        $options = array();
        $options['teasers'] = t('teasers');
        $options['full_posts'] = t('full posts');
        $options['titles'] = t('titles');
        $options['titles_linked'] = t('titles (linked)');
        $options['fields'] = t('fields');
        return $options;
    }
    
    /**
     *
     */
    protected function build_form_style(&$form, &$form_state, $type) {
        parent::build_form_style($form, $form_state, $type);
        $style_form =& $form['displays'][$type]['options']['style'];
        // Some style plugins don't support row plugins so stop here if that's the
        // case.
        if (!isset($style_form['row_plugin']['#default_value'])) {
            return;
        }
        $row_plugin = $style_form['row_plugin']['#default_value'];
        switch ($row_plugin) {
            case 'full_posts':
            case 'teasers':
                $style_form['row_options']['links'] = array(
                    '#type' => 'select',
                    '#title_display' => 'invisible',
                    '#title' => t('Should links be displayed below each node'),
                    '#options' => array(
                        1 => t('with links (allow users to add comments, etc.)'),
                        0 => t('without links'),
                    ),
                    '#default_value' => 1,
                );
                $style_form['row_options']['comments'] = array(
                    '#type' => 'select',
                    '#title_display' => 'invisible',
                    '#title' => t('Should comments be displayed below each node'),
                    '#options' => array(
                        1 => t('with comments'),
                        0 => t('without comments'),
                    ),
                    '#default_value' => 0,
                );
                break;
        }
    }
    
    /**
     * @override
     */
    protected function default_display_options($form, $form_state) {
        $display_options = parent::default_display_options($form, $form_state);
        // Add permission-based access control.
        $display_options['access']['type'] = 'perm';
        $display_options['access']['perm'] = 'access content';
        // Remove the default fields, since we are customizing them here.
        unset($display_options['fields']);
        // Add the title field, so that the display has content if the user switches
        // to a row style that uses fields.
        
        /* Field: Content: Title */
        $display_options['fields']['title']['id'] = 'title';
        $display_options['fields']['title']['table'] = 'node';
        $display_options['fields']['title']['field'] = 'title';
        $display_options['fields']['title']['label'] = '';
        $display_options['fields']['title']['alter']['alter_text'] = 0;
        $display_options['fields']['title']['alter']['make_link'] = 0;
        $display_options['fields']['title']['alter']['absolute'] = 0;
        $display_options['fields']['title']['alter']['trim'] = 0;
        $display_options['fields']['title']['alter']['word_boundary'] = 0;
        $display_options['fields']['title']['alter']['ellipsis'] = 0;
        $display_options['fields']['title']['alter']['strip_tags'] = 0;
        $display_options['fields']['title']['alter']['html'] = 0;
        $display_options['fields']['title']['hide_empty'] = 0;
        $display_options['fields']['title']['empty_zero'] = 0;
        $display_options['fields']['title']['link_to_node'] = 1;
        return $display_options;
    }
    
    /**
     *
     */
    protected function page_display_options($form, $form_state) {
        $display_options = parent::page_display_options($form, $form_state);
        $row_plugin = isset($form_state['values']['page']['style']['row_plugin']) ? $form_state['values']['page']['style']['row_plugin'] : NULL;
        $row_options = isset($form_state['values']['page']['style']['row_options']) ? $form_state['values']['page']['style']['row_options'] : array();
        $this->display_options_row($display_options, $row_plugin, $row_options);
        return $display_options;
    }
    
    /**
     *
     */
    protected function block_display_options($form, $form_state) {
        $display_options = parent::block_display_options($form, $form_state);
        $row_plugin = isset($form_state['values']['block']['style']['row_plugin']) ? $form_state['values']['block']['style']['row_plugin'] : NULL;
        $row_options = isset($form_state['values']['block']['style']['row_options']) ? $form_state['values']['block']['style']['row_options'] : array();
        $this->display_options_row($display_options, $row_plugin, $row_options);
        return $display_options;
    }
    
    /**
     * Set the row style and row style plugins to the display_options.
     */
    protected function display_options_row(&$display_options, $row_plugin, $row_options) {
        switch ($row_plugin) {
            case 'full_posts':
                $display_options['row_plugin'] = 'node';
                $display_options['row_options']['build_mode'] = 'full';
                $display_options['row_options']['links'] = !empty($row_options['links']);
                $display_options['row_options']['comments'] = !empty($row_options['comments']);
                break;
            case 'teasers':
                $display_options['row_plugin'] = 'node';
                $display_options['row_options']['build_mode'] = 'teaser';
                $display_options['row_options']['links'] = !empty($row_options['links']);
                $display_options['row_options']['comments'] = !empty($row_options['comments']);
                break;
            case 'titles_linked':
                $display_options['row_plugin'] = 'fields';
                $display_options['field']['title']['link_to_node'] = 1;
                break;
            case 'titles':
                $display_options['row_plugin'] = 'fields';
                $display_options['field']['title']['link_to_node'] = 0;
                break;
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
ViewsUiBaseViewsWizard::$base_table protected property
ViewsUiBaseViewsWizard::$entity_info protected property
ViewsUiBaseViewsWizard::$entity_type protected property
ViewsUiBaseViewsWizard::$filter_defaults protected property
ViewsUiBaseViewsWizard::$plugin protected property
ViewsUiBaseViewsWizard::$validated_views protected property
ViewsUiBaseViewsWizard::add_displays protected function Add the array of display options to the view, with appropriate overrides.
ViewsUiBaseViewsWizard::alter_display_options protected function Alter the full array of display options before they are added to the view.
ViewsUiBaseViewsWizard::build_display_options protected function Build an array of display options for the view.
ViewsUiBaseViewsWizard::build_filters protected function Build the part of the form that allows the user to select the filters.
ViewsUiBaseViewsWizard::build_form public function For AJAX callbacks to build other elements in the "show" form. Overrides ViewsWizardInterface::build_form
ViewsUiBaseViewsWizard::build_sorts protected function Build the part of the form that allows the user to select the sort order.
ViewsUiBaseViewsWizard::create_view public function Create a View from values that have been already submitted to validate(). Overrides ViewsWizardInterface::create_view
ViewsUiBaseViewsWizard::default_display_filters protected function
ViewsUiBaseViewsWizard::default_display_filters_user protected function
ViewsUiBaseViewsWizard::default_display_sorts protected function
ViewsUiBaseViewsWizard::default_display_sorts_user protected function
ViewsUiBaseViewsWizard::instantiate_view protected function
ViewsUiBaseViewsWizard::page_feed_display_options protected function
ViewsUiBaseViewsWizard::retrieve_validated_view protected function
ViewsUiBaseViewsWizard::set_default_options protected function Sets options for a display and makes them the default options if possible.
ViewsUiBaseViewsWizard::set_override_options protected function Sets options for a display, inheriting from the defaults when possible.
ViewsUiBaseViewsWizard::set_validated_view protected function
ViewsUiBaseViewsWizard::validate public function Instantiates a view and validates values. Overrides ViewsWizardInterface::validate
ViewsUiBaseViewsWizard::__construct public function Constructor. Overrides ViewsWizardInterface::__construct
ViewsUiNodeViewsWizard::block_display_options protected function Overrides ViewsUiBaseViewsWizard::block_display_options
ViewsUiNodeViewsWizard::build_form_style protected function Build the part of the form that builds the display format options. Overrides ViewsUiBaseViewsWizard::build_form_style
ViewsUiNodeViewsWizard::default_display_options protected function @override Overrides ViewsUiBaseViewsWizard::default_display_options 1
ViewsUiNodeViewsWizard::display_options_row protected function Set the row style and row style plugins to the display_options.
ViewsUiNodeViewsWizard::page_display_options protected function Overrides ViewsUiBaseViewsWizard::page_display_options
ViewsUiNodeViewsWizard::row_style_options protected function Add possible row style options. Overrides ViewsUiBaseViewsWizard::row_style_options 1