<?php
/**
* Function Library
*
* Contains some utility function not defined in Utils.
*
* @author Edoardo Tenani <hide@address.com>
* @license GNU Public License
* <http://opensource.org/licenses/gpl-3.0.php>
* @copyright Edoardo Tenani - 2010
*
* @package cboxmanager
* @subpackage utility
* @category utils
* @since 0.0.1
*
* @see Utils
*/
/**
* Alias for Utils::tt()
*
* This is an alias for Utils::tt() function
*
* @see Utils::tt()
*/
function tt($page, $identifier, $return = false, $path_to_root = ".") {
return Utils::tt($page, $identifier, $return, $path_to_root);
}
?>