当前位置: 首页>>代码示例>>PHP>>正文


PHP TimeDate::get_user_time_format方法代码示例

本文整理汇总了PHP中TimeDate::get_user_time_format方法的典型用法代码示例。如果您正苦于以下问题:PHP TimeDate::get_user_time_format方法的具体用法?PHP TimeDate::get_user_time_format怎么用?PHP TimeDate::get_user_time_format使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TimeDate的用法示例。


在下文中一共展示了TimeDate::get_user_time_format方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: call

<?php

require_once 'modules/Calls_Reschedule/Calls_Reschedule.php';
require_once 'modules/Calls/Call.php';
$call = new call();
$timedate = new TimeDate();
$id = $_POST['call_id'];
$date = $_POST['date'];
$reason = $_POST['reason'];
$hour = $_POST['date_start_hours'];
$minutes = $_POST['date_start_minutes'];
$ampm = $_POST['date_start_meridiem'];
$time_format = $timedate->get_user_time_format();
//get the logged in users time settings
//Combine date and time dependant on users settings
$time_separator = ":";
if (preg_match('/\\d+([^\\d])\\d+([^\\d]*)/s', $time_format, $match)) {
    $time_separator = $match[1];
}
if (!empty($hour) && !empty($minutes)) {
    $time_start = $hour . $time_separator . $minutes;
}
if (isset($ampm) && !empty($ampm)) {
    $time_start = $timedate->merge_time_meridiem($time_start, $timedate->get_time_format(), $ampm);
}
if (isset($time_start) && strlen($date) == 10) {
    $date_start = $date . ' ' . $time_start;
}
$call->retrieve($id);
$call->date_start = $date_start;
//set new the start date
开发者ID:MexinaD,项目名称:SuiteCRM,代码行数:31,代码来源:Reschedule.php

示例2: foreach

         $xtpl->assign("CELL_WIDTH", $col_width);
         $xtpl->parse("main." . $section_name . ".merge_cell_edit_checkbox");
         break;
     case 'date':
     case 'datetime':
         $xtpl->assign("CALENDAR_LANG", "en");
         $xtpl->assign("USER_DATEFORMAT", '(' . $timedate->get_user_date_format() . ')');
         $xtpl->assign("CALENDAR_DATEFORMAT", $timedate->get_cal_date_format());
         $xtpl->assign("EDIT_FIELD_VALUE", $select_row_curr_field_value);
         $xtpl->assign("CELL_WIDTH", $col_width);
         $xtpl->assign("THEME", $theme);
         $xtpl->parse("main." . $section_name . ".merge_cell_edit_date");
         break;
     case 'datetimecombo':
         $xtpl->assign("CALENDAR_LANG", "en");
         $xtpl->assign("USER_DATEFORMAT", $timedate->get_user_time_format());
         $xtpl->assign("CALENDAR_DATEFORMAT", $timedate->get_cal_date_format());
         $xtpl->assign("EDIT_FIELD_VALUE", $select_row_curr_field_value);
         $xtpl->assign("CELL_WIDTH", $col_width);
         $xtpl->assign("THEME", $theme);
         $xtpl->parse("main." . $section_name . ".merge_cell_edit_datetime");
         break;
     default:
         break;
 }
 //render a column for each selected record to merge
 foreach ($merge_ids_array as $id) {
     $xtpl->assign("CELL_WIDTH", $col_width);
     $field_name = null;
     switch ($field_check) {
         case 'bool':
开发者ID:aldridged,项目名称:gtg-sugar,代码行数:31,代码来源:Step3.php


注:本文中的TimeDate::get_user_time_format方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。