blob: 572dfa79552396a934b1f628d48386b5da8e03d6 (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
<?php
/**
* IDataSource, TDataSourceControl, TReadOnlyDataSource class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Web.UI.WebControls
*/
/**
* IDataSource class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
interface IDataSource
{
public function getView($viewName);
public function getViewNames();
public function onDataSourceChanged($param);
}
/**
* TDataSourceControl class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
abstract class TDataSourceControl extends TControl implements IDataSource
{
public function getView($viewName)
{
return null;
}
public function getViewNames()
{
return array();
}
public function onDataSourceChanged($param)
{
$this->raiseEvent('OnDataSourceChanged',$this,$param);
}
public function focus()
{
throw new TNotSupportedException('datasourcecontrol_focus_unsupported');
}
public function getEnableTheming()
{
return false;
}
public function setEnableTheming($value)
{
throw new TNotSupportedException('datasourcecontrol_enabletheming_unsupported');
}
public function getSkinID()
{
return '';
}
public function setSkinID($value)
{
throw new TNotSupportedException('datasourcecontrol_skinid_unsupported');
}
public function getVisible($checkParents=true)
{
return false;
}
public function setVisible($value)
{
throw new TNotSupportedException('datasourcecontrol_visible_unsupported');
}
}
/**
* TDataSourceControl class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
class TReadOnlyDataSource extends TDataSourceControl
{
private $_dataSource;
private $_dataMember;
public function __construct($dataSource,$dataMember)
{
if(!is_array($dataSource) && !($dataSource instanceof IDataSource) && !($dataSource instanceof Traversable))
throw new TInvalidDataTypeException('readonlydatasource_datasource_invalid');
$this->_dataSource=$dataSource;
$this->_dataMember=$dataMember;
}
public function getView($viewName)
{
if($this->_dataSource instanceof IDataSource)
return $this->_dataSource->getView($viewName);
else
return new TReadOnlyDataSourceView($this,$this->_dataMember,$this->_dataSource);
}
}
?>
|