-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathHtml.php
More file actions
74 lines (62 loc) · 1.61 KB
/
Copy pathHtml.php
File metadata and controls
74 lines (62 loc) · 1.61 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
<?php
namespace ModStart\Field;
use ModStart\Core\Util\ConvertUtil;
use Module\Vendor\Markdown\MarkdownUtil;
class Html extends AbstractField
{
protected $html = '';
protected $plain = false;
protected $isLayoutField = true;
public function html($html)
{
$this->html = $html;
return $this;
}
public function htmlContent($html)
{
$this->html = '<div class="ub-html">' . $html . '</div>';
return $this;
}
public function htmlContentFromMarkdown($markdown)
{
$html = MarkdownUtil::convertToHtml($markdown);
$this->html = '<div class="ub-html">' . $html . '</div>';
return $this;
}
public function htmlPlain($html)
{
$this->html = $html;
$this->plain = true;
return $this;
}
public function plain($plain = true)
{
$this->plain = $plain;
return $this;
}
public function render()
{
if ($this->html instanceof \Closure) {
$this->html = ConvertUtil::render(
$this->html->call($this->variables(), $this->context)
);
}
if ($this->plain) {
return $this->html;
}
$rules = $this->rules();
$requiredRuleHtml = in_array('required', $rules) ? '<span class="ub-text-danger ub-text-bold">*</span>' : '';
$label = $this->label;
return <<<EOT
<div class="line" data-field="{$this->column}" id="{$this->id}">
<div class="label">
{$requiredRuleHtml}
{$label}
</div>
<div class="field">
$this->html
</div>
</div>
EOT;
}
}