common.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. use app\common\model\Category;
  3. use fast\Form;
  4. use fast\Tree;
  5. use think\Db;
  6. if (!function_exists('build_select')) {
  7. /**
  8. * 生成下拉列表
  9. * @param string $name
  10. * @param mixed $options
  11. * @param mixed $selected
  12. * @param mixed $attr
  13. * @return string
  14. */
  15. function build_select($name, $options, $selected = [], $attr = [])
  16. {
  17. $options = is_array($options) ? $options : explode(',', $options);
  18. $selected = is_array($selected) ? $selected : explode(',', $selected);
  19. return Form::select($name, $options, $selected, $attr);
  20. }
  21. }
  22. if (!function_exists('build_radios')) {
  23. /**
  24. * 生成单选按钮组
  25. * @param string $name
  26. * @param array $list
  27. * @param mixed $selected
  28. * @return string
  29. */
  30. function build_radios($name, $list = [], $selected = null,$disabled=false)
  31. {
  32. $html = [];
  33. $selected = is_null($selected) ? key($list) : $selected;
  34. $selected = is_array($selected) ? $selected : explode(',', $selected);
  35. $options=[];
  36. if($disabled){
  37. $options['disabled']=$disabled;
  38. }
  39. foreach ($list as $k => $v) {
  40. $html[] = sprintf(Form::label("{$name}-{$k}", "%s {$v}"), Form::radio($name, $k, in_array($k, $selected), array_merge(['id' => "{$name}-{$k}"],$options)));
  41. }
  42. return '<div class="radio">' . implode(' ', $html) . '</div>';
  43. }
  44. }
  45. if (!function_exists('build_checkboxs')) {
  46. /**
  47. * 生成复选按钮组
  48. * @param string $name
  49. * @param array $list
  50. * @param mixed $selected
  51. * @return string
  52. */
  53. function build_checkboxs($name, $list = [], $selected = null)
  54. {
  55. $html = [];
  56. $selected = is_null($selected) ? [] : $selected;
  57. $selected = is_array($selected) ? $selected : explode(',', $selected);
  58. foreach ($list as $k => $v) {
  59. $html[] = sprintf(Form::label("{$name}-{$k}", "%s {$v}"), Form::checkbox($name, $k, in_array($k, $selected), ['id' => "{$name}-{$k}"]));
  60. }
  61. return '<div class="checkbox">' . implode(' ', $html) . '</div>';
  62. }
  63. }
  64. if (!function_exists('build_category_select')) {
  65. /**
  66. * 生成分类下拉列表框
  67. * @param string $name
  68. * @param string $type
  69. * @param mixed $selected
  70. * @param array $attr
  71. * @param array $header
  72. * @return string
  73. */
  74. function build_category_select($name, $type, $selected = null, $attr = [], $header = [])
  75. {
  76. $tree = Tree::instance();
  77. $tree->init(Category::getCategoryArray($type), 'pid');
  78. $categorylist = $tree->getTreeList($tree->getTreeArray(0), 'name');
  79. $categorydata = $header ? $header : [];
  80. foreach ($categorylist as $k => $v) {
  81. $categorydata[$v['id']] = $v['name'];
  82. }
  83. $attr = array_merge(['id' => "c-{$name}", 'class' => 'form-control selectpicker'], $attr);
  84. return build_select($name, $categorydata, $selected, $attr);
  85. }
  86. }
  87. if (!function_exists('build_toolbar')) {
  88. /**
  89. * 生成表格操作按钮栏
  90. * @param array $btns 按钮组
  91. * @param array $attr 按钮属性值
  92. * @return string
  93. */
  94. function build_toolbar($btns = null, $attr = [])
  95. {
  96. $auth = \app\admin\library\Auth::instance();
  97. $controller = str_replace('.', '/', strtolower(think\Request::instance()->controller()));
  98. $btns = $btns ? $btns : ['refresh', 'add', 'edit', 'del', 'import'];
  99. $btns = is_array($btns) ? $btns : explode(',', $btns);
  100. $index = array_search('delete', $btns);
  101. if ($index !== false) {
  102. $btns[$index] = 'del';
  103. }
  104. $btnAttr = [
  105. 'refresh' => ['javascript:;', 'btn btn-primary btn-refresh', 'fa fa-refresh', '', __('Refresh')],
  106. 'add' => ['javascript:;', 'btn btn-success btn-add', 'fa fa-plus', __('Add'), __('Add')],
  107. 'edit' => ['javascript:;', 'btn btn-success btn-edit btn-disabled disabled', 'fa fa-pencil', __('Edit'), __('Edit')],
  108. 'del' => ['javascript:;', 'btn btn-danger btn-del btn-disabled disabled', 'fa fa-trash', __('Delete'), __('Delete')],
  109. 'import' => ['javascript:;', 'btn btn-info btn-import', 'fa fa-upload', __('Import'), __('Import')],
  110. ];
  111. $btnAttr = array_merge($btnAttr, $attr);
  112. $html = [];
  113. foreach ($btns as $k => $v) {
  114. //如果未定义或没有权限
  115. if (!isset($btnAttr[$v]) || ($v !== 'refresh' && !$auth->check("{$controller}/{$v}"))) {
  116. continue;
  117. }
  118. list($href, $class, $icon, $text, $title) = $btnAttr[$v];
  119. //$extend = $v == 'import' ? 'id="btn-import-file" data-url="ajax/upload" data-mimetype="csv,xls,xlsx" data-multiple="false"' : '';
  120. //$html[] = '<a href="' . $href . '" class="' . $class . '" title="' . $title . '" ' . $extend . '><i class="' . $icon . '"></i> ' . $text . '</a>';
  121. if ($v == 'import') {
  122. $template = str_replace('/', '_', $controller);
  123. $download = '';
  124. if (file_exists("./template/{$template}.xlsx")) {
  125. $download .= "<li><a href=\"/template/{$template}.xlsx\" target=\"_blank\">XLSX模版</a></li>";
  126. }
  127. if (file_exists("./template/{$template}.xls")) {
  128. $download .= "<li><a href=\"/template/{$template}.xls\" target=\"_blank\">XLS模版</a></li>";
  129. }
  130. if (file_exists("./template/{$template}.csv")) {
  131. $download .= empty($download) ? '' : "<li class=\"divider\"></li>";
  132. $download .= "<li><a href=\"/template/{$template}.csv\" target=\"_blank\">CSV模版</a></li>";
  133. }
  134. $download .= empty($download) ? '' : "\n ";
  135. if (!empty($download)) {
  136. $html[] = <<<EOT
  137. <div class="btn-group">
  138. <button type="button" href="{$href}" class="btn btn-info btn-import" title="{$title}" id="btn-import-file" data-url="ajax/upload" data-mimetype="csv,xls,xlsx" data-multiple="false"><i class="{$icon}"></i> {$text}</button>
  139. <button type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown" title="下载批量导入模版">
  140. <span class="caret"></span>
  141. <span class="sr-only">Toggle Dropdown</span>
  142. </button>
  143. <ul class="dropdown-menu" role="menu">{$download}</ul>
  144. </div>
  145. EOT;
  146. } else {
  147. $html[] = '<a href="' . $href . '" class="' . $class . '" title="' . $title . '" id="btn-import-file" data-url="ajax/upload" data-mimetype="csv,xls,xlsx" data-multiple="false"><i class="' . $icon . '"></i> ' . $text . '</a>';
  148. }
  149. } else {
  150. $html[] = '<a href="' . $href . '" class="' . $class . '" title="' . $title . '"><i class="' . $icon . '"></i> ' . $text . '</a>';
  151. }
  152. }
  153. return implode(' ', $html);
  154. }
  155. }
  156. if (!function_exists('build_heading')) {
  157. /**
  158. * 生成页面Heading
  159. *
  160. * @param string $path 指定的path
  161. * @return string
  162. */
  163. function build_heading($path = null, $container = true)
  164. {
  165. $title = $content = '';
  166. if (is_null($path)) {
  167. $action = request()->action();
  168. $controller = str_replace('.', '/', request()->controller());
  169. $path = strtolower($controller . ($action && $action != 'index' ? '/' . $action : ''));
  170. }
  171. // 根据当前的URI自动匹配父节点的标题和备注
  172. $data = Db::name('auth_rule')->where('name', $path)->field('title,remark')->find();
  173. if ($data) {
  174. $title = __($data['title']);
  175. $content = __($data['remark']);
  176. }
  177. if (!$content) {
  178. return '';
  179. }
  180. $result = '<div class="panel-lead"><em>' . $title . '</em>' . $content . '</div>';
  181. if ($container) {
  182. $result = '<div class="panel-heading">' . $result . '</div>';
  183. }
  184. return $result;
  185. }
  186. }
  187. if (!function_exists('build_suffix_image')) {
  188. /**
  189. * 生成文件后缀图片
  190. * @param string $suffix 后缀
  191. * @param null $background
  192. * @return string
  193. */
  194. function build_suffix_image($suffix, $background = null)
  195. {
  196. $suffix = mb_substr(strtoupper($suffix), 0, 4);
  197. $total = unpack('L', hash('adler32', $suffix, true))[1];
  198. $hue = $total % 360;
  199. list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);
  200. $background = $background ? $background : "rgb({$r},{$g},{$b})";
  201. $icon = <<<EOT
  202. <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
  203. <path style="fill:#E2E5E7;" d="M128,0c-17.6,0-32,14.4-32,32v448c0,17.6,14.4,32,32,32h320c17.6,0,32-14.4,32-32V128L352,0H128z"/>
  204. <path style="fill:#B0B7BD;" d="M384,128h96L352,0v96C352,113.6,366.4,128,384,128z"/>
  205. <polygon style="fill:#CAD1D8;" points="480,224 384,128 480,128 "/>
  206. <path style="fill:{$background};" d="M416,416c0,8.8-7.2,16-16,16H48c-8.8,0-16-7.2-16-16V256c0-8.8,7.2-16,16-16h352c8.8,0,16,7.2,16,16 V416z"/>
  207. <path style="fill:#CAD1D8;" d="M400,432H96v16h304c8.8,0,16-7.2,16-16v-16C416,424.8,408.8,432,400,432z"/>
  208. <g><text><tspan x="220" y="380" font-size="124" font-family="Verdana, Helvetica, Arial, sans-serif" fill="white" text-anchor="middle">{$suffix}</tspan></text></g>
  209. </svg>
  210. EOT;
  211. return $icon;
  212. }
  213. }