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

Diff of /contributions/modules/booktree/booktree.module

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

revision 1.11.2.7, Mon Sep 14 20:40:23 2009 UTC revision 1.11.2.8, Fri Oct 23 23:09:10 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: booktree.module,v 1.11.2.6 2009/09/14 20:11:36 uccio Exp $  // $Id: booktree.module,v 1.11.2.7 2009/09/14 20:40:23 uccio Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 32  function booktree_menu() { Line 32  function booktree_menu() {
32        'access arguments' => array('access booktree'),        'access arguments' => array('access booktree'),
33        'type' => MENU_NORMAL_ITEM,        'type' => MENU_NORMAL_ITEM,
34        );        );
35    
36      $items['booktree/%'] = array(
37          'title' => t('BookTree'),
38          'description' => t('Book Index.'),
39          'page callback' => 'booktree_indice',
40          'access arguments' => array('access booktree'),
41          'type' => MENU_CALLBACK,
42          );
43    
44      $items['booktree/%/%'] = array(
45          'title' => t('BookTree'),
46          'description' => t('Book Index.'),
47          'page callback' => 'booktree_indice',
48          'access arguments' => array('access booktree'),
49          'type' => MENU_CALLBACK,
50          );
51    
52      $items['booktree/%/%/%'] = array(
53          'title' => t('BookTree'),
54          'description' => t('Book Index.'),
55          'page callback' => 'booktree_indice',
56          'access arguments' => array('access booktree'),
57          'type' => MENU_CALLBACK,
58          );
59    
60    $items['admin/settings/booktree'] = array(    $items['admin/settings/booktree'] = array(
61        'title' => t('BookTree'),        'title' => t('BookTree'),
62        'description' => t('Manage the tree-view of book.'),        'description' => t('Manage the tree-view of book.'),

Legend:
Removed from v.1.11.2.7  
changed lines
  Added in v.1.11.2.8

  ViewVC Help
Powered by ViewVC 1.1.2