* @author Kornel LesiĆski
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id: Name.php 605 2009-05-03 02:50:26Z 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:
*
*
* was born in
* .
*
*
* 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_contents())');
$codewriter->pushCode('ob_end_clean()');
}
}