blob: 64310d4b516137ca1a56ebff2b1bf7343a6c367e (
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 ezcGraphDataSetColorProperty class
*
* @package Graph
* @version //autogentag//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Class for color properties of datasets
*
* This class is used to store properties for datasets, which should be
* validated as objects extending the ezcGraphColor class.
*
* 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 ezcGraphDataSetColorProperty extends ezcGraphDataSetProperty
{
/**
* Converts value to an {@link ezcGraphColor} object
*
* @param & $value
* @return void
*/
protected function checkValue( &$value )
{
$value = ezcGraphColor::create( $value );
return true;
}
}
?>
|