forked from kuafuRace/phprap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathField.php
More file actions
68 lines (59 loc) · 1.62 KB
/
Copy pathField.php
File metadata and controls
68 lines (59 loc) · 1.62 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
<?php
namespace app\models;
class Field extends Api
{
/**
* 字段类型标签
* @var array
*/
public $fieldTypeLabels = [
'string' => '字符串',
'integer' => '整数',
'float' => '小数',
'boolean' => '布尔',
'object' => '对象',
'array' => '数组',
];
/**
* 是否必须标签
* @var array
*/
public $requiredLabels = [
'10' => '是',
'20' => '否',
];
/**
* 默认header参数
* @var array
*/
public $defaultHeaderParams = [
'Accept','Accept-Charset','Accept-Encoding','Accept-Language','Accept-Datetime','Accept-Ranges','Authorization',
'Cache-Control','Connection','Cookie','Content-Disposition','Content-Length','Content-Type','Content-MD5',
'Referer',
'User-Agent',
'X-Requested-With','X-Forwarded-For','X-Forwarded-Host','X-Csrf-Token'
];
/**
* 获取字段更新内容
* @return string
*/
public function getUpdateContent()
{
$content = '';
foreach ($this->dirtyAttributes as $name => $value) {
if(isset($this->oldAttributes[$name])){
$content = '更新了 <strong>' .$this->module->title . '->' . $this->title . '->接口字段->' . $this->getAttributeLabel($name). '</strong>';
}
}
return trim($content, ',');
}
/**
* 判断字段是否是复合类型
* @param $field
* @return bool
*/
public function isCompositeType($type)
{
return in_array($type, ['array', 'object']) ? true : false;
}
}