source: trunk/include/template.class.php @ 2476

Last change on this file since 2476 was 2476, checked in by rvelices, 16 years ago
  • optim dont include a php file if not required
  • eng lang small change
  • remove link to unexisting admin css
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 11.6 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24
25require_once 'smarty/libs/Smarty.class.php';
26
27// migrate lang:XXX
28//    sed "s/{lang:\([^}]\+\)}/{\'\1\'|@translate}/g" my_template.tpl
29// migrate change root level vars {XXX}
30//    sed "s/{pwg_root}/{ROOT_URL}/g" my_template.tpl
31// migrate change root level vars {XXX}
32//    sed "s/{\([a-zA-Z_]\+\)}/{$\1}/g" my_template.tpl
33// migrate all
34//    cat my_template.tpl | sed "s/{lang:\([^}]\+\)}/{\'\1\'|@translate}/g" | sed "s/{pwg_root}/{ROOT_URL}/g" | sed "s/{\([a-zA-Z_]\+\)}/{$\1}/g"
35
36
37class Template {
38
39  var $smarty;
40
41  var $output = '';
42
43  // Hash of filenames for each template handle.
44  var $files = array();
45
46  // used by html_head smarty block to add content before </head>
47  var $html_head_elements = array();
48
49  function Template($root = ".", $theme= "")
50  {
51    global $conf;
52
53    $this->smarty = new Smarty;
54    $this->smarty->debugging = $conf['debug_template'];
55
56    if ( isset($conf['compiled_template_dir'] ) )
57    {
58      $compile_dir = $conf['compiled_template_dir'];
59    }
60    else
61    {
62      $compile_dir = $conf['local_data_dir'];
63      if ( !is_dir($compile_dir) )
64      {
65        mkdir( $compile_dir, 0777);
66        file_put_contents($compile_dir.'/index.htm', '');
67      }
68      $compile_dir .= '/templates_c';
69    }
70    if ( !is_dir($compile_dir) )
71    {
72      mkdir( $compile_dir, 0777 );
73      file_put_contents($compile_dir.'/index.htm', '');
74    }
75
76    $this->smarty->compile_dir = $compile_dir;
77
78    $this->smarty->assign_by_ref( 'pwg', new PwgTemplateAdapter() );
79    $this->smarty->register_modifier( 'translate', array('Template', 'mod_translate') );
80    $this->smarty->register_modifier( 'explode', array('Template', 'mod_explode') );
81    $this->smarty->register_block('html_head', array(&$this, 'block_html_head') );
82    if ( $conf['compiled_template_cache_language'] )
83    {
84      $this->smarty->register_prefilter( array(&$this, 'prefilter_language') );
85    }
86
87    if ( !empty($theme) )
88    {
89      include($root.'/theme/'.$theme.'/themeconf.inc.php');
90      $this->smarty->assign('themeconf', $themeconf);
91    }
92
93    $this->set_template_dir($root);
94  }
95
96  /**
97   * Sets the template root directory for this Template object.
98   */
99  function set_template_dir($dir)
100  {
101    $this->smarty->template_dir = $dir;
102
103    $real_dir = realpath($dir);
104    $compile_id = crc32( $real_dir===false ? $dir : $real_dir);
105    $this->smarty->compile_id = base_convert($compile_id, 10, 36 );
106  }
107
108  /**
109   * Gets the template root directory for this Template object.
110   */
111  function get_template_dir()
112  {
113    return $this->smarty->template_dir;
114  }
115
116  /**
117   * Deletes all compiled templates.
118   */
119  function delete_compiled_templates()
120  {
121      $save_compile_id = $this->smarty->compile_id;
122      $this->smarty->compile_id = null;
123      $this->smarty->clear_compiled_tpl();
124      $this->smarty->compile_id = $save_compile_id;
125      file_put_contents($this->smarty->compile_dir.'/index.htm', '');
126  }
127
128  function get_themeconf($val)
129  {
130    $tc = $this->smarty->get_template_vars('themeconf');
131    return isset($tc[$val]) ? $tc[$val] : '';
132  }
133
134  /**
135   * Sets the template filename for handle.
136   */
137  function set_filename($handle, $filename)
138  {
139    return $this->set_filenames( array($handle=>$filename) );
140  }
141
142  /**
143   * Sets the template filenames for handles. $filename_array should be a
144   * hash of handle => filename pairs.
145   */
146  function set_filenames($filename_array)
147  {
148    global $conf;
149    if (!is_array($filename_array))
150    {
151      return false;
152    }
153    reset($filename_array);
154    $tpl_extension = isset($conf['extents_for_templates']) ?
155      unserialize($conf['extents_for_templates']) : array();
156    while(list($handle, $filename) = each($filename_array))
157    {
158      if (is_null($filename))
159        unset( $this->files[$handle] );
160      else
161      {
162        $this->files[$handle] = $filename;
163        foreach ($tpl_extension as $file => $conditions)
164        {
165          $localtpl = './template-extension/' . $file;
166          if ($handle == $conditions[0] and
167             (stripos(implode('/',array_flip($_GET)),$conditions[1])>0
168              or $conditions[1] == 'N/A')
169              and file_exists($localtpl))
170          { /* examples: Are best_rated, created-monthly-calendar, list, ... set? */
171              $this->files[$handle] = '../.' . $localtpl;
172              /* assign their tpl-extension */
173          }
174        }
175      }
176    }
177    return true;
178  }
179
180  /** see smarty assign http://www.smarty.net/manual/en/api.assign.php */
181  function assign($tpl_var, $value = null)
182  {
183    $this->smarty->assign( $tpl_var, $value );
184  }
185
186  /**
187   * Inserts the uncompiled code for $handle as the value of $varname in the
188   * root-level. This can be used to effectively include a template in the
189   * middle of another template.
190   * This is equivalent to assign($varname, $this->parse($handle, true))
191   */
192  function assign_var_from_handle($varname, $handle)
193  {
194    $this->assign($varname, $this->parse($handle, true));
195    return true;
196  }
197
198  /** see smarty append http://www.smarty.net/manual/en/api.append.php */
199  function append($tpl_var, $value=null, $merge=false)
200  {
201    $this->smarty->append( $tpl_var, $value, $merge );
202  }
203
204  /**
205   * Root-level variable concatenation. Appends a  string to an existing
206   * variable assignment with the same name.
207   */
208  function concat($tpl_var, $value)
209  {
210    $old_val = & $this->smarty->get_template_vars($tpl_var);
211    if ( isset($old_val) )
212    {
213      $old_val .= $value;
214    }
215    else
216    {
217      $this->assign($tpl_var, $value);
218    }
219  }
220
221  /** see smarty append http://www.smarty.net/manual/en/api.clear_assign.php */
222  function clear_assign($tpl_var)
223  {
224    $this->smarty->clear_assign( $tpl_var );
225  }
226
227  /** see smarty get_template_vars http://www.smarty.net/manual/en/api.get_template_vars.php */
228  function &get_template_vars($name=null)
229  {
230    return $this->smarty->get_template_vars( $name );
231  }
232
233
234  /**
235   * Load the file for the handle, eventually compile the file and run the compiled
236   * code. This will add the output to the results or return the result if $return
237   * is true.
238   */
239  function parse($handle, $return=false)
240  {
241    if ( !isset($this->files[$handle]) )
242    {
243      die("Template->parse(): Couldn't load template file for handle $handle");
244    }
245
246    $this->smarty->assign( 'ROOT_URL', get_root_url() );
247    $this->smarty->assign( 'TAG_INPUT_ENABLED',
248      ((is_adviser()) ? 'disabled="disabled" onclick="return false;"' : ''));
249
250    global $conf, $lang_info;
251    if ( $conf['compiled_template_cache_language'] and isset($lang_info['code']) )
252    {
253      $save_compile_id = $this->smarty->compile_id;
254      $this->smarty->compile_id .= '.'.$lang_info['code'];
255    }
256
257    $v = $this->smarty->fetch($this->files[$handle], null, null, false);
258
259    if (isset ($save_compile_id) )
260    {
261      $this->smarty->compile_id = $save_compile_id;
262    }
263
264    if ($return)
265    {
266      return $v;
267    }
268    $this->output .= $v;
269  }
270
271  /**
272   * Load the file for the handle, eventually compile the file and run the compiled
273   * code. This will print out the results of executing the template.
274   */
275  function pparse($handle)
276  {
277    $this->parse($handle, false);
278    $this->flush();
279  }
280
281  function flush()
282  {
283    if ( count($this->html_head_elements) )
284    {
285      $search = "\n</head>";
286      $pos = strpos( $this->output, $search );
287      if ($pos !== false)
288      {
289        $this->output = substr_replace( $this->output, "\n".implode( "\n", $this->html_head_elements ), $pos, 0 );
290      } //else maybe error or warning ?
291      $this->html_head_elements = array();
292    }
293    echo $this->output;
294    $this->output='';
295  }
296
297  /** flushes the output */
298  function p()
299  {
300    $start = get_moment();
301
302    $this->flush();
303
304    if ($this->smarty->debugging)
305    {
306      global $t2;
307      $this->smarty->assign(
308        array(
309        'AAAA_DEBUG_OUTPUT_TIME__' => get_elapsed_time($start, get_moment()),
310        'AAAA_DEBUG_TOTAL_TIME__' => get_elapsed_time($t2, get_moment())
311        )
312        );
313      require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
314      echo smarty_core_display_debug_console(null, $this->smarty);
315    }
316  }
317
318  /**
319   * translate variable modifier - translates a text to the currently loaded
320   * language
321   */
322  /*static*/ function mod_translate($text)
323  {
324    return l10n($text);
325  }
326
327  /**
328   * explode variable modifier - similar to php explode
329   * 'Yes;No'|@explode:';' -> array('Yes', 'No')
330   */
331  /*static*/ function mod_explode($text, $delimiter=',')
332  {
333    return explode($delimiter, $text);
334  }
335
336  /**
337   * This smarty "html_head" block allows to add content just before
338   * </head> element in the output after the head has been parsed. This is
339   * handy in order to respect strict standards when <style> and <link>
340   * html elements must appear in the <head> element
341   */
342  function block_html_head($params, $content, &$smarty, &$repeat)
343  {
344    $content = trim($content);
345    if ( !empty($content) )
346    { // second call
347      if ( empty($this->output) )
348      {//page header not parsed yet
349        $this->append('head_elements', $content);
350      }
351      else
352      {
353        $this->html_head_elements[] = $content;
354      }
355    }
356  }
357
358  /**
359   * Smarty prefilter to allow caching (whenever possible) language strings
360   * from templates.
361   */
362  function prefilter_language($source, &$smarty)
363  {
364    global $lang;
365    $ldq = preg_quote($this->smarty->left_delimiter, '~');
366    $rdq = preg_quote($this->smarty->right_delimiter, '~');
367
368    $regex = "~$ldq *\'([^'$]+)\'\|@translate *$rdq~";
369    $source = preg_replace( $regex.'e', 'isset($lang[\'$1\']) ? $lang[\'$1\'] : \'$0\'', $source);
370
371    $regex = "~$ldq *\'([^'$]+)\'\|@translate\|~";
372    $source = preg_replace( $regex.'e', 'isset($lang[\'$1\']) ? \'{\'.var_export($lang[\'$1\'],true).\'|\' : \'$0\'', $source);
373
374    return $source;
375  }
376}
377
378/**
379 * This class contains basic functions that can be called directly from the
380 * templates in the form $pwg->l10n('edit')
381 */
382class PwgTemplateAdapter
383{
384  function l10n($text)
385  {
386    return l10n($text);
387  }
388
389  function l10n_dec($s, $p, $v)
390  {
391    return l10n_dec($s, $p, $v);
392  }
393
394  function sprintf()
395  {
396    $args = func_get_args();
397    return call_user_func_array('sprintf',  $args );
398  }
399}
400
401?>
Note: See TracBrowser for help on using the repository browser.