Blame view

mobile/source/ext/phptal/PHPTAL/Php/Attribute/I18N/Name.php 1.32 KB
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  <?php
  /**
   * PHPTAL templating engine
   *
   * PHP Version 5
   *
   * @category HTML
   * @package  PHPTAL
   * @author   Laurent Bedubourg <lbedubourg@motion-twin.com>
   * @author   Kornel LesiƄski <kornel@aardvarkmedia.co.uk>
   * @license  http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
   * @version  SVN: $Id: Name.php 686 2009-08-18 09:10:42Z kornel $
   * @link     http://phptal.org/
   */
  
  /** i18n:name
   *
   * Name the content of the current element for use in interpolation within
   * translated content. This allows a replaceable component in content to be
   * re-ordered by translation. For example:
   *
   * <span i18n:translate=''>
   *   <span tal:replace='here/name' i18n:name='name' /> was born in
   *   <span tal:replace='here/country_of_birth' i18n:name='country' />.
   * </span>
   *
   * would cause this text to be passed to the translation service:
   *
   *     "${name} was born in ${country}."
   *
   *
   * @package PHPTAL
   * @subpackage Php.attribute.i18n
   */
  class PHPTAL_Php_Attribute_I18N_Name extends PHPTAL_Php_Attribute
  {
      public function before(PHPTAL_Php_CodeWriter $codewriter)
      {
          $codewriter->pushCode('ob_start()');
      }
  
      public function after(PHPTAL_Php_CodeWriter $codewriter)
      {
          $codewriter->pushCode('$_translator->setVar('.$codewriter->str($this->expression).', ob_get_clean())');
      }
  }