• Main Page
  • Related Pages
  • Modules
  • Classes
  • Files
  • File List
  • File Members

plugins/views_wizard/node_revision.inc

Go to the documentation of this file.
00001 <?php
00002 
00008 $plugin = array(
00009   'name' => 'node_revision',
00010   'base_table' => 'node_revision',
00011   'created_column' => 'timestamp',
00012   'form_wizard_class' => array(
00013     'file' => 'views_ui_node_revision_views_wizard.class.php',
00014     'class' => 'ViewsUiNodeRevisionViewsWizard',
00015   ),
00016   'title' => t('Content revisions'),
00017   'filters' => array(
00018     'status' => array(
00019       'value' => '1',
00020       'table' => 'node', // @todo - unclear if this should be node or node_revision
00021       'field' => 'status',
00022     ),
00023   ),
00024   'path_field' => array(
00025     'id' => 'vid',
00026     'table' => 'node_revision',
00027     'field' => 'vid',
00028     'exclude' => TRUE,
00029     'alter' => array(
00030       'alter_text' => 1,
00031       'text' => 'node/[nid]/revisions/[vid]/view',
00032     ),
00033   ),
00034   'path_fields_supplemental' => array(
00035     array(
00036       'id' => 'nid',
00037       'table' => 'node',
00038       'field' => 'nid',
00039       'exclude' => TRUE,
00040       'link_to_node' => FALSE,
00041     ),
00042   ),
00043 );

Generated on Sun Feb 26 2012 12:52:52 for Views by  doxygen 1.7.1