/[drupal]/contributions/modules/views/views_ui.module
ViewVC logotype

Diff of /contributions/modules/views/views_ui.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.109.6.1, Mon Nov 2 22:01:25 2009 UTC revision 1.109.6.2, Mon Nov 9 22:35:58 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: views_ui.module,v 1.109 2009/01/30 00:56:01 merlinofchaos Exp $  // $Id: views_ui.module,v 1.109.6.1 2009/11/02 22:01:25 merlinofchaos Exp $
3  /**  /**
4   * @file views_ui.module   * @file views_ui.module
5   * Provide structure for the administrative interface to Views.   * Provide structure for the administrative interface to Views.
# Line 161  function views_ui_theme() { Line 161  function views_ui_theme() {
161    return array(    return array(
162      // edit a view      // edit a view
163      'views_ui_edit_view' => array(      'views_ui_edit_view' => array(
164        'arguments' => array('view' => NULL),        'variables' => array('view' => NULL),
165        'template' => 'views-ui-edit-view',        'template' => 'views-ui-edit-view',
166        'path' => "$path/theme",        'path' => "$path/theme",
167      ),      ),
168      'views_ui_edit_tab' => array(      'views_ui_edit_tab' => array(
169        'arguments' => array('view' => NULL, 'display' => NULL),        'variables' => array('view' => NULL, 'display' => NULL),
170        'template' => 'views-ui-edit-tab',        'template' => 'views-ui-edit-tab',
171        'path' => "$path/theme",        'path' => "$path/theme",
172      ),      ),
173      'views_ui_edit_item' => array(      'views_ui_edit_item' => array(
174        'arguments' => array('type' => NULL, 'view' => NULL, 'display' => NULL, 'no_fields' => FALSE),        'variables' => array('type' => NULL, 'view' => NULL, 'display' => NULL, 'no_fields' => FALSE),
175        'template' => 'views-ui-edit-item',        'template' => 'views-ui-edit-item',
176        'path' => "$path/theme",        'path' => "$path/theme",
177      ),      ),
178      'views_ui_rearrange_form' => array(      'views_ui_rearrange_form' => array(
179        'arguments' => array('form' => NULL),        'render element' => 'form',
180      ),      ),
181    
182      // list views      // list views
183      'views_ui_list_views' => array(      'views_ui_list_views' => array(
184        'arguments' => array(        'variables' => array(
185          'views' => array(),          'views' => array(),
186          'help' => '',          'help' => '',
187          'widgets' => '',          'widgets' => '',
# Line 193  function views_ui_theme() { Line 193  function views_ui_theme() {
193    
194      // tab themes      // tab themes
195      'views_tabset' => array(      'views_tabset' => array(
196        'arguments' => array('tabs' => NULL),        'variables' => array('tabs' => NULL),
197      ),      ),
198      'views_tab' => array(      'views_tab' => array(
199        'arguments' => array('body' => NULL),        'variables' => array('body' => NULL),
200      ),      ),
201    
202      // On behalf of a plugin      // On behalf of a plugin
203      'views_ui_style_plugin_table' => array(      'views_ui_style_plugin_table' => array(
204        'arguments' => array('form' => NULL),        'render element' => 'form',
205      ),      ),
206    );    );
207  }  }

Legend:
Removed from v.1.109.6.1  
changed lines
  Added in v.1.109.6.2

  ViewVC Help
Powered by ViewVC 1.1.2