|
Last change
on this file was 95, checked in by chronos, 11 years ago |
- Upraveno: Soubory různých logických částí systému odděleny do aplikačních modulů.
|
|
File size:
396 bytes
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | include_once(dirname(__FILE__).'/../../Base/Controller.php');
|
|---|
| 4 | include_once(dirname(__FILE__).'/../../Application/View/Page.php');
|
|---|
| 5 | include_once(dirname(__FILE__).'/View.php');
|
|---|
| 6 |
|
|---|
| 7 | class ClientController extends Controller
|
|---|
| 8 | {
|
|---|
| 9 | function ItemList()
|
|---|
| 10 | {
|
|---|
| 11 | $Page = new PageView($this->System);
|
|---|
| 12 | $View = new ClientView($this->System);
|
|---|
| 13 | return($Page->GetOutput($View->ItemList()));
|
|---|
| 14 | }
|
|---|
| 15 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.