Source for file jFormsControlGroups.class.php
Documentation is available at jFormsControlGroups.class.php
- <?php
- /**
- * @package     jelix
- * @subpackage  forms
- * @author      Laurent Jouanneau
- * @contributor Julien Issler
- * @copyright   2006-2008 Laurent Jouanneau
- * @copyright   2008 Julien Issler
- * @link        http://www.jelix.org
- * @licence     http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
- */
-  
-  
- /**
-  * abstract classes for controls which contain other controls
-  * @package     jelix
-  * @subpackage  forms
-  */
- abstract class jFormsControlGroups extends jFormsControl {
-     public $type = 'groups';
-  
-     /**
-      * all child controls of the group
-      */
-     protected $childControls = array();
-  
-     function check(){
-         $rv = null;
-         foreach($this->childControls as $ctrl) {
-             if(($rv2 = $ctrl->check())!==null) {
-                 $rv = $rv2;
-             }
-         }
-         return $rv;
-     }
-  
-     function getDisplayValue($value){
-         return $value;
-     }
-  
-     function setValueFromRequest($request) {
-         foreach($this->childControls as $name => $ctrl) {
-             if(!$this->form->isActivated($name) || $this->form->isReadOnly($name))
-                 continue;
-             $ctrl->setValueFromRequest($request);
-         }
-         $this->setData($request->getParam($this->ref,''));
-     }
-  
-     function addChildControl($control, $itemName = '') {
-         $this->childControls[$control->ref]=$control;
-     }
-  
-     function getChildControls() { return $this->childControls;}
-  
-     function setReadOnly($r = true){
-         $this->container->setReadOnly($this->ref, $r);
-         foreach($this->childControls as $ctrl) {
-            $ctrl->setReadOnly($r);
-         }
-     }
-  
-     public function deactivate($deactivation=true) {
-         $this->container->deactivate($this->ref, $deactivation);
-         foreach($this->childControls as $ctrl) {
-             $ctrl->deactivate($deactivation);
-         }
-     }
- }
		Documentation generated on Thu, 22 Mar 2012 22:15:58 +0100 by phpDocumentor 1.4.3