forked from jgraph/mxgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmxServer.php
More file actions
49 lines (48 loc) · 1.55 KB
/
mxServer.php
File metadata and controls
49 lines (48 loc) · 1.55 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* $Id: mxServer.php,v 1.16 2010/11/13 08:32:42 gaudenz Exp $
* Copyright (c) 2006, Gaudenz Alder
*
* Class: mxServer
*
* Bootstrapping for the PHP backend. This is version 1.14.0.2
* of mxGraph.
*
* Variable: MXGRAPH-VERSION
*
* Constant that holds the current mxGraph version. The current version
* is 1.14.0.2.
*/
define("MXGRAPH-VERSION", "1.14.0.2");
include_once("util/mxLog.php");
include_once("util/mxConstants.php");
include_once("util/mxUtils.php");
include_once("util/mxPoint.php");
include_once("util/mxRectangle.php");
include_once("util/mxEvent.php");
include_once("util/mxEventObject.php");
include_once("util/mxEventSource.php");
include_once("util/mxImageBundle.php");
include_once("model/mxCell.php");
include_once("model/mxCellPath.php");
include_once("model/mxGeometry.php");
include_once("model/mxGraphModel.php");
include_once("canvas/mxGdCanvas.php");
include_once("canvas/mxHtmlCanvas.php");
include_once("reader/mxGraphViewImageReader.php");
include_once("reader/mxGraphViewHtmlReader.php");
include_once("view/mxCellState.php");
include_once("view/mxConnectionConstraint.php");
include_once("view/mxStylesheet.php");
include_once("view/mxPerimeter.php");
include_once("view/mxEdgeStyle.php");
include_once("view/mxStyleRegistry.php");
include_once("view/mxGraphView.php");
include_once("view/mxGraph.php");
include_once("io/mxCodecRegistry.php");
include_once("io/mxCodec.php");
include_once("io/mxObjectCodec.php");
include_once("io/mxCellCodec.php");
include_once("io/mxModelCodec.php");
include_once("io/mxStylesheetCodec.php");
?>