-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathButtonDialogRequest.php
More file actions
78 lines (70 loc) · 2.36 KB
/
Copy pathButtonDialogRequest.php
File metadata and controls
78 lines (70 loc) · 2.36 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
<?php
namespace ModStart\Widget;
/**
* 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 attr($attr)
*/
class ButtonDialogRequest extends AbstractWidget
{
public static function getAssets()
{
return [
'style' => '.ub-button-dialog-request{display:inline-block;}',
];
}
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]);
$ins->disabled(empty($arguments[2]) ? false : true);
return $ins->render();
}
throw new \Exception('ButtonDialogRequest error ' . join(',', $methods) . ' ');
}
/**
* @param $type string
* @param $text string
* @param $url string
* @return ButtonDialogRequest
*/
public static function make(...$arguments)
{
$ins = new static();
$ins->type($arguments[0]);
$ins->text($arguments[1]);
$ins->url($arguments[2]);
return $ins;
}
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()
{
if ($this->disabled) {
return '<a href="javascript:;" class="btn ub-button-dialog-request btn-' . $this->type . '">' . $this->text . '</a>';
} else {
return '<a href="javascript:;" ' . ($this->confirm ? 'data-confirm="' . $this->confirm . '"' : '') . ' data-dialog-request="' . $this->url . '" class="btn ub-button-dialog-request btn-' . $this->type . '" ' . ($this->attr ? $this->attr : '') . '>' . $this->text . '</a>';
}
}
}