-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathform.php
305 lines (289 loc) · 6.7 KB
/
form.php
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<?php
/**
* 表单选项管理器
* @作者 qinggan <[email protected]>
* @版本 6.x
* @授权 MIT License <https://www.phpok.com/mit.html>
* @时间 2018年01月20日
* @更新 2023年4月21日
**/
/**
* 安全限制,防止直接访问
**/
if(!defined("PHPOK_SET")){
exit("<h1>Access Denied</h1>");
}
class form_lib extends _init_lib
{
//表单对象
public $cls;
public $appid = 'www';
private $dir_form;
private $ext_form;
//构造函数
public function __construct()
{
$this->dir_form = $GLOBALS['app']->dir_phpok.'form/';
$this->ext_form = $GLOBALS['app']->dir_extension.'ext-form/';
$appid = isset($GLOBALS['app']->appid) ? $GLOBALS['app']->appid : false;
$this->appid = $appid == 'admin' ? 'admin' : 'www';
}
public function appid($appid='www')
{
$this->appid = $appid;
}
/**
* 获取对象
* @参数 $name 表单名称
**/
public function cls($name)
{
$class_name = $name.'_form';
if(isset($this->$class_name)){
return $this->$class_name;
}
$phpfile = false;
if(file_exists($this->ext_form.$name.'/form.php')){
$phpfile = $this->ext_form.$name.'/form.php';
}
if(!$phpfile && file_exists($this->dir_form.$class_name.'.php')){
$phpfile = $this->dir_form.$class_name.'.php';
}
if(!$phpfile){
return false;
}
include_once($phpfile);
$this->$class_name = new $class_name();
return $this->$class_name;
}
private function _obj($rs)
{
if(!$rs || !$rs['form_type']){
return false;
}
return $this->cls($rs['form_type']);
}
/**
* 表单配置信息
* @参数 $id 表单类型名
**/
public function config($id)
{
$obj = $this->cls($id);
if(!$obj){
return false;
}
$mlist = get_class_methods($obj);
if(in_array('phpok_config',$mlist)){
$obj->phpok_config();
exit;
}
if(in_array('config',$mlist)){
$obj->config();
exit;
}
exit(P_Lang('文件异常'));
}
public function ext($id)
{
global $app;
$obj = $this->cls($id);
if(!$obj){
return false;
}
$mlist = get_class_methods($obj);
if(in_array('phpok_ext',$mlist)){
$ext = $obj->phpok_ext();
}else{
$ext_form_id = $app->get("ext_form_id");
$ext = array();
if($ext_form_id){
$list = explode(",",$ext_form_id);
foreach($list as $key=>$value){
$val = explode(':',$value);
if($val[1] && $val[1] == "checkbox"){
$value = $val[0];
$ext[$value] = $app->get($value,"checkbox");
}else{
$value = $val[0];
$ext[$value] = $app->get($value,'html_js');
}
}
}
}
return $ext;
}
/**
* 格式化表单信息
* @参数 $rs 要格式化的内容
**/
public function format($rs)
{
$obj = $this->_obj($rs);
if(!$obj){
return $rs;
}
$mlist = get_class_methods($obj);
if(in_array('phpok_format',$mlist)){
$info = $obj->phpok_format($rs,$this->appid);
if(is_array($info)){
foreach($info as $key=>$value){
$rs[$key] = $value;
}
}else{
$rs['html'] = $info;
}
return $rs;
}
if(in_array('format',$mlist)){
$info = $obj->format($rs);
if(is_array($info)){
foreach($info as $key=>$value){
$rs[$key] = $value;
}
}else{
$rs['html'] = $info;
}
return $rs;
}
return $rs;
}
/**
* 获取内容信息
* @参数 $rs 数组,字段属性
* @返回
* @更新时间
**/
public function get($rs)
{
$obj = $this->_obj($rs);
if(!$obj){
return false;
}
$mlist = get_class_methods($obj);
if(in_array('phpok_get',$mlist)){
return $obj->phpok_get($rs,$this->appid);
}
if(in_array('get',$mlist)){
return $obj->get($rs);
}
return $GLOBALS['app']->get($rs['identifier'],$rs['format']);
}
/**
* 输出内容信息
* @参数 $rs 内容
* @参数 $value 值
**/
public function show($rs,$value='')
{
if(!$rs){
return $value;
}
if($value != ''){
$rs['content'] = $value;
}
$obj = $this->_obj($rs);
if(!$obj){
return $value;
}
$mlist = get_class_methods($obj);
if(in_array('phpok_show',$mlist)){
return $obj->phpok_show($rs,$this->appid);
}
if(in_array('show',$mlist)){
if(!$value) $value = $rs['content'];
return $obj->show($rs,$value);
}
return $value;
}
public function ajax($id,$type)
{
$obj = $this->cls($type);
if(!$obj){
return $value;
}
$mlist = get_class_methods($obj);
if(in_array('phpok_ajax',$mlist)){
return $obj->phpok_ajax($id,$this->appid);
}
if(in_array('ajax',$mlist)){
return $obj->ajax($id,$this->appid);
}
return false;
}
//弹出窗口,用于创建字段
public function open_form_setting($saveurl)
{
if(!$saveurl) return false;
$GLOBALS['app']->assign('saveUrl',$saveurl);
//读取格式化类型
$field_list = $GLOBALS['app']->model('form')->field_all();
$form_list = $GLOBALS['app']->model('form')->form_all();
$format_list = $GLOBALS['app']->model('form')->format_all();
$GLOBALS['app']->assign('fields',$field_list);
$GLOBALS['app']->assign('formats',$format_list);
$GLOBALS['app']->assign('forms',$form_list);
//创建字段
$GLOBALS['app']->view("field_create");
}
//格式化值,对应的表单内容
public function info($val,$rs)
{
if($val == '' || !$rs || !is_array($rs)){
return $val;
}
//如果只是普通的文本框
if($rs['form_type'] == 'text' || $rs['form_type'] == 'password'){
return $val;
}
//如果是代码编辑器 或是 文本区
if($rs['form_type'] == 'code_editor' || $rs['form_type'] == 'textarea'){
return $val;
}
//如果是编辑器
if($rs['form_type'] == 'editor'){
return $GLOBALS['app']->lib('ubb')->to_html($val);
}
//如果是单选框
if($rs['form_type'] == 'radio'){
if(!$rs["option_list"]) $rs['option_list'] = 'default:0';
$opt_list = explode(":",$rs["option_list"]);
$rslist = opt_rslist($opt_list[0],$opt_list[1],$rs['ext_select']);
//如果内容为空,则返回空信息
if(!$rslist){
return false;
}
foreach($rslist as $key=>$value){
//
}
}
return $val;
}
/**
* 按需装载CSS和JS文件
* @参数 $rs 要加载的对象
**/
public function cssjs($rs='')
{
if($rs && is_array($rs)){
$obj = $this->_obj($rs);
if(!$obj){
return false;
}
$mlist = get_class_methods($obj);
if(in_array('cssjs',$mlist)){
$obj->cssjs();
}
return true;
}
$list = $GLOBALS['app']->model('form')->form_all();
foreach($list as $key=>$value){
$obj = $this->_obj(array('form_type'=>$key));
$mlist = get_class_methods($obj);
if(in_array('cssjs',$mlist)){
$obj->cssjs();
}
}
return true;
}
}