further pimped code for phpDocumentor
[phpfspot.git] / phpfspot_tmpl.php
index e8bb48a5a5e7bec4d95765a75934f6eb2562bdcf..f6d3ce85db83e93e4074bb1a949eef59f5e0e20a 100644 (file)
  *
  ***************************************************************************/
 
  *
  ***************************************************************************/
 
+/**
+ * PHPFSPOT_TMPL class
+ *
+ * Extends Smarty base class with some additional functions
+ * @package phpfspot
+ */
 class PHPFSPOT_TMPL extends Smarty {
 
 class PHPFSPOT_TMPL extends Smarty {
 
+   /**
+    * class constructor
+    */
    public function __construct()
    {
       global $phpfspot;
    public function __construct()
    {
       global $phpfspot;
@@ -46,12 +55,18 @@ class PHPFSPOT_TMPL extends Smarty {
 
    } // __construct()
 
 
    } // __construct()
 
+   /**
+    * show template
+    *
+    * outputs the requested template
+    * @param string $template
+    */
    public function show($template)
    {
       $this->display($template);
 
    } // show()
 
    public function show($template)
    {
       $this->display($template);
 
    } // show()
 
-}
+} // PHPFSPOT_TMPL()
 
 ?>
 
 ?>