modifier.translate.php
来自「一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:」· PHP 代码 · 共 40 行
PHP
40 行
<?php/** * Piwik - Open source web analytics * * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: modifier.sumtime.php 168 2008-01-14 05:26:43Z matt $ * * @package SmartyPlugins *//** * Read the translation string from the given index (read form the selected language in Piwik). * The translations strings are located either in /lang/xx.php or within the plugin lang directory. * * Example: * {'General_Unknown'|translate} will be translated as 'Unknown' (see the entry in /lang/en.php) * * @return string The translated string */function smarty_modifier_translate($stringToken){ if(func_num_args() <= 1) { $aValues = array(); } else { $aValues = func_get_args(); array_shift($aValues); } try { $stringTranslated = Piwik_Translate($stringToken); } catch( Exception $e) { $stringTranslated = $stringToken; } return vsprintf($stringTranslated, $aValues);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?