/[drupal]/contributions/modules/index/index.module
ViewVC logotype

Diff of /contributions/modules/index/index.module

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

revision 1.1.2.10 by xano, Sun Nov 8 20:11:49 2009 UTC revision 1.1.2.11 by xano, Tue Nov 17 16:08:36 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: index.module,v 1.1.2.9 2009/10/19 01:19:46 xano Exp $  // $Id: index.module,v 1.1.2.10 2009/11/08 20:11:49 xano Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 228  function index_index_entity_type_info() Line 228  function index_index_entity_type_info()
228        '#file' => 'includes/index.view.inc',        '#file' => 'includes/index.view.inc',
229      ),      ),
230    );    );
231      $entities['comment'] = array(
232        '#title' => t('Comments'),
233        '#relations' => array(
234          'node' => 'nid',
235          'user' => 'uid',
236        ),
237        '#data_callback_info' => array(
238          '#callback' => 'index_data_get_comment',
239          '#file' => 'includes/index.data.inc',
240        ),
241        '#theme_info' => array(
242          '#theme' => 'index_data_comment',
243          '#file' => 'includes/index.view.inc',
244        ),
245      );
246    $entities['taxonomy_term'] = array(    $entities['taxonomy_term'] = array(
247      '#title' => t('Terms'),      '#title' => t('Terms'),
248      '#relations' => array(      '#relations' => array(

Legend:
Removed from v.1.1.2.10  
changed lines
  Added in v.1.1.2.11

  ViewVC Help
Powered by ViewVC 1.1.3