silverstripe-framework/core/model/fieldtypes/Boolean.php
Sam Minnee 2e955b498e BUGFIX: Fixing tests
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@66508 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-11-24 19:28:46 +00:00

66 lines
1.5 KiB
PHP

<?php
/**
* Represents a boolean field.
* @package sapphire
* @subpackage model
*/
class Boolean extends DBField {
function __construct($name, $defaultVal = 0) {
$this->defaultVal = ($defaultVal) ? 1 : 0;
parent::__construct($name);
}
function requireField() {
$parts=Array('datatype'=>'tinyint', 'precision'=>1, 'sign'=>'unsigned', 'null'=>'not null', 'default'=>$this->defaultVal);
$values=Array('type'=>'boolean', 'parts'=>$parts);
DB::requireField($this->tableName, $this->name, $values);
}
function Nice() {
return ($this->value) ? "yes" : "no";
}
function NiceAsBoolean() {
return ($this->value) ? "true" : "false";
}
/**
* Saves this field to the given data object.
*/
function saveInto($dataObject) {
$fieldName = $this->name;
if($fieldName) {
$dataObject->$fieldName = $this->value ? 1 : 0;
} else {
user_error("DBField::saveInto() Called on a nameless '$this->class' object", E_USER_ERROR);
}
}
public function scaffoldFormField($title = null, $params = null) {
return new CheckboxField($this->name, $title);
}
/**
* Return an encoding of the given value suitable for inclusion in a SQL statement.
* If necessary, this should include quotes.
*/
function prepValueForDB($value) {
if($value === true || $value === 1 || $value === '1') {
return "'1'";
} if(!$value || !is_numeric($value)) {
return "'0'";
} else {
return addslashes($value);
}
}
function nullValue() {
return "'0'";
}
}
?>