update INSTALL and UPGRADE file
[phpfspot.git] / phpfspot_tmpl.php
index e8bb48a5a5e7bec4d95765a75934f6eb2562bdcf..bf0f835ff9008834a9b3f4ee85b39b3fc0a9b7d2 100644 (file)
  *
  ***************************************************************************/
 
+/**
+ * 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()
 
 ?>