source: extensions/akBookStyle/trunk/admin.php @ 3806

Last change on this file since 3806 was 3806, checked in by nikrou, 15 years ago

Feature 1144 : allow admin to choose mouse event to show medium picture

  • refactoring (only on javascript file)
  • bug fix : allow to choose click !
File size: 3.8 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | akBookStyle  - a plugin for Piwigo                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
6// | Copyright(C) 2009      vdigital                                       |
7// +-----------------------------------------------------------------------+
8// | This program is free software; you can redistribute it and/or modify  |
9// | it under the terms of the GNU General Public License as published by  |
10// | the Free Software Foundation                                          |
11// |                                                                       |
12// | This program is distributed in the hope that it will be useful, but   |
13// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
14// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
15// | General Public License for more details.                              |
16// |                                                                       |
17// | You should have received a copy of the GNU General Public License     |
18// | along with this program; if not, write to the Free Software           |
19// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
20// | USA.                                                                  |
21// +-----------------------------------------------------------------------+
22
23if (!defined('PHPWG_ROOT_PATH')) {
24  die('Hacking attempt!');
25}
26
27$ThumbnailsLocations = array('top','left','bottom','right');
28$MouseEvents = array('click' => 'ak_event_click',
29                     'mouseover' => 'ak_event_mouseover');
30
31load_language('plugin.lang', AK_PLUGIN_LANG);
32
33$me = get_plugin_data($plugin_id);
34$save_config = false;
35
36if (!empty($_POST['submit'])) {
37  if (!empty($_POST['ak_by_line']) && intval($_POST['ak_by_line'])!=$me->ak_by_line) {
38    $me->ak_by_line = intval($_POST['ak_by_line']);
39    array_push($GLOBALS['page']['infos'], $lang['ak_by_line_changed']);
40    $save_config = true;
41  }
42
43  if (!empty($_POST['ak_thumbnail_size']) && $_POST['ak_thumbnail_size']!=$me->ak_thumbnail_size) {
44    $me->ak_thumbnail_size = (int) $_POST['ak_thumbnail_size'];
45    array_push($GLOBALS['page']['infos'], $lang['ak_thumbnail_size_changed']);
46    $save_config = true;
47  }
48
49  if (!empty($_POST['ak_mouse_event']) && $_POST['ak_mouse_event']!=$me->ak_mouse_event) {
50    $me->ak_mouse_event = isset($MouseEvents[$_POST['ak_mouse_event']])?$_POST['ak_mouse_event']:'click';
51    array_push($GLOBALS['page']['infos'], $lang['ak_mouse_event_changed']);
52    $save_config = true;
53  }
54
55  if (!empty($_POST['ak_thumbnails_loc']) && $_POST['ak_thumbnails_loc']!=$me->ak_thumbnails_loc) {
56    $me->ak_thumbnails_loc = in_array($_POST['ak_thumbnails_loc'],$ThumbnailsLocations)?$_POST['ak_thumbnails_loc']:'left';
57    array_push($GLOBALS['page']['infos'], $lang['ak_thumbnails_loc_changed']);
58    $save_config = true;
59  }
60
61  if ($save_config) {
62    $me->save_config();
63  }
64}
65$GLOBALS['template']->set_filenames(array('plugin_admin_content' => AK_PLUGIN_TEMPLATE . '/admin.tpl'));
66$GLOBALS['template']->assign('AK_PLUGIN_CSS', AK_PLUGIN_CSS); 
67$GLOBALS['template']->assign('AK_BY_LINE', $me->ak_by_line); 
68$GLOBALS['template']->assign('AK_THUMBNAIL_SIZE', $me->ak_thumbnail_size); 
69$GLOBALS['template']->assign('AK_MOUSE_EVENT', $me->ak_mouse_event); 
70$GLOBALS['template']->assign('AK_AVAILABLE_EVENTS', array_keys($MouseEvents)); 
71$GLOBALS['template']->assign('AK_EVENTS_LABELS', array_values($MouseEvents)); 
72$GLOBALS['template']->assign('AK_THUMBNAILS_LOC', $me->ak_thumbnails_loc); 
73$GLOBALS['template']->assign('AK_THUMBNAILS_LOCATIONS', $ThumbnailsLocations); 
74$GLOBALS['template']->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content');
75?>
Note: See TracBrowser for help on using the repository browser.