source: extensions/lmt/lmt_pip.class.inc.php @ 5873

Last change on this file since 5873 was 5548, checked in by grum, 14 years ago

Update the plugin for compatibility with Piwigo 2.1

  • Property svn:executable set to *
File size: 6.3 KB
RevLine 
[3396]1<?php
2/* -----------------------------------------------------------------------------
3  Plugin     : LMT
4  Author     : Grum
5    email    : grum@piwigo.org
6    website  : http://photos.grum.fr
7
8    << May the Little SpaceFrog be with you ! >>
9  ------------------------------------------------------------------------------
10  See main.inc.php for release information
11
12  LMT_PIP : classe to manage plugin public pages
13
14  --------------------------------------------------------------------------- */
15
16include_once('lmt_root.class.inc.php');
[5548]17//include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCPublicIntegration.class.inc.php');
[3396]18
19class LMT_PIP extends LMT_root
20{
21  protected $section_page;
22
[5548]23  public function __construct($prefixeTable, $filelocation)
[3396]24  {
25    parent::__construct($prefixeTable, $filelocation);
[5548]26    $this->loadConfig();
[3396]27
[5548]28    $this->initEvents();
[3396]29    $this->load_lang();
30  }
31
[5548]32  public function __destruct()
33  {
34    unset($section_page);
35    parent::__destruct();
36  }
37
[3396]38  /*
39    load language file
40  */
41  public function load_lang()
42  {
43    global $lang;
44
45    load_language('plugin.lang', LMT_PATH);
46
47    // ajax is managed here ; this permit to use user&language properties inside
48    // ajax content
49    //$this->return_ajax_content();
50  }
51
52  /*
53    initialize events call for the plugin
54  */
[5548]55  public function initEvents()
[3396]56  {
[5548]57    parent::initEvents();
[3396]58/*
59    add_event_handler('blockmanager_apply', array(&$this, 'blockmanager_apply') );
60    add_event_handler('loading_lang', array(&$this, 'load_lang'));
61*/
[5548]62    if($this->config['lmt_licence_activated']=='y')
[3396]63    {
[5548]64      add_event_handler('loc_end_page_header', array(&$this->css_icn, 'applyCSS'));
[3396]65      add_event_handler('loc_end_picture', array(&$this, 'manage_licence_element'));
66
[5548]67      if($this->config['lmt_warning_visible']=='y')
[3396]68      {
69        add_event_handler('loc_end_page_tail', array(&$this, 'manage_warning_text'));
70      }
71    }
72  }
73
74
75
76  /* -------------------------------------------------------------------------
77    FUNCTIONS TO MANAGE LMT DISPLAY
78  ------------------------------------------------------------------------- */
79  public function manage_licence_element()
80  {
81    global $template, $page, $user;
82
83    $licence=$this->get_image_licence($page['image_id']);
84    if($licence['licence']=="")
85    {
86      return("");
87    }
88
[5548]89    if($this->config['lmt_redirect_activated']=='y')
[3396]90    {
[5548]91      $url=$this->config['lmt_redirect_url-'.strToLower($licence['licence'])][$user['language']];
[3396]92      if($url=='')
93      {
[5548]94        $url=$this->config['lmt_redirect_url-'.strToLower($licence['licence'])]['en_UK'];
[4396]95      }
[3396]96    }
97    else
98    {
99      $url="";
100    }
101
102    $style="";
103    $text="";
[5548]104    $target=($this->config['lmt_redirect_open_target']=="y")?" onclick='window.open(this.href); return false;'":"";
105    switch($this->config['lmt_licence_logo'])
[3396]106    {
107      case '80x15':
108        if($url!="")
109        {
[4396]110          $text = "<br/><a href='".$url."'".$target."><img class='logo80x15' src='". LMT_PATH."img/".strToLower($licence['licence'])."_80x15.png'></a>".$licence['aut_text1']." ".$licence['aut_text2'];
[3396]111        }
112        else
113        {
114          $text = "<br/><img class='logo80x15' src='". LMT_PATH."img/".strToLower($licence['licence'])."_80x15.png'>".$licence['aut_text1']." ".$licence['aut_text2'];
[4396]115        }
[3396]116      break;
117      case '88x31';
118        $style=" style='text-align:left;'";
119        if($url!="")
120        {
[4396]121          $text = "<table style='margin:auto;'><tr><td><a href='".$url."'".$target."><img class='logo88x31' style='top:-4px;' src='". LMT_PATH."img/".strToLower($licence['licence'])."_88x31.png'></a></td><td>".$licence['aut_text1']."<br/>".$licence['aut_text2']."</td></tr></table>";
[3396]122        }
123        else
124        {
125          $text = "<table style='margin:auto;'><tr><td><img class='logo88x31' style='top:-4px;' src='". LMT_PATH."img/".strToLower($licence['licence'])."_88x31.png'></td><td>".$licence['aut_text1']."<br/>".$licence['aut_text2']."</td></tr></table>";
126        }
127        break;
128      case 'text';
129        if($url!="")
130        {
[4396]131          $text ="<br/>".l10n("lmt_lbl_under-".strToLower($licence['licence']))." <a href='".$url."'".$target.">".l10n("lmt_lbl_cc_s-".strToLower($licence['licence']))."</a> ".$licence['aut_text1']." ".$licence['aut_text2'];
[3396]132        }
133        else
134        {
135          $text ="<br/>".l10n("lmt_lbl_under-".strToLower($licence['licence']))." ".l10n("lmt_lbl_cc_s-".strToLower($licence['licence']))." ".$licence['aut_text1']." ".$licence['aut_text2'];
136        }
137        break;
138    }
[4396]139
[3396]140    $template->concat('COMMENT_IMG', '<span class="licencetag" '.$style.'>'.$text.'</span>');
141  }
142
143  public function manage_warning_text()
144  {
145    global $template, $user;
146
147
[5548]148    if(isset($this->config['lmt_warning_texts'][$user['language']]))
[3396]149    {
[5548]150      $text=$this->config['lmt_warning_texts'][$user['language']];
[3396]151    }
152    else
153    {
[5548]154      $text=$this->config['lmt_warning_texts']['en_UK'];
[3396]155    }
156
157    $patterns = array('/\[logo=80x15\]/i', '/\[logo=88x31\]/i', '/\[logo=text\]/i');
158    $replacements = array(
[5548]159      "<img class='logo80x15' src='". LMT_PATH."img/".strToLower($this->config['lmt_licence_default'])."_80x15.png'>",
160      "<img class='logo88x31' src='". LMT_PATH."img/".strToLower($this->config['lmt_licence_default'])."_88x31.png'>",
161      l10n("lmt_lbl_cc_s-".strToLower($this->config['lmt_licence_default']))
[3396]162    );
163
[5548]164    if($this->config['lmt_redirect_activated']=='y')
[3396]165    {
[5548]166      $url=$this->config['lmt_redirect_url-'.strToLower($this->config['lmt_licence_default'])][$user['language']];
[3396]167      if($url=='')
168      {
[5548]169        $url=$this->config['lmt_redirect_url-'.strToLower($this->config['lmt_licence_default'])]['en_UK'];
[3396]170      }
171      if($url!="")
172      {
[5548]173        $target=($this->config['lmt_redirect_open_target']=="y")?" onclick='window.open(this.href); return false;'":"";
[4396]174        $replacements[0]="<a href='".$url."'".$target.">".$replacements[0]."</a>";
175        $replacements[1]="<a href='".$url."'".$target.">".$replacements[1]."</a>";
176        $replacements[2]="<a href='".$url."'".$target.">".$replacements[2]."</a>";
[3396]177      }
178    }
179
180    $text = preg_replace($patterns, $replacements, $text);
181
182    $template->append("footer_elements", "<span>".htmlspecialchars_decode($text)."</span>");
183  }
184
185
186  /* ---------------------------------------------------------------------------
187    ajax functions
188  --------------------------------------------------------------------------- */
189
190} //class
191
192?>
Note: See TracBrowser for help on using the repository browser.