-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWidget_Module.php
More file actions
162 lines (129 loc) · 3.71 KB
/
Copy pathWidget_Module.php
File metadata and controls
162 lines (129 loc) · 3.71 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
/*******************************************************************************
*
* @author : Dominik Bonsch <[email protected]>
* @date :
* @copyright : Webfrap Developer Network <[email protected]>
* @project : Webfrap Web Frame Application
* @projectUrl : http://webfrap.net
*
* @licence : BSD License see: LICENCE/BSD Licence.txt
*
* @version: @package_version@ Revision: @package_revision@
*
* Changes:
*
*******************************************************************************/
/**
*
* @package WebFrap
* @subpackage Core
* @author Dominik Bonsch <[email protected]>
* @copyright Webfrap Developer Network <[email protected]>
*
* @todo überarbeiten
*/
class Widget_Module extends Module
{
/**
* create a new controller object by a given name
*
* @return void
*/
protected function setController($name = null)
{
$name = $this->getRequest()->param('mex', Validator::CNAME);
if (Log::$levelDebug)
Debug::console('Widget: '.$name);
$className = ''.SParserString::subToCamelCase($name).'_Widget';
$classNameOld = 'WgtWidget'.SParserString::subToCamelCase($name);
if (!Webfrap::classExists($className)) {
$className = $classNameOld;
if (!Webfrap::classExists($className)) {
$className = 'Error_Widget';
}
}
$this->controller = new $className();
} // end protected function setController */
/**
* run the controller
*
* @return void
*/
protected function runController()
{
$view = $this->getTplEngine();
try {
// no controller? asume init allready reported an error
if (!$this->controller)
return false;
// Run the mainpart
$method = 'run'.ucfirst($this->request->param('do', Validator::CNAME));
if (!method_exists($this->controller, $method)) {
$this->modulErrorPage
(
'Invalid Access',
'Tried to access a nonexisting service on this widget'
);
return;
}
// Initialisieren der Extention
if (!$this->controller->init())
throw new Webfrap_Exception('Failed to initialize Widget');
$this->controller->$method();
// shout down the extension
$this->controller->shutdown();
} catch (Exception $exc) {
Error::report
(
I18n::s
(
'Module Error: {@message@}',
'wbf.message' ,
array('message'=>$exc->getMessage())
),
$exc
);
$type = get_class($exc);
if (Log::$levelDebug) {
// Create a Error Page
$this->modulErrorPage
(
$exc->getMessage(),
'<pre>'.Debug::dumpToString($exc).'</pre>'
);
} else {
switch ($type) {
case 'Security_Exception':
{
$i18n = $view->getI18n();
$this->modulErrorPage
(
$i18n->l('Action denied','wbf.message'),
$i18n->l('Action denied','wbf.message')
);
break;
}
default:
{
if (Log::$levelDebug) {
$this->modulErrorPage
(
'Exception '.$type.' not catched ',
Debug::dumpToString($exc)
);
} else {
$i18n = $view->getI18n();
$this->modulErrorPage
(
$i18n->l('Sorry Internal Error','wbf.message'),
$i18n->l('An Internal Error Occured','wbf.message')
);
}
break;
}//end efault:
}//end switch($type)
}//end else
}//end catch(Exception $exc)
} // end protected function runController */
}// end class Widget_Module