-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTextDialogRequest.php
More file actions
96 lines (87 loc) · 2.86 KB
/
Copy pathTextDialogRequest.php
File metadata and controls
96 lines (87 loc) · 2.86 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
<?php
namespace ModStart\Widget;
use ModStart\ModStart;
/**
* Class Label
* @package ModStart\Widget
*
* @method static string primary($text, $url, $disabled = false)
* @method static string muted($text, $url, $disabled = false)
* @method static string warning($text, $url, $disabled = false)
* @method static string danger($text, $url, $disabled = false)
* @method static string success($text, $url, $disabled = false)
*
* @method $this text($text)
* @method $this type($type)
* @method $this url($url)
* @method $this disabled($boolean)
* @method $this width($value)
* @method $this height($value)
* @method $this attr($attr)
*/
class TextDialogRequest extends AbstractWidget
{
public static function getAssets()
{
return [
'style' => '.ub-text-dialog-request{display:inline-block;margin-right:0.625rem;}',
];
}
public static function __callStatic($name, $arguments)
{
$methods = ['muted', 'warning', 'danger', 'success', 'primary'];
if (in_array($name, $methods)) {
$ins = new static();
$ins->type($name);
$ins->text($arguments[0]);
$ins->url($arguments[1]);
if (isset($arguments[2])) {
$ins->disabled($arguments[2]);
}
return $ins->render();
}
throw new \Exception('TextDialogRequest error ' . join(',', $methods) . ' ');
}
/**
* @param $type string
* @param $text string
* @param $url string
* @return TextDialogRequest
*/
public static function make(...$arguments)
{
$ins = new static();
$ins->type($arguments[0]);
$ins->text($arguments[1]);
$ins->url($arguments[2]);
return $ins;
}
/**
* @param $size string big|default
* @return $this
*/
public function size($size = 'big')
{
switch ($size) {
case 'big':
return $this->attr(($this->attr ? $this->attr : '') . ' data-dialog-width="90%" data-dialog-height="90%"');
}
return $this;
}
public function render()
{
$type = $this->type;
if ('primary' == $type) {
$type = 'link';
}
if ($this->disabled) {
return '<a href="javascript:;" class="ub-text-dialog-request ub-text-' . $type . '">' . $this->text . '</a>';
} else {
return '<a href="javascript:;" ' . ($this->confirm ? 'data-confirm="' . $this->confirm . '"' : '')
. ' ' . ($this->width ? 'data-dialog-width="' . $this->width . '"' : '')
. ' ' . ($this->height ? 'data-dialog-height="' . $this->height . '"' : '')
. ' ' . ($this->attr ? $this->attr : '')
. ' data-dialog-request="' . $this->url . '" class="ub-text-dialog-request ub-text-' . $type . '">' . $this->text . '</a>';
}
}
}