]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/QuickForm/caritas.php
Bugfix en documentacion.
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm / caritas.php
index 9979b21b2db5627b94753c1bdad655e36521f296..9308aba35c75fb8dbfa2697d9e2927732509bbd8 100644 (file)
 require_once('HTML/QuickForm/element.php');
 require_once('HTML/QuickForm/radio.php');
 require_once('MECON/defaults.php');
 require_once('HTML/QuickForm/element.php');
 require_once('HTML/QuickForm/radio.php');
 require_once('MECON/defaults.php');
-require_once('HTML/Image.php');
+require_once 'MECON/HTML/Image.php';
 /**
  * Class to dynamically create HTML Select elements from a date
  *
  * @author       Bertrand Mansion <bmansion@mamasam.com>
  * @access       public
  */
 /**
  * Class to dynamically create HTML Select elements from a date
  *
  * @author       Bertrand Mansion <bmansion@mamasam.com>
  * @access       public
  */
-class HTML_QuickForm_caritas extends HTML_QuickForm_element
-{   
+class MECON_HTML_QuickForm_caritas extends HTML_QuickForm_element {
     // {{{ properties
 
     /**
     // {{{ properties
 
     /**
@@ -39,15 +38,15 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      * @access    private
      */
     var $radios = array();
      * @access    private
      */
     var $radios = array();
-    
+
     /**
      * Default values of the SELECTs
      * @var       array
      * @access    private
      */
     /**
      * Default values of the SELECTs
      * @var       array
      * @access    private
      */
-    var $_selectedCarita = null;
-    
-    var $_numRows = 5;
+    var $_selected = null;
+
+    var $_cols = 5;
 
 
     /**
 
 
     /**
@@ -57,7 +56,7 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      */
     var $_flagFrozen = false;
 
      */
     var $_flagFrozen = false;
 
-// +X2C Operation 533
+    // +X2C Operation 533
     /**
      * Lista archivos devolviendo un array apropiado para un SELECT.
      *
     /**
      * Lista archivos devolviendo un array apropiado para un SELECT.
      *
@@ -92,9 +91,8 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      * @access    public
      * @return    void
      */
      * @access    public
      * @return    void
      */
-     
-    function HTML_QuickForm_caritas($elementName=null, $elementLabel=null, $options=array(), $attributes=null)
-    {
+
+    function MECON_HTML_QuickForm_caritas($elementName=null, $elementLabel=null, $options=array(), $attributes=null) {
         HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
         $this->_persistantFreeze = true;
         $this->_type = 'caritas';
         HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
         $this->_persistantFreeze = true;
         $this->_type = 'caritas';
@@ -116,47 +114,90 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      * @access    private
      * @return    void
      */
      * @access    private
      * @return    void
      */
-    function _setDefaults($options)
-    {
-     /*   if (isset($options['format'])) {
-            $this->setFormat($options['format']);
-        }
-        if (isset($options['language'])) {
-            $this->setLanguage($options['language']);
-        }
-        if (isset($options['minYear'])) {
-            $this->setMinYear($options['minYear']);
+    function _setDefaults($options) {
+        if (isset($options['cols'])) {
+            $this->setCols($options['cols']);
         }
         }
-        if (isset($options['maxYear'])) {
-            $this->setMaxYear($options['maxYear']);
-        }
-      */
+        /* if (isset($options['language'])) {
+             $this->setLanguage($options['language']);
+         }
+         if (isset($options['minYear'])) {
+             $this->setMinYear($options['minYear']);
+         }
+         if (isset($options['maxYear'])) {
+             $this->setMaxYear($options['maxYear']);
+         }
+        */
     } // end func _setDefaults
 
     // }}}
     // {{{ setName()
 
     } // end func _setDefaults
 
     // }}}
     // {{{ 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
      * @access    public
      * @return    void
      */
     /**
      * Sets the input field name
      * @param     string    $name   Input field name attribute
      * @access    public
      * @return    void
      */
-    function setName($name)
-    {
+    function setName($name) {
         $this->name = $name;
     } //end func setName
 
     // }}}
     // {{{ getName()
 
         $this->name = $name;
     } //end func setName
 
     // }}}
     // {{{ getName()
 
+    /**
+     * Sets the element value
+     * @access    public
+     * @return    string
+     */
+    function setValue($value) {
+        $this->_selected = $value;
+    } //end func getName
+
+    /**
+     * Sets the element value
+     * @access    public
+     * @return    string
+     */
+    function setSelected($value) {
+        $this->_selected = $value;
+    } //end func getName
+
+    /**
+     * Returns the element value
+     * @access    public
+     * @return    string
+     */
+    function getValue() {
+        return $this->_selected;
+    } //end func getName
+
+    /**
+     * Returns the element value
+     * @access    public
+     * @return    string
+     */
+    function getSelected() {
+        return $this->_selected;
+    } //end func getName
+
     /**
      * Returns the element name
      * @access    public
      * @return    string
      */
     /**
      * Returns the element name
      * @access    public
      * @return    string
      */
-    function getName()
-    {
+    function getName() {
         return $this->name;
     } //end func getName
 
         return $this->name;
     } //end func getName
 
@@ -168,15 +209,13 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      * @access    public
      * @return    void
      */
      * @access    public
      * @return    void
      */
-    function _createRadios()
-    {
+    function _createRadios() {
         $this->caritas= array();
         $elementName = $this->name;
         $dir = MECON_DIR_FS_IMG.'/caritas';
         $cant=5;
         $i=1;
         $this->caritas= array();
         $elementName = $this->name;
         $dir = MECON_DIR_FS_IMG.'/caritas';
         $cant=5;
         $i=1;
-        foreach ($this->listarArchivos($dir,'','.gif') as $nombre)
-        {
+        foreach ($this->listarArchivos($dir,'','.gif') as $nombre) {
             $this->radios[$nombre] = &new HTML_QuickForm_radio($elementName, '', '', $nombre, $this->getAttributes());
         }
     } // end func _createSelects
             $this->radios[$nombre] = &new HTML_QuickForm_radio($elementName, '', '', $nombre, $this->getAttributes());
         }
     } // end func _createSelects
@@ -184,21 +223,6 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
     // }}}
     // {{{ _createNumericOptionList()
 
     // }}}
     // {{{ _createNumericOptionList()
 
-    // {{{ setSelectedCarita()
-
-    /**
-     * Sets the selected carita
-     * @param     mixed     an associative array corresponding to the format you chose
-     *                      for your date or an unix epoch timestamp
-     * @access    public
-     * @return    void
-     */
-    function setSelectedCarita($value)
-    {
-       $this->_selectedCarita = $value;
-    } // end func setSelectedDate
-
-    // }}}
     // {{{ toHtml()
 
     /**
     // {{{ toHtml()
 
     /**
@@ -206,14 +230,13 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      * @access    public
      * @return    string
      * @throws    
      * @access    public
      * @return    string
      * @throws    
- */    
-    function toHtml()
-    {
+    */
+    function toHtml() {
         $this->_createRadios();
         $strHtml = '';
         $i = 1;
         foreach ($this->radios as $nombre => $element) {
         $this->_createRadios();
         $strHtml = '';
         $i = 1;
         foreach ($this->radios as $nombre => $element) {
-            if (@$this->_selectedCarita == $nombre) {
+            if (@$this->_selected == $nombre) {
                 $element->setChecked(true);
             }
             if ($this->_flagFrozen) {
                 $element->setChecked(true);
             }
             if ($this->_flagFrozen) {
@@ -229,9 +252,9 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
                     $strHtml .= $element->toHtml();
                 }
             }
                     $strHtml .= $element->toHtml();
                 }
             }
-            $imagen =& new HTML_Image(MECON_DIR_IMG."/caritas/$nombre");
+            $imagen =& new MECON_HTML_Image(MECON_DIR_IMG."/caritas/$nombre");
             $strHtml .= '&nbsp;' . $imagen->toHtml() . '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
             $strHtml .= '&nbsp;' . $imagen->toHtml() . '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
-            if (!($i++ % $this->_numRows))
+            if (!($i++ % $this->_cols))
                 $strHtml .=  '<br>';
         }
         return $strHtml;
                 $strHtml .=  '<br>';
         }
         return $strHtml;
@@ -251,28 +274,27 @@ class HTML_QuickForm_caritas extends HTML_QuickForm_element
      * @return    void
      * @throws    
      */
      * @return    void
      * @throws    
      */
-    function onQuickFormEvent($event, $arg, &$caller)
-    {
+    function onQuickFormEvent($event, $arg, &$caller) {
         switch ($event) {
         switch ($event) {
-            case 'updateValue':
+        case 'updateValue':
                 // constant values override both default and submitted ones
                 // default values are overriden by submitted
                 $value = $this->_findValue($caller->_constantValues);
                 // constant values override both default and submitted ones
                 // default values are overriden by submitted
                 $value = $this->_findValue($caller->_constantValues);
+            if (null === $value) {
+                $value = $this->_findValue($caller->_submitValues);
                 if (null === $value) {
                 if (null === $value) {
-                    $value = $this->_findValue($caller->_submitValues);
-                    if (null === $value) {
-                        $value = $this->_findValue($caller->_defaultValues);
-                    }
+                    $value = $this->_findValue($caller->_defaultValues);
                 }
                 }
-                if (null !== $value) {
-                    $this->setSelectedCarita($value);
-                }
-                break;
-            case 'setGroupValue':
-                $this->setSelectedCarita($arg);
-                break;
-            default:
-                parent::onQuickFormEvent($event, $arg, $caller);
+            }
+            if (null !== $value) {
+                $this->setSelected($value);
+            }
+            break;
+        case 'setGroupValue':
+            $this->setSelected($arg);
+            break;
+        default:
+            parent::onQuickFormEvent($event, $arg, $caller);
         }
         return true;
     } // end func onQuickFormEvent
         }
         return true;
     } // end func onQuickFormEvent