本文整理汇总了PHP中TimeDate::to_display方法的典型用法代码示例。如果您正苦于以下问题:PHP TimeDate::to_display方法的具体用法?PHP TimeDate::to_display怎么用?PHP TimeDate::to_display使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TimeDate
的用法示例。
在下文中一共展示了TimeDate::to_display方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testToDisplayFormatsNoTz
/**
* test conversion from DB date+time to local date+time without TZ handling
* @dataProvider dateTestSet
*/
public function testToDisplayFormatsNoTz($db, $df, $tf, $tz, $display, $dbdate)
{
$this->_setPrefs($df, $tf, $tz);
if (!empty($tf)) {
$df .= " {$tf}";
}
$result = $this->time_date->to_display($dbdate, $this->time_date->get_db_date_time_format(), $df);
if (empty($tf)) {
$result = $this->_dateOnly($result);
}
$this->assertEquals($display, $result, "Broken conversion for '{$df}' with date '{$db}' and TZ {$tz}");
}
示例2: display
function display()
{
$ss = new Sugar_Smarty();
$table = array('Leads' => 'Leads', 'Opportunities' => 'Opportunities', 'FITs' => 'Customer', 'Contacts' => 'Contacts', 'Accounts' => 'Company', 'Cases' => 'Cases', 'Notes' => 'Notes', 'Calls' => 'Calls', 'Emails' => 'Emails', 'Meetings' => 'Meetings', 'Tasks' => 'Tasks');
$timedate = new TimeDate();
global $db, $mod_strings, $app_list_strings, $current_user;
$ss = new Sugar_Smarty();
$ss->assign('MOD', $mod_strings);
$focus = new C_Reports();
$role = $focus->getUserRole('Reports', $current_user->id);
$list_user = $focus->getUserForReportAsRole();
$list_group = $focus->getAllSecuritySuite();
$ss->assign('lst_group', get_select_options_with_id($app_list_strings['report_securitysuite_dom'], ''));
$ss->assign('lst_user', get_select_options_with_id($app_list_strings['report_user_dom'], ''));
if (isset($_REQUEST['submit'])) {
$start_date = $_REQUEST['start_date'];
$end_date = $_REQUEST['end_date'];
$user_id = $_REQUEST['lst_user'];
$list_user = $_REQUEST['user_id'];
$time_range = $_REQUEST['time_range'];
$start_end_yes = $_REQUEST['start_end_yes'];
$report_option = $_REQUEST['report_option'];
$type = $time_range ? $time_range : $start_end_yes;
$ss->assign('TYPE', $type);
$ss->assign('report_option', $report_option);
$lst_user = get_select_options($app_list_strings['report_user_dom'], $user_id);
$ss->assign('lst_user', $lst_user);
if ($list_user) {
$user_id = json_decode(base64_decode($list_user));
if (count($user_id) > 0) {
$user_id = $user_id;
}
}
if ($user_id) {
$user_id = (array) $user_id;
} else {
unset($app_list_strings['report_user_dom']['0']);
$user_id = array_keys($app_list_strings['report_user_dom']);
}
if ($group) {
$group = (array) $group;
} else {
unset($app_list_strings['report_securitysuite_dom']['0']);
$group = array_keys($app_list_strings['report_securitysuite_dom']);
}
$dateOp = new AdvancedDatetimeOperations($focus);
$user_format = $timedate->get_date_format($current_user);
$date_format = $_REQUEST['date_format'] != '' ? $_REQUEST['date_format'] : $user_format;
if ($start_end_yes) {
$time_range = '';
$start_date = $timedate->to_display($_REQUEST['start_date'], $date_format, 'Y-m-d');
$end_date = $timedate->to_display($_REQUEST['end_date'], $date_format, 'Y-m-d');
} else {
$start_date = date('Y-m-d');
$end_date = date('Y-m-d');
$dateOp->calc_date2($start_date, $end_date, $time_range);
}
$date_start = $timedate->to_display($start_date, 'Y-m-d', $user_format);
$date_end = $timedate->to_display($end_date, 'Y-m-d', $user_format);
$html = '';
$html = '<br /><div style="color:red"><b>Note : (Created/Assigned/Modified)</b></div>';
$html .= '<table class="h3Row" cellpadding="0" cellspacing="0" width="100%" border="1" style="border-collapse: collapse;"> ';
$html .= '<thead>';
$html .= '<td class="tb_border" style="background:#EBEBED"><b>User</b></td>';
foreach ($table as $table_name) {
$html .= '<td style="background:#EBEBED;text-align:center" class="tb_border" width="' . 100 / count($table) . '%"><b>' . $table_name . '</b></td>';
}
$html .= '</tr>';
$html .= '</thead>';
if (count($user_id) > 0 && $user_id[0] != '0') {
foreach ($user_id as $value) {
$html .= '<tr height="20">';
$html .= '<td class="tb_border"> ' . translate('report_user_dom', '', $value) . ' </td>';
foreach ($table as $table_value => $table_name) {
$recordCreate = $focus->countRecordCreate(strtolower($table_value), $value, $start_date, $end_date);
$recordModify = $focus->countRecordAsignedTo(strtolower($table_value), $value, $start_date, $end_date);
$recordModified = $focus->countRecordModify(strtolower($table_value), $value, $start_date, $end_date);
if ($recordCreate > 0) {
$create_url = '<a target="blank" href="index.php?module=' . $table_value . '&action=index&query=true&created_by_basic=' . $value . '&date_entered_basic_range_choice=between&start_range_date_entered_basic=' . $date_start . '&end_range_date_entered_basic=' . $date_end . '&searchFormTab=basic_search">' . $recordCreate . '</a>';
} else {
$create_url = $recordCreate;
}
if ($recordModify > 0) {
$modify_url = '<a target="blank" href="index.php?module=' . $table_value . '&action=index&query=true&assigned_user_id=' . $value . '&date_modified_basic_range_choice=between&start_range_date_modified_basic=' . $date_start . '&end_range_date_modified_basic=' . $date_end . '&searchFormTab=basic_search">' . $recordModify . '</a>';
} else {
$modify_url = $recordModify;
}
if ($recordModified > 0) {
$modified_url = '<a target="blank" href="index.php?module=' . $table_value . '&action=index&query=true&modified_user_id_basic=' . $value . '&date_modified_basic_range_choice=between&start_range_date_modified_basic=' . $date_start . '&end_range_date_modified_basic=' . $date_end . '&searchFormTab=basic_search">' . $recordModified . '</a>';
} else {
$modified_url = $recordModified;
}
$html .= '<td style="text-align:center" class="tb_border">' . $create_url . ' / ' . $modify_url . ' / ' . $modified_url . ' </td>';
}
$html .= '</tr>';
}
}
//$countACC = $focus->get_audit_table_name();
$html .= '</table>';
// $start_date = $timedate->to_display($_REQUEST['start_date'],$date_format,$user_format);
//.........这里部分代码省略.........
示例3: trim
require_once 'include/entryPoint.php';
global $db, $current_user;
$first_name = trim($_POST['first_name']);
$last_name = trim($_POST['last_name']);
$birthday = trim($_POST['birthday']);
$phone_mobile = trim($_POST['phone_mobile']);
$identy_card = trim($_POST['identy_card']);
$where = "deleted = 0 AND last_name = '" . $last_name . "'";
if ($first_name) {
$where .= " AND first_name = '" . $first_name . "'";
}
if ($birthday) {
// Xu ly chuoi ngay sinh
$date_time = new TimeDate();
$user_date_format = $date_time->get_date_format($current_user);
$birdthday = $date_time->to_display($birthday, $user_date_format, 'Y-m-d');
$where .= " AND birthday = '" . $birdthday . "'";
}
if ($phone_mobile) {
$where .= " AND phone_mobile = '" . $phone_mobile . "'";
}
if ($identy_card) {
$where .= " AND identy_card = '" . $identy_card . "'";
}
$sql = "SELECT id, first_name, last_name, birthday, phone_mobile, identy_card, assigned_user_id FROM fits WHERE {$where}";
$result = $db->query($sql);
//display
$n = $db->getRowCount($result);
$error = '';
if ($n > 0) {
$i = 0;