X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=phpfspot_tmpl.php;h=bf0f835ff9008834a9b3f4ee85b39b3fc0a9b7d2;hp=e8bb48a5a5e7bec4d95765a75934f6eb2562bdcf;hb=528046b591693d8bfa7fd2c042edb7800a191099;hpb=9b5884120e78b7e2ce35d37bdb72da7ec721452d diff --git a/phpfspot_tmpl.php b/phpfspot_tmpl.php index e8bb48a..bf0f835 100644 --- a/phpfspot_tmpl.php +++ b/phpfspot_tmpl.php @@ -22,8 +22,18 @@ * ***************************************************************************/ +/** + * PHPFSPOT_TMPL class + * + * Extends Smarty base class with some additional functions + * @package phpfspot + */ class PHPFSPOT_TMPL extends Smarty { + /** + * PHPFSPOT_TMPL constructor + * @access public + */ public function __construct() { global $phpfspot; @@ -46,12 +56,18 @@ class PHPFSPOT_TMPL extends Smarty { } // __construct() + /** + * show template + * + * outputs the requested template + * @param string $template + */ public function show($template) { $this->display($template); } // show() -} +} // PHPFSPOT_TMPL() ?>