Last change
on this file since 112 was 112, checked in by chronos, 11 years ago |
- Odstraněno: Ukončovací PHP značka ze všech souborů.
|
File size:
468 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | include_once(dirname(__FILE__).'/../../Base/HTML/Controller.php');
|
---|
4 |
|
---|
5 | class NetworkController extends Controller
|
---|
6 | {
|
---|
7 | function __construct($System)
|
---|
8 | {
|
---|
9 | parent::__construct($System);
|
---|
10 | $this->Name = 'Network';
|
---|
11 | $this->DefaultAction = 'View';
|
---|
12 | $this->ActionMap = array(
|
---|
13 | 'View' => 'View',
|
---|
14 | //'Delete' => 'Delete',
|
---|
15 | //'Edit' => 'Edit',
|
---|
16 | //'Add' => 'Add',
|
---|
17 | //'ListPanel' => 'ListPanel',
|
---|
18 | //'List' => 'ItemList',
|
---|
19 | );
|
---|
20 | }
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.