Changeset 1580 for trunk/admin/include
- Timestamp:
- Oct 27, 2006, 2:25:02 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/include/functions_plugins.inc.php
r1578 r1580 99 99 return false; 100 100 } 101 102 /*allows plugins to add their content to the administration page*/ 103 function add_plugin_admin_menu($title, $func) 104 { 105 global $page; 106 107 $uid = md5( var_export($func, true) ); 108 $page['plugin_admin_menu'][] = 109 array( 110 'title' => $title, 111 'function' => $func, 112 'uid' => $uid 113 ); 114 } 115 101 116 ?>
Note: See TracChangeset
for help on using the changeset viewer.