diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-04-12 12:57:55 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-04-12 12:58:37 +0200 |
commit | 7688cbcdf666c2c538bc35cbc4efbe929a8fa9da (patch) | |
tree | f5d9ee465597ec647c119cbc5e490ca970406446 /phpfspot_tmpl.php | |
parent | 2765fc086522b5fb9f209bdfe266e577fc65ca84 (diff) |
further pimped code for phpDocumentor
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot_tmpl.php')
-rw-r--r-- | phpfspot_tmpl.php | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/phpfspot_tmpl.php b/phpfspot_tmpl.php index e8bb48a..f6d3ce8 100644 --- a/phpfspot_tmpl.php +++ b/phpfspot_tmpl.php @@ -22,8 +22,17 @@ * ***************************************************************************/ +/** + * PHPFSPOT_TMPL class + * + * Extends Smarty base class with some additional functions + * @package phpfspot + */ class PHPFSPOT_TMPL extends Smarty { + /** + * class constructor + */ public function __construct() { global $phpfspot; @@ -46,12 +55,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() ?> |