Mercurial > hg > rr-repo
view sites/all/modules/views/plugins/views_wizard/node.inc @ 0:ff03f76ab3fe
initial version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Wed, 21 Aug 2013 18:51:11 +0100 |
parents | |
children |
line wrap: on
line source
<?php /** * @file * Views wizard for node views. */ $plugin = array( 'name' => 'node', 'base_table' => 'node', 'created_column' => 'created', 'available_sorts' => array( 'title:DESC' => t('Title') ), 'form_wizard_class' => array( 'file' => 'views_ui_node_views_wizard.class.php', 'class' => 'ViewsUiNodeViewsWizard', ), 'title' => t('Content'), 'filters' => array( 'status' => array( 'value' => NODE_PUBLISHED, 'table' => 'node', 'field' => 'status', ), ), 'path_field' => array( 'id' => 'nid', 'table' => 'node', 'field' => 'nid', 'exclude' => TRUE, 'link_to_node' => FALSE, 'alter' => array( 'alter_text' => 1, 'text' => 'node/[nid]', ), ), ); if (module_exists('statistics')) { $plugin['available_sorts']['node_counter-totalcount:DESC'] = t('Number of hits'); }