summaryrefslogtreecommitdiffstats
path: root/src/graph.php
blob: fa4555a51c1fd9377c1a52003d251be13b0ebf31 (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
<?php
/**
 * File containing the abstract ezcGraph class
 *
 * @package Graph
 * @version //autogentag//
 * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
 * @license http://ez.no/licenses/new_bsd New BSD License
 */
/**
 * Base options class for all eZ components.
 *
 * @package Graph
 */
class ezcGraph
{
    const NO_SYMBOL = 0;
    const DIAMOND = 1;
    const BULLET = 2;
    const CIRCLE = 3;

    const NO_REPEAT = 0;
    const HORIZONTAL = 1;
    const VERTICAL = 2;

    const TOP = 1;
    const BOTTOM = 2;
    const LEFT = 4;
    const RIGHT = 8;
    const CENTER = 16;
    const MIDDLE = 32;
}

?>
OpenPOWER on IntegriCloud