forked from NetCommons3/NetCommons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkButtonHelper.php
More file actions
243 lines (214 loc) · 6.31 KB
/
LinkButtonHelper.php
File metadata and controls
243 lines (214 loc) · 6.31 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/**
* LinkButton Helper
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
App::uses('FormHelper', 'View/Helper');
App::uses('Container', 'Containers.Model');
/**
* `<a>`のボタン Helper
*
* @package NetCommons\NetCommons\View\Helper
*/
class LinkButtonHelper extends FormHelper {
/**
* 使用するヘルパ
*
* @var array
*/
public $helpers = array(
'Form',
'Html',
'NetCommons.Button',
'NetCommons.NetCommonsHtml',
);
/**
* 追加ボタンHTMLの出力
*
* @param string $title タイトル
* @param mixed $url URL
* @param array $options HTML属性オプション
* @return string HTMLタグ
*/
public function add($title = '', $url = null, $options = array()) {
$output = '';
if (! is_string($url)) {
//URLの設定
$defaultUrl = array(
'plugin' => $this->_View->request->params['plugin'],
'controller' => $this->_View->request->params['controller'],
);
if (! isset($url)) {
$url = array(
'action' => 'add',
'frame_id' => Current::read('Frame.id'),
);
if (isset($this->_View->viewVars['addActionController'])) {
$url['controller'] = $this->_View->viewVars['addActionController'];
}
}
$url = NetCommonsUrl::actionUrl(Hash::merge($defaultUrl, $url));
}
//Linkオプションの設定
$inputOptions = Hash::merge(array(
'icon' => 'plus',
'iconSize' => $this->Button->getButtonSize(),
'class' => 'btn btn-success nc-btn-style',
), $options, array('escapeTitle' => false));
//タイトル
if (Hash::get($options, 'escapeTitle', true)) {
$title = h($title);
}
if (! $title && $title !== false) {
$title = __d('net_commons', 'Add');
}
$output .= $this->__getLinkHtml($title, $url, $inputOptions);
return $output;
}
/**
* 編集ボタンHTMLの出力
*
* @param string $title タイトル
* @param mixed $url URL
* @param array $options HTML属性オプション
* @return string HTMLタグ
*/
public function edit($title = '', $url = null, $options = array()) {
$output = '';
if (! isset($url)) {
$url = array();
}
if (is_array($url)) {
$defaultAction = Hash::get(
$this->_View->viewVars, 'editActionController', $this->_View->request->params['controller']
);
$url['controller'] = Hash::get($url, 'controller', $defaultAction);
$url['action'] = Hash::get($url, 'action', 'edit');
}
//Linkオプションの設定
$inputOptions = Hash::merge(array(
'icon' => 'edit',
'iconSize' => $this->Button->getButtonSize(),
'class' => 'btn btn-primary nc-btn-style'
), $options, array('escapeTitle' => false));
//タイトル
if (Hash::get($options, 'escapeTitle', true)) {
$title = h($title);
}
if (! $title && $title !== false) {
$title = __d('net_commons', 'Edit');
}
$output .= $this->__getLinkHtml($title, $url, $inputOptions);
return $output;
}
/**
* 検索ボタンHTMLの出力
*
* @param string $title タイトル
* @param mixed $url URL
* @param array $options HTML属性オプション
* @return string HTMLタグ
*/
public function search($title = '', $url = null, $options = array()) {
$output = '';
if (! isset($url)) {
$url = array();
}
if (is_array($url)) {
$url = Hash::merge(array('action' => 'search'), $url);
}
//Linkオプションの設定
$inputOptions = Hash::merge(array(
'icon' => 'search',
'iconSize' => $this->Button->getButtonSize(),
'class' => 'btn btn-info nc-btn-style',
), $options, array('escapeTitle' => false));
//タイトル
if (Hash::get($options, 'escapeTitle', true)) {
$title = h($title);
}
if (! $title && $title !== false) {
$title = __d('net_commons', 'Search');
}
$output .= $this->__getLinkHtml($title, $url, $inputOptions);
return $output;
}
/**
* ソートボタンHTMLの出力
*
* @param string $title タイトル
* @param mixed $url URL
* @param array $options HTML属性オプション
* @return string HTMLタグ
*/
public function sort($title = '', $url = null, $options = array()) {
$output = '';
if (! isset($url)) {
$url = array();
}
if (is_array($url)) {
$url = Hash::merge(array('action' => 'sort'), $url);
}
//Linkオプションの設定
$inputOptions = Hash::merge(array(
'icon' => 'sort',
'iconSize' => $this->Button->getButtonSize(),
'class' => 'btn btn-default nc-btn-style',
), $options, array('escapeTitle' => false));
if (Hash::get($options, 'escapeTitle', true)) {
$title = h($title);
}
if (! $title && $title !== false) {
$title = __d('net_commons', 'Sort');
}
$output .= $this->__getLinkHtml($title, $url, $inputOptions);
return $output;
}
/**
* ソートボタンHTMLの出力
*
* @param string $title タイトル
* @param mixed $url URL
* @param array $options HTML属性オプション
* @return string HTMLタグ
*/
private function __getLinkHtml($title, $url, $options) {
//センター以外は、ボタン文言を非表示にする
$containerType = Current::read('Container.type');
$ariaHidden = ' aria-hidden="true"';
if (in_array($containerType, [Container::TYPE_MAJOR, Container::TYPE_MINOR], true) &&
! empty($this->_View->request->params['requested'])) {
$options['aria-label'] = $title;
$title = '';
} else {
$title = '<span class="hidden-xs">' . $title . '</span>';
}
if (substr($options['icon'], 0, strlen('glyphicon-')) === 'glyphicon-') {
$glyphicon = 'glyphicon ' . h($options['icon']);
} else {
$glyphicon = 'glyphicon glyphicon-' . h($options['icon']);
}
$iconTag = '<span ' . 'class="' . $glyphicon . '"' . $ariaHidden . '></span> ';
if (Hash::get($options, 'addIcon')) {
if (substr($options['addIcon'], 0, strlen('glyphicon-')) === 'glyphicon-') {
$glyphicon = 'glyphicon ' . h($options['addIcon']);
} else {
$glyphicon = 'glyphicon glyphicon-' . h($options['addIcon']);
}
$iconTag .= '<span ' . 'class="' . $glyphicon . '"' . $ariaHidden . '></span> ';
}
$title = $iconTag . $title;
unset($options['icon']);
//ボタンサイズ
if ($options['iconSize']) {
$options['class'] .= ' ' . trim(h($options['iconSize']));
}
unset($options['iconSize']);
return $this->NetCommonsHtml->link($title, $url, $options);
}
}