summaryrefslogtreecommitdiffstats
path: root/phpfspot_tmpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpfspot_tmpl.php')
-rw-r--r--phpfspot_tmpl.php18
1 files changed, 17 insertions, 1 deletions
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()
?>