load('config')->appname; } /** * Show a date using a site configured format */ public static function Date($date) { return (is_null($date) OR ! $date) ? '' : date(Kohana::$config->load('config')->date_format,$date); } /** * Show a date using a site configured format * @note We need this function here, since we call self:: methods, which need to resolve to the child class. */ public static function Datetime($date) { return sprintf('%s %s',self::Date($date),self::Time($date)); } /** * Return the site configured language */ public static function ID() { return Kohana::$config->load('config')->id; } /** * Return the site configured language */ public static function Language() { return Kohana::$config->load('config')->language; } /** * Return the protocol that the site is using * * @param string URL to be included in the return */ public static function Protocol($url='') { static $secure = NULL; if (! $secure AND Request::current()) $secure = Request::current()->secure() ? 'https://' : 'http://'; return $secure.($url ? $url : ''); } /** * Return the site theme */ public static function Theme() { return 'theme/'.Kohana::$config->load('config')->theme; } /** * Show a time using a site configured format */ public static function Time($date) { return date(Kohana::$config->load('config')->time_format,($date ? $date : time())); } } ?>