Last change
on this file since 19029 was
6535,
checked in by vdigital, 14 years ago
|
New: Add Untagged elements link in Maintenance menu.
|
File size:
672 bytes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | if ((!defined('PHPWG_ROOT_PATH')) or (!(defined('IN_ADMIN') and IN_ADMIN))) |
---|
4 | { |
---|
5 | return false; |
---|
6 | } |
---|
7 | |
---|
8 | if ( !function_exists( 'untagged_get_admin_advanced_features_links' ) ) |
---|
9 | { |
---|
10 | function untagged_get_admin_advanced_features_links($advanced_features) |
---|
11 | { |
---|
12 | load_language('plugin.lang', UTG_PATH); |
---|
13 | |
---|
14 | array_push($advanced_features, |
---|
15 | array |
---|
16 | ( |
---|
17 | 'CAPTION' => l10n('Untagged elements'), |
---|
18 | 'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/untagged_element_set.php').'&cat=not_tagged', |
---|
19 | )); |
---|
20 | |
---|
21 | return $advanced_features; |
---|
22 | } |
---|
23 | |
---|
24 | add_event_handler('get_admin_advanced_features_links', 'untagged_get_admin_advanced_features_links'); |
---|
25 | } |
---|
26 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.