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

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

Make plugin works as expected using webservice.

File size: 3.1 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    $template->assign('T4U_JS', T4U_JS);
38    $template->assign('T4U_CSS', T4U_CSS);
39    $template->assign('T4U_IMGS', T4U_IMGS);
40    $template->assign('T4U_PERMISSION_DELETE', $this->plugin_config->hasPermission('delete'));
41    $template->assign('T4U_UPDATE_SCRIPT', get_root_url().'ws.php?format=json&method='.T4U_WS.'update');
42    $template->assign('T4U_UPDATE_METHOD', T4U_WS.'update');
43    $template->assign('T4U_GET_SCRIPT', get_root_url().'ws.php?format=json&method='.T4U_WS.'list');
44    $template->assign('T4U_IMAGE_ID', $picture['id']);
45    $template->assign('T4U_REFERER', urlencode($picture['url']));
46    $template->assign('T4U_PERMISSION_DELETE', $this->plugin_config->hasPermission('delete'));
47
48    $related_tags = array();
49    if (!empty($template->smarty->_tpl_vars['related_tags'])) {
50      foreach ($template->smarty->_tpl_vars['related_tags'] as $id => $tag_infos) {
51        $related_tags['~~'.$tag_infos['id'].'~~'] = $tag_infos['name']; 
52      }
53    }
54    $template->assign('T4U_RELATED_TAGS', $related_tags);
55
56    $template->set_filename('add_tags', T4U_TEMPLATE.'/add_tags.tpl');
57
58    $plugin_picture_before = $template->get_template_vars('PLUGIN_PICTURE_BEFORE');
59    $plugin_picture_before .= $template->parse('add_tags', true);
60    $template->append('PLUGIN_PICTURE_BEFORE', $plugin_picture_before);
61
62    return $content;
63  }
64}
65?>
Note: See TracBrowser for help on using the repository browser.