blob: 24c92f6e2f462b0fc9d16de9832abb7e4d99ed54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* File containing the abstract ezcGraphDataSetBooleanProperty class
*
* @package Graph
* @version //autogentag//
* @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Class for boolean properties of datasets
*
* This class is used to store properties for datasets, which should be
* validated as boolean values.
*
* For a basic usage example of those dataset properties take a look at the API
* documentation of the ezcGraphDataSetProperty class.
*
* @version //autogentag//
* @package Graph
*/
class ezcGraphDataSetBooleanProperty extends ezcGraphDataSetProperty
{
/**
* Converts value to an {@link ezcGraphColor} object
*
* @param & $value
* @return void
*/
protected function checkValue( &$value )
{
$value = (bool) $value;
return true;
}
}
?>
|