blob: 27c5ba556b54d809fb63ea4d09d625d4183a81b1 (
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 ezcGraphDataSetIntProperty 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 integer properties of datasets
*
* This class is used to store properties for datasets, which should be
* validated as integer 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 ezcGraphDataSetIntProperty extends ezcGraphDataSetProperty
{
/**
* Converts value to an {@link ezcGraphColor} object
*
* @param & $value
* @return void
*/
protected function checkValue( &$value )
{
$value = (int) $value;
return true;
}
}
?>
|