<?php
if (class_exists('form') != true) {
class form {
public static function input($name = '', $value = '', $required = false, $width = 0) {
$string = '<input class="form-control" ';
if ($width)
$string .= ' style="width:' . $width . 'px" ';
if ($required)
$string .= ' required="required" ';
$string .= ' name="' . $name . '" id="' . $name . '" ';
$string .= ' type="text" value="' . $value . '">';
return $string;
}
public static function textarea($name = '', $value = '', $required = false, $width = 0) {
$string = '<textarea name="' . $name . '" id="' . $name . '" ';
if ($width)
$string .= ' width="' . $width . 'px" ';
if ($required)
$string .= ' required="required" ';
$string .= '>' . $value . '</textarea>';
return $string;
}
public static function select($name, $val = 0, $array = array(), $default_option = '') {
$string = '<select name="' . $name . '" id="' . $name . '" class="form-control">';
if ($default_option)
$string .= "<option value=''>$default_option</option>";
if (!is_array($array) || count($array) == 0)
return false;
$ids = array();
if (isset($val))
$ids = explode(',', $val);
foreach ($array as $value) {
$selected = in_array($value, $ids) ? 'selected' : '';
$string .= '<option value="' . $value . '" ' . $selected . '>' . $value . '</option>';
}
$string .= '</select>';
return $string;
}
public static function checkbox($name, $val = '', $array = array()) {
$string = '';
$val = trim($val);
if ($val != '')
$val = strpos($val, ',') ? explode(',', $val) : array($val);
$i = 1;
foreach ($array as $value) {
$value = trim($value);
$checked = ($val && in_array($value, $val)) ? 'checked' : '';
$string .= '<label class="option_label option_box" >';
$string .= '<input type="checkbox" name="' . $name . '[]" id="' . $name . '_' . $i . '" ' . $checked . ' value="' . $value . '">' . $value;
$string .= '</label>';
$i++;
}
return $string;
}
public static function radio($name, $val = '', $array = array()) {
$string = '';
foreach ($array as $value) {
$checked = trim($val) == trim($value) ? 'checked' : '';
$string .= '<label class="option_label option_radio" >';
$string .= '<input type="radio" name="' . $name . '" id="' . $name . '_' . $value . '" ' . $checked . ' value="' . $value . '">' . $value;
$string .= '</label>';
}
return $string;
}
public static function code($id = 'code') {
return '<img src="' . url('api/index/code/') . '" id="' . $id . '" onclick="this.src=this.src+\'?\'" style="cursor:pointer;" title="看不清?点击更换">';
}
public static function datetime($name, $val = '', $isdatetime = 0, $loadjs = 0, $str = '') {
$string = '';
if ($loadjs || !defined('DATETIME')) {
define('DATETIME', 1);
$string .= '<link href="' . STATIC_URL . '/plugins/calendar/calendar.css" rel="stylesheet" type="text/css"/>
<script src="' . STATIC_URL . '/plugins/calendar/calendar.js" type="text/javascript"></script>';
}
$string .= '<input class="calendar-icon form-control" style="width:118px;" onclick="showcalendar(event, this)" value="' . $val . '" name="' . $name . '" id="' . $name . '" ' . $str . '>';
return $string;
}
public static function image($name, $val = '', $style = 'width:370px', $iscropper = false) {
$string = '<input class="input-text uploadfile" type="text" name="' . $name . '" value="' . $val . '" onmouseover="yzm_img_preview(\'' . $name . '\', this.value)" onmouseout="layer.closeAll();" id="' . $name . '" style="' . $style . '" > <a href="javascript:;" onclick="yzm_upload_att(\'' . U('attachment/api/upload_box', array('module' => ROUTE_M, 'pid' => $name)) . '\')" class="btn btn-primary radius upload-btn"><i class="Hui-iconfont"></i> 浏览文件</a>';
if ($iscropper)
$string = $string . ' ' . form::cropper($name);
return $string;
}
public static function images($name, $val = '', $n = 20) {
$string = '';
$string .= '<fieldset class="fieldset_list"><legend>图片列表</legend><div class="fieldset_tip">您最多可以同时上传 <span style="color:red">' . $n . '</span> 个文件</div>
<ul id="' . $name . '" class="file_ul">';
if ($val) {
$arr = string2array($val);
foreach ($arr as $key => $val) {
$string .= '<li>文件:<input type="text" name="' . $name . '[url][]" value="' . $val['url'] . '" id="' . $name . '_' . $key . '" onmouseover="yzm_img_preview(\'' . $name . '_' . $key . '\', this.value)" onmouseout="layer.closeAll();" class="input-text w_300"> 描述:<input type="text" name="' . $name . '[alt][]" value="' . $val['alt'] . '" class="input-text w_200"><a href="javascript:;" onclick="remove_li(this);">删除</a></li>';
}
}
$string .= '</ul></fieldset>
<a href="javascript:;" onclick="yzm_upload_att(\'' . U('attachment/api/upload_box', array('module' => ROUTE_M, 'pid' => $name, 'n' => $n)) . '\')" class="btn btn-primary radius upload-btn mt-5"><i class="Hui-iconfont"></i> 浏览文件</a>';
return $string;
}
public static function cropper($cid, $spec = 1) {
$string = '<a href="javascript:;" onclick="yzm_img_cropper(\'' . $cid . '\', \'' . U('attachment/api/img_cropper', array('spec' => $spec)) . '\')" class="btn btn-secondary radius upload-btn"><i class="Hui-iconfont"></i> 裁剪图片</a>';
return $string;
}
public static function attachment($name, $val = '', $style = 'width:370px') {
$string = '<input class="input-text uploadfile" type="text" name="' . $name . '" value="' . $val . '" id="' . $name . '" style="' . $style . '" > <a href="javascript:;" onclick="yzm_upload_att(\'' . U('attachment/api/upload_box', array('module' => ROUTE_M, 'pid' => $name, 't' => 2)) . '\')" class="btn btn-primary radius upload-btn"><i class="Hui-iconfont"></i> 浏览文件</a>';
return $string;
}
public static function editor($name = 'content', $val = '', $style = '', $isload = true) {
$style = $style ? $style : 'width:825px;height:350px;';
$string = '';
if ($isload) {
$string .= '<link href="/static/plugins/umeditor/themes/default/css/umeditor.css" type="text/css" rel="stylesheet">
<script type="text/javascript" charset="utf-8" src="/static/plugins/umeditor/umeditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="/static/plugins/umeditor/umeditor.min.js"></script>
<script type="text/javascript" charset="utf-8" src="/static/plugins/umeditor/lang/zh-cn/zh-cn.js"></script>';
}
$string .= '<script id="' . $name . '" type="text/plain" style="' . $style . '" name="' . $name . '">' . $val . '</script>
<script type="text/javascript"> var ue = UM.getEditor(\'' . $name . '\'); </script>';
return $string;
}
public static function editor_mini($name = 'content', $val = '', $style = '', $isload = false) {
$style = $style ? $style : 'width:100%;height:400px';
$string = '';
if ($isload) {
$string .= '<script type="text/javascript" charset="utf-8" src="' . STATIC_URL . 'plugin/ueditor/1.4.3.3/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="' . STATIC_URL . 'plugin/ueditor/1.4.3.3/ueditor.all.min.js"> </script>
<script type="text/javascript" charset="utf-8" src="' . STATIC_URL . 'plugin/ueditor/1.4.3.3/lang/zh-cn/zh-cn.js"></script>';
}
$string .= '<script id="' . $name . '" type="text/plain" style="' . $style . '" name="' . $name . '">' . $val . '</script>
<script type="text/javascript"> var ue = UE.getEditor("' . $name . '",{
toolbars:[[ "fullscreen","source","|","undo","redo","|",
"bold","italic","underline","blockquote","forecolor","|","fontfamily","fontsize","|","simpleupload","link","unlink","emotion","date","time","drafts"]],
wordCount:false,
elementPathEnabled:false,
initialFrameHeight:300
}); </script>';
return $string;
}
}
}