Source for file jFormsControlCheckbox.class.php
Documentation is available at jFormsControlCheckbox.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
- */
-
- /**
- *
- * @package jelix
- * @subpackage forms
- */
- class jFormsControlCheckbox extends jFormsControl {
- public $type='checkbox';
- public $defaultValue='0';
- public $valueOnCheck='1';
- public $valueOnUncheck='0';
-
- function __construct($ref){
- $this->ref = $ref;
- $this->datatype = new jDatatypeBoolean();
- }
-
- function check(){
- $value = $this->container->data[$this->ref];
- if($this->required && $value == $this->valueOnUncheck)
- return $this->container->errors[$this->ref] = jForms::ERRDATA_REQUIRED;
- if($value != $this->valueOnCheck && $value != $this->valueOnUncheck)
- return $this->container->errors[$this->ref] = jForms::ERRDATA_INVALID;
- return null;
- }
-
- function setValueFromRequest($request) {
- $value = $request->getParam($this->ref);
- if($value){
- $this->setData($this->valueOnCheck);
- }else{
- $this->setData($this->valueOnUncheck);
- }
- }
-
- function setData($value) {
- $value = (string) $value;
- if($value != $this->valueOnCheck){
- if($value =='on')
- $value = $this->valueOnCheck;
- else
- $value = $this->valueOnUncheck;
- }
- parent::setData($value);
- }
-
- function setDataFromDao($value, $daoDatatype) {
- if( $daoDatatype == 'boolean') {
- if(strtolower($value) == 'true' || $value === 't'|| intval($value) == 1 || $value === 'on' || $value === true){
- $value = $this->valueOnCheck;
- }else {
- $value = $this->valueOnUncheck;
- }
- }
- $this->setData($value);
- }
-
- }
Documentation generated on Thu, 19 Sep 2013 00:05:02 +0200 by phpDocumentor 1.4.3