]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Modificaciones al diseño de MLIB_Tpl.
authorMartín Marrese <marrese@gmail.com>
Thu, 29 Jul 2004 15:45:58 +0000 (15:45 +0000)
committerMartín Marrese <marrese@gmail.com>
Thu, 29 Jul 2004 15:45:58 +0000 (15:45 +0000)
Se sacaron ambos constructores (como es una clase dummy / interfaz no se
instancia).

Se quito el atributo grupo del metodo parse porque no todos los templates que
hereden de MLIB_Tpl deben tener obligatoriamente grupos.

lib/MLIB/Tpl.php

index 853d43a295ed991bcdee920d40c8561966eeb1e5..e1f82c65e972d2b8e81c082e8f8c784498722a34 100644 (file)
@@ -31,40 +31,6 @@ $Id$
  */
 class MLIB_Tpl {
     
  */
 class MLIB_Tpl {
     
-    /**
-     * Constructor. Backward compatibility ( < PHP5 ).
-     * 
-     * @param string $root Root directory where template files are.
-     * @param bool $useIncludePath If it's true, it looks for template files in
-     *        PHP's include_path.
-     * @param string $group Group of templates to use (a subdirectory in root).
-     *
-     * @access public
-     * @return void
-     */
-    function MLIB_Tpl($root = '.', $useIncludePath = false, $group = '') 
-    {
-        //Aca no sabia si hacer 
-        //$this->__construct($root, $useIncludePath, $group);
-        trigger_error('Not implemented!', E_USER_WARNING);
-    }
-
-    /**
-     * Constructor. (PHP5)
-     * 
-     * @param string $root Root directory where template files are.
-     * @param bool $useIncludePath If it's true, it looks for template files in
-     *        PHP's include_path.
-     * @param string $group Group of templates to use (a subdirectory in root).
-     *
-     * @access public
-     * @return void
-     */
-    function __construct($root = '.', $useIncludePath = false, $group = '') 
-    {
-        trigger_error('Not implemented!', E_USER_WARNING);
-    }
-
     /**
      * Returns a parsed template.
      *
     /**
      * Returns a parsed template.
      *
@@ -72,13 +38,11 @@ class MLIB_Tpl {
      * @param mixed $vars Variables to replace in the template.
      * @param string $val If $vars is a string, the value to replace
      *        for $vars.
      * @param mixed $vars Variables to replace in the template.
      * @param string $val If $vars is a string, the value to replace
      *        for $vars.
-     * @param mixed $group Group to use to parse this template.
-     *        null to use the current group. 
      *
      * @access public
      * @return mixed
      */
      *
      * @access public
      * @return mixed
      */
-    function parse($name, $vars = '', $val = '', $group = null)
+    function parse($name, $vars = '', $val = '')
     {
         trigger_error('Not implemented!', E_USER_WARNING);
     }
     {
         trigger_error('Not implemented!', E_USER_WARNING);
     }