本文整理汇总了PHP中cmb_Meta_Box::field_timezone_offset方法的典型用法代码示例。如果您正苦于以下问题:PHP cmb_Meta_Box::field_timezone_offset方法的具体用法?PHP cmb_Meta_Box::field_timezone_offset怎么用?PHP cmb_Meta_Box::field_timezone_offset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cmb_Meta_Box
的用法示例。
在下文中一共展示了cmb_Meta_Box::field_timezone_offset方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: text_datetime_timestamp
public static function text_datetime_timestamp($field, $meta, $object_id)
{
// This will be used if there is a select_timezone set for this field
$tz_offset = cmb_Meta_Box::field_timezone_offset($object_id);
if (!empty($tz_offset)) {
$meta -= $tz_offset;
}
echo '<input class="cmb_text_small cmb_datepicker" type="text" name="', $field['id'], '[date]" id="', $field['id'], '_date" value="', '' !== $meta ? date('m\\/d\\/Y', $meta) : $field['std'], '" />';
echo '<input class="cmb_timepicker text_time" type="text" name="', $field['id'], '[time]" id="', $field['id'], '_time" value="', '' !== $meta ? date('h:i A', $meta) : $field['std'], '" />', self::desc($field['desc']);
}
示例2: text_datetime_timestamp
/**
* Datetime to timestamp
* @since 1.0.1
* @param string $meta Meta value
* @return string Timestring
*/
public static function text_datetime_timestamp($meta)
{
$test = is_array($meta) ? array_filter($meta) : '';
if (empty($test)) {
return '';
}
$meta = strtotime($meta['date'] . ' ' . $meta['time']);
if ($tz_offset = cmb_Meta_Box::field_timezone_offset()) {
$meta += $tz_offset;
}
return $meta;
}