Last change
on this file was 47, checked in by chronos, 10 years ago |
- Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
|
File size:
327 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | include_once(dirname(__FILE__).'/../../Base/Controller.php');
|
---|
4 | include_once(dirname(__FILE__).'/../View/Graph.php');
|
---|
5 |
|
---|
6 | class GraphController extends Controller
|
---|
7 | {
|
---|
8 | function Show()
|
---|
9 | {
|
---|
10 | $this->System->Output->FullPage = false;
|
---|
11 |
|
---|
12 | $View = new GraphView($this->System);
|
---|
13 | return($View->Render());
|
---|
14 | }
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.