GC_Customize_Date_Time_Control::json()
最后更新于:2021-11-27 00:15:56
GC_Customize_Date_Time_Control::json()Export data to JS.
响应
(array)
源文件
文件: gc-includes/customize/class-gc-customize-date-time-control.php
public function json() {
$data = parent::json();
$data['maxYear'] = (int) $this->max_year;
$data['minYear'] = (int) $this->min_year;
$data['allowPastDate'] = (bool) $this->allow_past_date;
$data['twelveHourFormat'] = (bool) $this->twelve_hour_format;
$data['includeTime'] = (bool) $this->include_time;
return $data;
}