source: extensions/DynamicResize/admin/init.php @ 31813

Last change on this file since 31813 was 12181, checked in by arno, 13 years ago

feature : dynamicResize 1er commit, suite et fin

File size: 315 bytes
Line 
1<?php
2add_event_handler('get_admin_plugin_menu_links', 'localfiles_admin_menu');
3function localfiles_admin_menu($menu)
4{
5  array_push(
6    $menu,
7    array(
8      'NAME' => 'LocalFiles Editor',
9      'URL' => get_root_url().'admin.php?page=plugin-'.basename(dirname(__FILE__))
10      )
11    );
12 
13  return $menu;
14}
15?>
Note: See TracBrowser for help on using the repository browser.