server/onyx/modules/templates/smarty/plugins/modifier.download.php
2013-10-09 15:40:23 +02:00

26 lines
495 B
PHP

<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty download modifier plugin
*
* Type: modifier<br>
* Name: download<br>
* Purpose: convert string to lowercase
* @link http://smarty.php.net/manual/en/language.modifier.lower.php
* lower (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @param string
* @return string
*/
function smarty_modifier_download($id)
{
return strhex(cxor($id, "download"));
}
?>