-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCustomization.php
125 lines (96 loc) · 2.28 KB
/
Customization.php
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
/**
* This file is part of the Grido (http://grido.bugyik.cz)
*
* Copyright (c) 2011 Petr Bugyík (http://petr.bugyik.cz)
*
* For the full copyright and license information, please view
* the file LICENSE.md that was distributed with this source code.
*/
namespace Grido;
use DirectoryIterator;
use Nette;
/**
* Customization.
*
* @package Grido
* @author Petr Bugyík
*
* @property string|array $buttonClass
* @property string|array $iconClass
*/
class Customization
{
use Nette\SmartObject;
const TEMPLATE_DEFAULT = 'default';
const TEMPLATE_BOOTSTRAP = 'bootstrap';
/** @var Grid */
protected $grid;
/** @var string|array */
protected $buttonClass;
/** @var string|array */
protected $iconClass;
/** @var array */
protected $templateFiles = [];
public function __construct(Grid $grid)
{
$this->grid = $grid;
}
/**
* @param string|array $class
* @return Customization
*/
public function setButtonClass($class): self
{
$this->buttonClass = $class;
return $this;
}
/**
* @param string|array $class
* @return Customization
*/
public function setIconClass($class): self
{
$this->iconClass = $class;
return $this;
}
public function getButtonClass(): string
{
return is_array($this->buttonClass) ? implode(' ', $this->buttonClass) : $this->buttonClass;
}
public function getIconClass(string $icon = null): string
{
if ($icon === null) {
$class = $this->iconClass;
} else {
$this->iconClass = (array) $this->iconClass;
$classes = [];
foreach ($this->iconClass as $fontClass) {
$classes[] = "{$fontClass} {$fontClass}-{$icon}";
}
$class = implode(' ', $classes);
}
return $class;
}
public function getTemplateFiles(): array
{
if (empty($this->templateFiles)) {
foreach (new DirectoryIterator(__DIR__ . '/templates') as $file) {
if ($file->isFile()) {
$this->templateFiles[$file->getBasename('.latte')] = realpath($file->getPathname());
}
}
}
return $this->templateFiles;
}
public function useTemplateDefault(): self
{
$this->grid->setTemplateFile($this->getTemplateFiles()[self::TEMPLATE_DEFAULT]);
return $this;
}
public function useTemplateBootstrap(): self
{
$this->grid->setTemplateFile($this->getTemplateFiles()[self::TEMPLATE_BOOTSTRAP]);
return $this;
}
}