Files

265 lines
9.9 KiB
PHP

<?php namespace Phpcmf\Field;
/**
* https://www.besyun.com
* BESCMS
* 本文件是框架系统文件,二次开发时不可以修改本文件,可以通过继承类方法来重写此文件
**/
class Date extends \Phpcmf\Library\A_Field {
/**
* 构造函数
*/
public function __construct(...$params) {
parent::__construct(...$params);
$this->fieldtype = ['BIGINT' => 10];
$this->defaulttype = 'BIGINT';
}
/**
* 字段相关属性参数
*
* @param array $value 值
* @return string
*/
public function option($option) {
return ['
<div class="form-group">
<label class="col-md-2 control-label">'.dr_lang('字段格式').'</label>
<div class="col-md-9">
<div class="mt-radio-inline">
<label class="mt-radio mt-radio-outline">
<input type="radio" name="data[setting][option][format2]" value="0" '.(!$option['format2'] ? 'checked' : '').'> '.dr_lang('日期时间格式').'
<span></span>
</label>
<label class="mt-radio mt-radio-outline">
<input type="radio" name="data[setting][option][format2]" value="1" '.($option['format2'] ? 'checked' : '').'> '.dr_lang('日期格式').'
<span></span>
</label>
</div>
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">'.dr_lang('图标显示').'</label>
<div class="col-md-9">
<div class="mt-radio-inline">
<label class="mt-radio mt-radio-outline">
<input type="radio" name="data[setting][option][is_left]" value="1" '.($option['is_left'] ? 'checked' : '').'> '.dr_lang('左侧图标').'
<span></span>
</label>
<label class="mt-radio mt-radio-outline">
<input type="radio" name="data[setting][option][is_left]" value="0" '.(!$option['is_left'] ? 'checked' : '').'> '.dr_lang('右侧图标').'
<span></span>
</label>
</div>
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">'.dr_lang('默认存储值').'</label>
<div class="col-md-9">
<label><input id="field_default_value" type="text" class="form-control" size="20" value="'.$option['value'].'" name="data[setting][option][value]"></label>
<label>'.$this->member_field_select().'</label>
<span class="help-block">'.dr_lang('用于字段为空时显示该填充值,并不会去主动变更数据库中的实际值;可以设置会员表字段,表示用当前登录会员信息来填充这个值').'</span>
</div>
</div>
'.$this->field_type($option['fieldtype'], $option['fieldlength'])
,
'
<div class="form-group">
<label class="col-md-2 control-label">'.dr_lang('控件宽度').'</label>
<div class="col-md-9">
<label><input type="text" class="form-control" size="10" name="data[setting][option][width]" value="'.$option['width'].'"></label>
<span class="help-block">'.dr_lang('[整数]表示固定宽度;[整数%]表示百分比').'</span>
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">'.dr_lang('按钮颜色').'</label>
<div class="col-md-9">
<label>'.$this->_color_select('color', $option['color']).'</label>
</div>
</div>
'
];
}
/**
* 创建sql语句
*/
public function create_sql($name, $option, $cname = '') {
// 时间戳:BIGINT(10),默认 0
$type = 'BIGINT(10)';
$info = "DEFAULT '0'";
$note = $cname ? (string)$cname : '';
$db = $this->_db_for_field_sql();
if ($db && method_exists($db, 'sqlAddField')) {
return $db->sqlAddField($name, $type, $info, $note);
}
$tips = $note !== '' ? " COMMENT '".str_replace("'", "''", $note)."'" : '';
return 'ALTER TABLE `{tablename}` ADD `'.$name.'` '.$type.' '.$info.$tips;
}
/**
* 字段输出
*/
public function output($value) {
return dr_date($value, null, '');
}
/**
* 字段入库值
*
* @param array $field 字段信息
* @return void
*/
public function insert_value($field) {
\Phpcmf\Service::L('Field')->data[$field['ismain']][$field['fieldname']] = strtotime((string)\Phpcmf\Service::L('Field')->post[$field['fieldname']]);
}
/**
* 字段表单输入
*
* @return string
*/
public function input($field, $value = 0) {
// 字段存储名称
$name = $field['fieldname'];
// 字段禁止修改时就返回显示字符串
if ($this->_not_edit($field, $value)) {
return $this->show($field, $value);
}
// 字段显示名称
$text = ($field['setting']['validate']['required'] ? '<span class="required" aria-required="true"> * </span>' : '').dr_lang($field['name']);
// 表单宽度设置
$width = \Phpcmf\Service::IS_MOBILE_USER() ? '100%' : ($field['setting']['option']['width'] ? $field['setting']['option']['width'] : 200);
// 风格
$style = 'style="width:'.$width.(is_numeric($width) ? 'px' : '').';"';
// 表单附加参数
$attr = $field['setting']['validate']['formattr'];
// 按钮颜色
$color = $field['setting']['option']['color'] ? $field['setting']['option']['color'] : 'default';
// 字段提示信息
$tips = ($name == 'title' && APP_DIR) || $field['setting']['validate']['tips'] ? '<span class="help-block" id="dr_'.$field['fieldname'].'_tips">'.$field['setting']['validate']['tips'].'</span>' : '';
// 格式显示
$format = (int)$field['setting']['option']['format2'];
// 是否必填
$required = $field['setting']['validate']['required'] ? ' required="required"' : '';
$str = '';
if (!$this->is_load_js($field['fieldtype'])) {
$str.= '
<link href="'.ROOT_THEME_PATH.'assets/global/plugins/bootstrap-daterangepicker/daterangepicker.min.css?v='.CMF_UPDATE_TIME.'" rel="stylesheet" type="text/css" />
<link href="'.ROOT_THEME_PATH.'assets/global/plugins/bootstrap-datepicker/css/bootstrap-datepicker.min.css?v='.CMF_UPDATE_TIME.'" rel="stylesheet" type="text/css" />
<link href="'.ROOT_THEME_PATH.'assets/global/plugins/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css?v='.CMF_UPDATE_TIME.'" rel="stylesheet" type="text/css" />
<script src="'.ROOT_THEME_PATH.'assets/global/plugins/moment.min.js?v='.CMF_UPDATE_TIME.'" type="text/javascript"></script>
<script src="'.ROOT_THEME_PATH.'assets/global/plugins/bootstrap-datepicker/js/bootstrap-datepicker.finecms.js?v='.CMF_UPDATE_TIME.'" type="text/javascript"></script>
<script src="'.ROOT_THEME_PATH.'assets/global/plugins/bootstrap-datetimepicker/js/bootstrap-datetimepicker.finecms.js?v='.CMF_UPDATE_TIME.'" type="text/javascript"></script>
';
$this->set_load_js($field['fieldtype'], 1);
}
$updatetime_select = 0;
// 字段默认值
!$value && $value = (string)$this->get_default_value($field['setting']['option']['value']);
if (APP_DIR && $name == 'updatetime' && \Phpcmf\Service::C()->module) {
$updatetime_select = isset(\Phpcmf\Service::C()->module['setting']['updatetime_select']) && \Phpcmf\Service::C()->module['setting']['updatetime_select'];
if ($updatetime_select) {
// 勾选不更新时
!$value || $value == 'SYS_TIME' && $value = SYS_TIME;
} else {
$value = SYS_TIME;
}
} elseif ($value == 'SYS_TIME') {
$value = SYS_TIME;
} elseif (strpos($value, '-') === 0) {
} elseif (strpos($value, '-') !== false) {
$value = strtotime($value);
}
$value = $format ? dr_date($value, 'Y-m-d') : dr_date($value, 'Y-m-d H:i:s');
$shuru = '<input id="dr_'.$name.'" name="data['.$name.']" type="text" '.$style.' value="'.$value.'" '.$required.' class="form-control '.$field['setting']['option']['css'].'">';
$tubiao = '<span class="input-group-btn">
<button class="btn '.$color.' date-set" type="button">
<i class="fa fa-calendar"></i>
</button>
</span>';
$str.= '<div class="input-group date field_date_'.$name.'">';
$str.= $field['setting']['option']['is_left'] ? $tubiao.$shuru : $shuru.$tubiao;
$str.= '</div>';
if ($format) {
// 日期
$str.= '
<script>
$(function(){
$(".field_date_'.$name.'").datepicker({
isRTL: false,
format: "yyyy-mm-dd",
showMeridian: true,
autoclose: true,
pickerPosition: "bottom-right",
todayBtn: "linked"
});
});
</script>
';
} else {
// 日期 + 时间
$str.= '
<script>
$(function(){
$(".field_date_'.$name.'").datetimepicker({
isRTL: false,
format: "yyyy-mm-dd hh:ii:ss",
showMeridian: true,
autoclose: true,
pickerPosition: "bottom-right",
todayBtn: "linked"
});
});
</script>';
}
if (APP_DIR && \Phpcmf\Service::C()->module && $name == 'updatetime') {
$str.= '<label><input name="no_time" '.($updatetime_select ? ' checked' : '').' class="dr_no_time" type="checkbox" value="1" /> '.dr_lang('不更新').'</label>';
}
$str.= $tips;
return $this->input_format($name, $text, '<div class="form-date input-group">'.$str.'</div>');
}
/**
* 字段表单显示
*
* @param string $field 字段数组
* @param array $value 值
* @return string
*/
public function show($field, $value = null) {
if (!is_numeric($value)) {
$value = strtotime($value);
}
$value = (int)$field['setting']['option']['format2'] ? dr_date($value, 'Y-m-d') : dr_date($value, 'Y-m-d H:i:s');
return $this->input_format($field['fieldname'], $field['name'], '<div class="form-control-static"><span> '.$value.' </span></div>');
}
}