Rev | Line | |
---|
[4549] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Plugin Name: Ajax Thumbnailer |
---|
[10443] | 4 | Version: auto |
---|
| 5 | Description: Mass thumbnail generator. |
---|
[4549] | 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=327 |
---|
| 7 | Author: Bruno Hondelatte |
---|
| 8 | Author URI: http://morefnu.org |
---|
| 9 | */ |
---|
| 10 | |
---|
| 11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 12 | |
---|
[10441] | 13 | add_event_handler('ws_add_methods', 'add_thumbnail_create_method'); |
---|
| 14 | |
---|
| 15 | function add_thumbnail_create_method($arr) |
---|
[4549] | 16 | { |
---|
[10441] | 17 | include_once('ws_functions.inc.php'); |
---|
| 18 | } |
---|
[4549] | 19 | |
---|
[10441] | 20 | add_event_handler('loc_begin_admin', 'ajaxThumbnailer_admin_modify'); |
---|
[4549] | 21 | |
---|
[10441] | 22 | function ajaxThumbnailer_admin_modify() |
---|
| 23 | { |
---|
| 24 | global $page, $template; |
---|
[4549] | 25 | |
---|
[10441] | 26 | if (isset($_GET['page']) and $_GET['page'] == 'thumbnail') |
---|
| 27 | { |
---|
| 28 | load_language('plugin.lang', dirname(__FILE__).'/'); |
---|
[10709] | 29 | $template->set_extent(dirname(__FILE__).'/ajaxThumbnailer.tpl', 'thumbnail'); |
---|
[10441] | 30 | } |
---|
[4549] | 31 | } |
---|
| 32 | |
---|
[10441] | 33 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.