/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk
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
<?php

interface VIEWInterface {
 function IsApplicable();
 function GetOptions();
 function GetView();
};

abstract class VIEW implements VIEWInterface {
 var $req;
 var $options;
 
 function __construct(REQUEST $req  = NULL, $options) {
    $this->req = $req;
    $this->options = $options;
 }

 function IsApplicable() {
    return true;
 }
 function GetOptions() {
    return array();
 }
};

?>