source: extensions/user_tags/include/t4u_content.class.php @ 9037

Last change on this file since 9037 was 9037, checked in by nikrou, 13 years ago

Fix translation issue
Fix bugs with special configuration params :

Prepare piwigo release 2.2 (func_combine_script instead of func_known_script)

File size: 3.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | User Tags  - a plugin for Piwigo                                      |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
6// +-----------------------------------------------------------------------+
7// | This program is free software; you can redistribute it and/or modify  |
8// | it under the terms of the GNU General Public License as published by  |
9// | the Free Software Foundation                                          |
10// |                                                                       |
11// | This program is distributed in the hope that it will be useful, but   |
12// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
13// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
14// | General Public License for more details.                              |
15// |                                                                       |
16// | You should have received a copy of the GNU General Public License     |
17// | along with this program; if not, write to the Free Software           |
18// | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,            |
19// | MA 02110-1301 USA.                                                    |
20// +-----------------------------------------------------------------------+
21
22class t4u_Content
23{
24  public function __construct($config) {
25    $this->plugin_config = &$config;
26  }
27
28  public function render_element_content($content, $picture) {
29    global $template;
30
31    if (!$this->plugin_config->hasPermission('add')) {
32      return $content;
33    }
34
35    load_language('plugin.lang', T4U_PLUGIN_LANG);
36
37    if (version_compare(PHPWG_VERSION, '2.2', '>=') || (PHPWG_VERSION=='Colibri')) {
38      $template->func_combine_script(array('id' => 'jquery',
39                                           'path' => 'themes/default/js/jquery.min.js'
40                                           ),
41                                     $template->smarty
42                                     );
43    } else {
44      $template->func_known_script(array('id' => 'jquery',
45                                         'src' => get_root_url().'themes/default/js/jquery.packed.js'
46                                         ),
47                                   $template->smarty
48                                   );
49    }
50
51    $template->assign('T4U_JS', T4U_JS);
52    $template->assign('T4U_CSS', T4U_CSS);
53    $template->assign('T4U_IMGS', T4U_IMGS);
54    $template->assign('T4U_ADD_SCRIPT', $this->plugin_config->getActionUrl($picture['url'], 'add'));
55    $template->assign('T4U_GET_SCRIPT', $this->plugin_config->getActionUrl($picture['url'], 'get'));
56    $template->assign('T4U_IMAGE_ID', $picture['id']);
57    $template->assign('T4U_REFERER', htmlentities($picture['url']));
58    $template->assign('T4U_PERMISSION_DELETE', $this->plugin_config->hasPermission('delete'));
59
60    $related_tags = array();
61    if (!empty($template->smarty->_tpl_vars['related_tags'])) {
62      foreach ($template->smarty->_tpl_vars['related_tags'] as $id => $tag_infos) {
63        $related_tags['~~'.$tag_infos['id'].'~~'] = $tag_infos['name']; 
64      }
65    }
66    $template->assign('T4U_RELATED_TAGS', $related_tags);
67
68    $template->set_filename('add_tags', T4U_TEMPLATE.'/add_tags.tpl');
69    $template->assign_var_from_handle('PLUGIN_PICTURE_BEFORE', 'add_tags');
70
71    return $content;
72  }
73}
74?>
Note: See TracBrowser for help on using the repository browser.