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

Diff of /contributions/modules/plugin_manager/plugin_manager.module

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

revision 1.51.2.20, Wed Oct 1 01:43:41 2008 UTC revision 1.51.2.21, Wed Oct 1 01:45:55 2008 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: plugin_manager.module,v 1.51.2.19 2008/10/01 01:15:47 jabapyth Exp $  // $Id: plugin_manager.module,v 1.51.2.20 2008/10/01 01:43:41 jabapyth Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 91  function plugin_manager_menu() { Line 91  function plugin_manager_menu() {
91      'file' => 'plugin_manager.admin.inc',      'file' => 'plugin_manager.admin.inc',
92      'type' => MENU_CALLBACK,      'type' => MENU_CALLBACK,
93    );    );
94      $items['admin/build/modules/install'] = array(
95        'title' => 'Install',
96        'access arguments' => array('install plugins'),
97        'page callback' => 'plugin_manager_modules_redirect',
98        'file' => 'plugin_manager.admin.inc',
99        'weight' => 9,
100        'type' => MENU_LOCAL_TASK,
101      );
102      $items['admin/build/themes/install'] = array(
103        'title' => 'Install',
104        'access arguments' => array('install plugins'),
105        'page callback' => 'plugin_manager_themes_redirect',
106        'file' => 'plugin_manager.admin.inc',
107        'weight' => 9,
108        'type' => MENU_LOCAL_TASK,
109      );
110    return $items;    return $items;
111  }  }
112    

Legend:
Removed from v.1.51.2.20  
changed lines
  Added in v.1.51.2.21

  ViewVC Help
Powered by ViewVC 1.1.2