@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class UrlFormatter implements IFormatter |
6 | 6 | { |
7 | - public function format($value): string |
|
8 | - { |
|
9 | - return '<a href="' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>'; |
|
10 | - } |
|
7 | + public function format($value): string |
|
8 | + { |
|
9 | + return '<a href="' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>'; |
|
10 | + } |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class TextFormatter implements IFormatter |
6 | 6 | { |
7 | - public function format($value): string |
|
8 | - { |
|
9 | - return htmlentities($value); |
|
10 | - } |
|
7 | + public function format($value): string |
|
8 | + { |
|
9 | + return htmlentities($value); |
|
10 | + } |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class ImageFormatter implements IFormatter |
6 | 6 | { |
7 | - public function format($value): string |
|
8 | - { |
|
9 | - return '<img src="' . htmlspecialchars($value, ENT_QUOTES) . '">'; |
|
10 | - } |
|
7 | + public function format($value): string |
|
8 | + { |
|
9 | + return '<img src="' . htmlspecialchars($value, ENT_QUOTES) . '">'; |
|
10 | + } |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -4,5 +4,5 @@ |
||
4 | 4 | |
5 | 5 | interface IFormatter |
6 | 6 | { |
7 | - public function format($value) : string; |
|
7 | + public function format($value) : string; |
|
8 | 8 | } |
9 | 9 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class EmailFormatter implements IFormatter |
6 | 6 | { |
7 | - public function format($value): string |
|
8 | - { |
|
9 | - return '<a href="mailto:' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>'; |
|
10 | - } |
|
7 | + public function format($value): string |
|
8 | + { |
|
9 | + return '<a href="mailto:' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>'; |
|
10 | + } |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -7,21 +7,21 @@ |
||
7 | 7 | |
8 | 8 | abstract class BaseFilter |
9 | 9 | { |
10 | - use Configurable; |
|
10 | + use Configurable; |
|
11 | 11 | |
12 | - public $name; |
|
12 | + public $name; |
|
13 | 13 | |
14 | - public function __construct(array $config) |
|
15 | - { |
|
16 | - $this->loadConfig($config); |
|
17 | - } |
|
14 | + public function __construct(array $config) |
|
15 | + { |
|
16 | + $this->loadConfig($config); |
|
17 | + } |
|
18 | 18 | |
19 | - protected function configTests(): array |
|
20 | - { |
|
21 | - return [ |
|
22 | - 'name' => 'string', |
|
23 | - ]; |
|
24 | - } |
|
19 | + protected function configTests(): array |
|
20 | + { |
|
21 | + return [ |
|
22 | + 'name' => 'string', |
|
23 | + ]; |
|
24 | + } |
|
25 | 25 | |
26 | - abstract public function render(GridView $grid) : string; |
|
26 | + abstract public function render(GridView $grid) : string; |
|
27 | 27 | } |
28 | 28 | \ No newline at end of file |
@@ -6,11 +6,11 @@ |
||
6 | 6 | |
7 | 7 | class TextFilter extends BaseFilter |
8 | 8 | { |
9 | - public function render(GridView $grid): string |
|
10 | - { |
|
11 | - return view('woo_gridview::filters.text-filter', [ |
|
12 | - 'name' => $this->name, |
|
13 | - 'value' => $grid->getRequest()->filters[$this->name] ?? '', |
|
14 | - ]); |
|
15 | - } |
|
9 | + public function render(GridView $grid): string |
|
10 | + { |
|
11 | + return view('woo_gridview::filters.text-filter', [ |
|
12 | + 'name' => $this->name, |
|
13 | + 'value' => $grid->getRequest()->filters[$this->name] ?? '', |
|
14 | + ]); |
|
15 | + } |
|
16 | 16 | } |
17 | 17 | \ No newline at end of file |
@@ -6,24 +6,24 @@ |
||
6 | 6 | |
7 | 7 | class DropdownFilter extends BaseFilter |
8 | 8 | { |
9 | - /** |
|
10 | - * @var array |
|
11 | - */ |
|
12 | - public $items; |
|
9 | + /** |
|
10 | + * @var array |
|
11 | + */ |
|
12 | + public $items; |
|
13 | 13 | |
14 | - protected function configTests(): array |
|
15 | - { |
|
16 | - return array_merge(parent::configTests(), [ |
|
17 | - 'items' => 'array', |
|
18 | - ]); |
|
19 | - } |
|
14 | + protected function configTests(): array |
|
15 | + { |
|
16 | + return array_merge(parent::configTests(), [ |
|
17 | + 'items' => 'array', |
|
18 | + ]); |
|
19 | + } |
|
20 | 20 | |
21 | - public function render(GridView $grid): string |
|
22 | - { |
|
23 | - return view('woo_gridview::filters.dropdown-filter', [ |
|
24 | - 'name' => $this->name, |
|
25 | - 'value' => $grid->getRequest()->filters[$this->name] ?? '', |
|
26 | - 'items' => $this->items, |
|
27 | - ]); |
|
28 | - } |
|
21 | + public function render(GridView $grid): string |
|
22 | + { |
|
23 | + return view('woo_gridview::filters.dropdown-filter', [ |
|
24 | + 'name' => $this->name, |
|
25 | + 'value' => $grid->getRequest()->filters[$this->name] ?? '', |
|
26 | + 'items' => $this->items, |
|
27 | + ]); |
|
28 | + } |
|
29 | 29 | } |
30 | 30 | \ No newline at end of file |
@@ -9,57 +9,57 @@ |
||
9 | 9 | |
10 | 10 | class AttributeColumn extends BaseColumn |
11 | 11 | { |
12 | - public $formatters = ['text']; |
|
12 | + public $formatters = ['text']; |
|
13 | 13 | |
14 | - public $filter = TextFilter::class; |
|
14 | + public $filter = TextFilter::class; |
|
15 | 15 | |
16 | - /** |
|
17 | - * AttributeColumn constructor. |
|
18 | - * @param $config |
|
19 | - * @throws GridViewConfigException |
|
20 | - */ |
|
21 | - public function __construct($config) |
|
22 | - { |
|
23 | - parent::__construct($config); |
|
16 | + /** |
|
17 | + * AttributeColumn constructor. |
|
18 | + * @param $config |
|
19 | + * @throws GridViewConfigException |
|
20 | + */ |
|
21 | + public function __construct($config) |
|
22 | + { |
|
23 | + parent::__construct($config); |
|
24 | 24 | |
25 | - if (empty($this->title)) { |
|
26 | - $this->title = GridViewHelper::columnTitle($this->value); |
|
27 | - } |
|
28 | - } |
|
25 | + if (empty($this->title)) { |
|
26 | + $this->title = GridViewHelper::columnTitle($this->value); |
|
27 | + } |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * @return array |
|
32 | - */ |
|
33 | - protected function configTests(): array |
|
34 | - { |
|
35 | - return array_merge(parent::configTests(), [ |
|
36 | - 'value' => 'string', |
|
37 | - ]); |
|
38 | - } |
|
30 | + /** |
|
31 | + * @return array |
|
32 | + */ |
|
33 | + protected function configTests(): array |
|
34 | + { |
|
35 | + return array_merge(parent::configTests(), [ |
|
36 | + 'value' => 'string', |
|
37 | + ]); |
|
38 | + } |
|
39 | 39 | |
40 | - /** |
|
41 | - * @inheritdoc |
|
42 | - */ |
|
43 | - public function _renderValue($row) |
|
44 | - { |
|
45 | - $path = $row; |
|
46 | - $exp = explode('.', $this->value); |
|
40 | + /** |
|
41 | + * @inheritdoc |
|
42 | + */ |
|
43 | + public function _renderValue($row) |
|
44 | + { |
|
45 | + $path = $row; |
|
46 | + $exp = explode('.', $this->value); |
|
47 | 47 | |
48 | - /** |
|
49 | - * Extract dots notation (column.sub.sub) |
|
50 | - */ |
|
51 | - foreach ($exp as $part) { |
|
48 | + /** |
|
49 | + * Extract dots notation (column.sub.sub) |
|
50 | + */ |
|
51 | + foreach ($exp as $part) { |
|
52 | 52 | |
53 | - if (isset($path[$part])) { |
|
54 | - $path = $path[$part]; |
|
53 | + if (isset($path[$part])) { |
|
54 | + $path = $path[$part]; |
|
55 | 55 | |
56 | - } elseif (isset($path->$part)) { |
|
57 | - $path = $path[$part]; |
|
58 | - } else { |
|
59 | - return $this->emptyValue; |
|
60 | - } |
|
61 | - } |
|
56 | + } elseif (isset($path->$part)) { |
|
57 | + $path = $path[$part]; |
|
58 | + } else { |
|
59 | + return $this->emptyValue; |
|
60 | + } |
|
61 | + } |
|
62 | 62 | |
63 | - return $path; |
|
64 | - } |
|
63 | + return $path; |
|
64 | + } |
|
65 | 65 | } |
66 | 66 | \ No newline at end of file |