source: extensions/rotateImage/main.inc.php @ 12449

Last change on this file since 12449 was 12417, checked in by Dsls, 13 years ago

rotateImage v0.3 :

  • thumbnails are correctly refreshed
  • strengthened ws
  • small tuning on form display
  • it is now possible to select whether HD should be rotated or not
File size: 1.5 KB
Line 
1<?php
2/*
3Plugin Name: Rotate Image
4Version: 0.3
5Description: enables to rotate images in batch processing
6Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=578
7*/
8if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
9
10add_event_handler('loc_begin_element_set_global', 'rotate_image_set_template_data');
11add_event_handler('ws_add_methods', 'add_image_rotate_method');
12add_event_handler('element_set_global_action', 'rotate_image_element_action', 50, 2);
13
14function add_image_rotate_method($arr)
15{
16 include_once('ws_functions.inc.php');
17}
18
19function 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  ));
33  $template->set_filename('rotate_image', realpath(dirname(__FILE__).'/rotate_image.tpl'));
34  $template->append('element_set_global_plugins_actions', array(
35    'ID' => 'rotateImg',
36    'NAME' => l10n('Rotate images'),
37    'CONTENT' => $template->parse('rotate_image', true))
38  );
39}
40
41function rotate_image_element_action($action, $collection) {
42  global $template;
43  if ($action == 'rotateImg') {
44    //flush thumbnails links by regenerating ramdom ids to uris
45    $template->delete_compiled_templates();
46  }
47}
48
49?>
Note: See TracBrowser for help on using the repository browser.