1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Rotate Image |
---|
4 | Version: 0.4 |
---|
5 | Description: enables to rotate images in batch processing |
---|
6 | Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=578 |
---|
7 | */ |
---|
8 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
9 | |
---|
10 | add_event_handler('loc_begin_element_set_global', 'rotate_image_set_template_data'); |
---|
11 | add_event_handler('ws_add_methods', 'add_image_rotate_method'); |
---|
12 | add_event_handler('element_set_global_action', 'rotate_image_element_action', 50, 2); |
---|
13 | |
---|
14 | function add_image_rotate_method($arr) |
---|
15 | { |
---|
16 | include_once('ws_functions.inc.php'); |
---|
17 | } |
---|
18 | |
---|
19 | function rotate_image_set_template_data() { |
---|
20 | global $template,$lang; |
---|
21 | load_language('plugin.lang', dirname(__FILE__).'/'); |
---|
22 | $angles = array ( |
---|
23 | array('value' => 90, 'name' => l10n('90° left')), |
---|
24 | array('value' => 270, 'name' => l10n('90° right')), |
---|
25 | array('value' => 180, 'name' => l10n('180°')) |
---|
26 | ); |
---|
27 | |
---|
28 | $template->assign(array( |
---|
29 | 'RI_PWG_TOKEN' => get_pwg_token(), |
---|
30 | 'angles' => $angles, |
---|
31 | 'angle_value' => 90, |
---|
32 | 'library' => pwg_image::get_library() |
---|
33 | )); |
---|
34 | $template->set_filename('rotate_image', realpath(dirname(__FILE__).'/rotate_image.tpl')); |
---|
35 | $template->append('element_set_global_plugins_actions', array( |
---|
36 | 'ID' => 'rotateImg', |
---|
37 | 'NAME' => l10n('Rotate images'), |
---|
38 | 'CONTENT' => $template->parse('rotate_image', true)) |
---|
39 | ); |
---|
40 | } |
---|
41 | |
---|
42 | function rotate_image_element_action($action, $collection) { |
---|
43 | global $template; |
---|
44 | if ($action == 'rotateImg') { |
---|
45 | //flush thumbnails links by regenerating ramdom ids to uris |
---|
46 | $template->delete_compiled_templates(); |
---|
47 | } |
---|
48 | } |
---|
49 | |
---|
50 | ?> |
---|