]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/QuickForm/caritas.php
Se le hicieron cambios menores..
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm / caritas.php
index aa8bcbb7b9ca50c00c8353fae53fed74873edff8..8ae3f415eba5e883e517e2f3213cf8e07e12e179 100644 (file)
@@ -47,7 +47,7 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      */
     var $_selected = null;
     
-    var $_numRows = 5;
+    var $_cols = 5;
 
 
     /**
@@ -118,10 +118,10 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      */
     function _setDefaults($options)
     {
-     /*   if (isset($options['format'])) {
-            $this->setFormat($options['format']);
+        if (isset($options['cols'])) {
+            $this->setCols($options['cols']);
         }
-        if (isset($options['language'])) {
+       /* if (isset($options['language'])) {
             $this->setLanguage($options['language']);
         }
         if (isset($options['minYear'])) {
@@ -136,6 +136,17 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
     // }}}
     // {{{ setName()
 
+    /**
+     * Sets the number of cols (columns) 
+     * @param     string    $name   Input field name attribute
+     * @access    public
+     * @return    void
+     */
+    function setCols($cols)
+    {
+        $this->_cols = $cols;
+    } //end func setCols
+
     /**
      * Sets the input field name
      * @param     string    $name   Input field name attribute
@@ -256,7 +267,7 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
             }
             $imagen =& new HTML_Image(MECON_DIR_IMG."/caritas/$nombre");
             $strHtml .= ' ' . $imagen->toHtml() . '     ';
-            if (!($i++ % $this->_numRows))
+            if (!($i++ % $this->_cols))
                 $strHtml .=  '<br>';
         }
         return $strHtml;