| 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 |
| 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 |
|
|