0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-12-22 12:28:31 +00:00
salesagility_SuiteCRM/include/generic/SugarWidgets/SugarWidgetFielddatetime.php
2023-07-18 15:53:09 +01:00

804 lines
29 KiB
PHP
Executable File

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
class SugarWidgetFieldDateTime extends SugarWidgetReportField
{
public $reporter;
public $assigned_user=null;
public function __construct($layout_manager)
{
parent::__construct($layout_manager);
}
// get the reporter attribute
// deprecated, now called in the constructor
/**
* @deprecated
*/
public function getReporter()
{
}
// get the assigned user of the report
public function getAssignedUser()
{
$json_obj = getJSONobj();
$report_def_str = $json_obj->decode($this->reporter->report_def_str);
if (empty($report_def_str['assigned_user_id'])) {
return null;
}
$this->assigned_user = BeanFactory::newBean('Users');
$this->assigned_user->retrieve($report_def_str['assigned_user_id']);
return $this->assigned_user;
}
public function queryFilterOn($layout_def)
{
global $timedate;
$begin = $layout_def['input_name0'];
$hasTime = $this->hasTime($begin);
$date = $timedate->fromString($begin);
if (!$hasTime) {
return $this->queryDay(
$layout_def,
$date
);
}
return $this->queryDateOp(
$this->_get_column_select($layout_def),
$date,
'=',
"datetime"
);
}
/**
* expandDate
*
* This function helps to convert a date only value to have a time value as well. It first checks
* to see if a time value exists. If a time value exists, the function just returns the date value
* passed in. If the date value is the 'Today' macro then some special processing occurs as well.
* Finally the time portion is applied depending on whether or not this date should be for the end
* in which case the 23:59:59 time value is applied otherwise 00:00:00 is used.
*
* @param $date String value of the date value to expand
* @param bool $end Boolean value indicating whether or not this is for an end time period or not
* @return $date TimeDate object with time value applied
*/
protected function expandDate($date, $end = false)
{
global $timedate;
if ($this->hasTime($date)) {
return $date;
}
//C.L. Bug 48616 - If the $date is set to the Today macro, then adjust accordingly
if (strtolower($date) == 'today') {
$startEnd = $timedate->getDayStartEndGMT($timedate->getNow(true));
return $end ? $startEnd['end'] : $startEnd['start'];
}
$parsed = $timedate->fromDbDate($date);
$date = $timedate->tzUser(new SugarDateTime());
$date->setDate($parsed->year, $parsed->month, $parsed->day);
if ($end) {
return $date->setTime(23, 59, 59);
} else {
return $date->setTime(0, 0, 0);
}
}
public function queryFilterBefore($layout_def)
{
$begin = $this->expandDate($layout_def['input_name0']);
return $this->queryDateOp($this->_get_column_select($layout_def), $begin, '<', "datetime");
}
public function queryFilterAfter($layout_def)
{
$begin = $this->expandDate($layout_def['input_name0'], true);
return $this->queryDateOp($this->_get_column_select($layout_def), $begin, '>', "datetime");
}
public function queryFilterBetween_Dates($layout_def)
{
$begin = $this->expandDate($layout_def['input_name0']);
$end = $this->expandDate($layout_def['input_name1'], true);
$column = $this->_get_column_select($layout_def);
return "(".$this->queryDateOp($column, $begin, ">=", "datetime")." AND ".
$this->queryDateOp($column, $end, "<=", "datetime").")\n";
}
public function queryFilterNot_Equals_str($layout_def)
{
global $timedate;
$column = $this->_get_column_select($layout_def);
$begin = $layout_def['input_name0'];
$hasTime = $this->hasTime($begin);
if (!$hasTime) {
$end = $this->expandDate($begin, true);
$begin = $this->expandDate($begin);
$cond = $this->queryDateOp($column, $begin, "<", "datetime")." OR ".
$this->queryDateOp($column, $end, ">", "datetime");
} else {
$cond = $this->queryDateOp($column, $begin, "!=", "datetime");
}
return "($column IS NULL OR $cond)";
}
/**
* Get assigned or logged in user's current date and time value.
* @param boolean $timestamp Format of return value, if set to true, return unix like timestamp , else a formatted date.
*/
public function get_users_current_date_time($timestamp=false)
{
global $current_user;
global $timedate;
$begin = TimeDate::getInstance()->nowDb();
//kbrill bug #13884
//$begin = $timedate->to_display_date_time($begin,true,true,$this->assigned_user);
$begin = $timedate->handle_offset($begin, $timedate->get_db_date_time_format(), false, $this->assigned_user);
if (!$timestamp) {
return $begin;
} else {
$begin_parts = explode(' ', $begin);
$date_parts=explode('-', $begin_parts[0]);
$time_parts=explode(':', $begin_parts[1]);
$curr_timestamp=mktime($time_parts[0], $time_parts[1], 0, $date_parts[1], $date_parts[2], $date_parts[0]);
return $curr_timestamp;
}
}
/**
* Get specified date and time for a particalur day, in current user's timezone.
* @param int $days Adjust date by this number of days, negative values are valid.
* @param time string falg for desired time value, start: minimum time, end: maximum time, default: current time
*/
public function get_db_date($days, $time)
{
global $timedate;
$begin = date($GLOBALS['timedate']->get_db_date_time_format(), time()+(86400 * $days)); //gmt date with day adjustment applied.
//kbrill bug #13884
//$begin = $timedate->to_display_date_time($begin,true,true,$this->assigned_user);
$begin = $timedate->handle_offset($begin, $timedate->get_db_date_time_format(), false, $this->assigned_user);
if ($time=='start') {
$begin_parts = explode(' ', $begin);
$be = $begin_parts[0] . ' 00:00:00';
} else {
if ($time=='end') {
$begin_parts = explode(' ', $begin);
$be = $begin_parts[0] . ' 23:59:59';
} else {
$be=$begin;
}
}
//convert date to db format without converting to GMT.
$begin = $timedate->handle_offset($be, $timedate->get_db_date_time_format(), false, $this->assigned_user);
return $begin;
}
/**
* Get filter string for a date field.
* @param array layout_def field def for field being filtered
* @param string $begin start date value (in DB format)
* @param string $end End date value (in DB format)
*/
public function get_start_end_date_filter(& $layout_def, $begin, $end)
{
if (isset($layout_def['rel_field'])) {
$field_name = $this->reporter->db->convert(
$this->reporter->db->convert($this->_get_column_select($layout_def), 'date_format', '%Y-%m-%d'),
"CONCAT",
array("' '", $this->reporter->db->convert($layout_def['rel_field'], 'time_format'))
);
} else {
$field_name = $this->_get_column_select($layout_def);
}
return $field_name.">=".$this->reporter->db->quoted($begin)." AND ".$field_name."<=".$this->reporter->db->quoted($end)."\n";
}
/**
* Create query for binary operation of field of certain type
* Produces query like:
* arg1 op to_date(arg2), e.g.:
* date_closed < '2009-12-01'
* @param string $arg1 1st arg - column name
* @param string|DateTime $arg2 2nd arg - value to be converted
* @param string $op
* @param string $type
*/
protected function queryDateOp($arg1, $arg2, $op, $type)
{
global $timedate;
if ($arg2 instanceof DateTime) {
$arg2 = $timedate->asDbType($arg2, $type);
}
return "$arg1 $op ".$this->reporter->db->convert($this->reporter->db->quoted($arg2), $type)."\n";
}
/**
* Return current date in required user's TZ
* @return SugarDateTime
*/
protected function now()
{
global $timedate;
return $timedate->tzUser($timedate->getNow(), $this->getAssignedUser());
}
/**
* Create query from the beginning to the end of certain day
* @param array $layout_def
* @param SugarDateTime $day
*/
protected function queryDay($layout_def, SugarDateTime $day)
{
$begin = $day->get_day_begin();
$end = $day->get_day_end();
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
public function queryFilterTP_yesterday($layout_def)
{
global $timedate;
return $this->queryDay($layout_def, $this->now()->get("-1 day"));
}
public function queryFilterTP_today($layout_def)
{
global $timedate;
return $this->queryDay($layout_def, $this->now());
}
public function queryFilterTP_tomorrow(& $layout_def)
{
global $timedate;
return $this->queryDay($layout_def, $this->now()->get("+1 day"));
}
public function queryFilterTP_last_7_days($layout_def)
{
global $timedate;
$begin = $this->now()->get("-6 days")->get_day_begin();
$end = $this->now()->get_day_end();
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
public function queryFilterTP_next_7_days($layout_def)
{
global $timedate;
$begin = $this->now()->get_day_begin();
$end = $this->now()->get("+6 days")->get_day_end();
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
/**
* Create query from the beginning to the end of certain month
* @param array $layout_def
* @param SugarDateTime $month
*/
protected function queryMonth($layout_def, $month)
{
$begin = $month->setTime(0, 0, 0);
$end = clone($begin);
$end->setDate($begin->year, $begin->month, $begin->days_in_month)->setTime(23, 59, 59);
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
public function queryFilterTP_last_month($layout_def)
{
global $timedate;
$month = $this->now();
return $this->queryMonth($layout_def, $month->setDate($month->year, $month->month-1, 1));
}
public function queryFilterTP_this_month($layout_def)
{
global $timedate;
//Bug 62414 - take timezone into account when determining current month
$now = $this->now();
$timezoneOffset = $timedate->getUserUTCOffset();
$timezoneOffset = "$timezoneOffset minutes";
$now->modify($timezoneOffset);
return $this->queryMonth($layout_def, $now->get_day_by_index_this_month(0));
}
public function queryFilterTP_next_month($layout_def)
{
global $timedate;
$month = $this->now();
return $this->queryMonth($layout_def, $month->setDate($month->year, $month->month+1, 1));
}
public function queryFilterTP_last_30_days($layout_def)
{
global $timedate;
$begin = $this->now()->get("-29 days")->get_day_begin();
$end = $this->now()->get_day_end();
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
public function queryFilterTP_next_30_days($layout_def)
{
global $timedate;
$begin = $this->now()->get_day_begin();
$end = $this->now()->get("+29 days")->get_day_end();
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
/**
* Return the between WHERE query for Quarter filter
*
* Find quarter for given date, modify the start/end with $modifyFilter parameter
*
* @param $layout_def - Filter layout_def
* @param string $modifyFilter - Modification to start/end date, used to select previous/next quarter
* @param string $date - Date for which to find the quarter filter, if not set uses current date
* @return string - BETWEEN WHERE query for quarter filter
*/
protected function getQuarterFilter($layout_def, $modifyFilter, $date = '')
{
$timedate = TimeDate::getInstance();
// See if date is set, if not, use current date
if (empty($date)) {
$begin = $timedate->getNow(true);
} else {
$begin = $timedate->fromString($date);
}
$begin->setDate(
$begin->year,
floor(($begin->month - 1) / 3) * 3 + 1, // Find starting month of quarter
1
)->setTime(0, 0);
$end = $begin->get("+3 month")->setTime(23, 59, 59)->get("-1 day");
// Modify begin/end if filter is set
if (!empty($modifyFilter)) {
$begin->modify($modifyFilter);
$end->modify($modifyFilter);
}
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
/**
* Returns part of query for select
*
* @param array $layout_def for field
* @return string part of select query with last quarter only
*/
public function queryFilterTP_last_quarter($layout_def)
{
return $this->getQuarterFilter($layout_def, '-3 month');
}
/**
* Returns part of query for select
*
* @param array $layout_def for field
* @return string part of select query with this quarter only
*/
public function queryFilterTP_this_quarter($layout_def)
{
return $this->getQuarterFilter($layout_def, '');
}
/**
* Returns part of query for select
*
* @param array $layout_def for field
* @return string part of select query with next quarter only
*/
public function queryFilterTP_next_quarter($layout_def)
{
return $this->getQuarterFilter($layout_def, '+3 month');
}
public function queryFilterTP_last_year($layout_def)
{
global $timedate;
$begin = $this->now();
$begin->setDate($begin->year-1, 1, 1)->setTime(0, 0);
$end = clone $begin;
$end->setDate($end->year, 12, 31)->setTime(23, 59, 59);
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
public function queryFilterTP_this_year($layout_def)
{
global $timedate;
$begin = $this->now();
$begin->setDate($begin->year, 1, 1)->setTime(0, 0);
$end = clone $begin;
$end->setDate($end->year, 12, 31)->setTime(23, 59, 59);
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
public function queryFilterTP_next_year(& $layout_def)
{
global $timedate;
$begin = $this->now();
$begin->setDate($begin->year+1, 1, 1)->setTime(0, 0);
$end = clone $begin;
$end->setDate($end->year, 12, 31)->setTime(23, 59, 59);
return $this->get_start_end_date_filter($layout_def, $begin->asDb(), $end->asDb());
}
public function queryGroupBy($layout_def)
{
// i guess qualifier and column_function are the same..
if (!empty($layout_def['qualifier'])) {
$func_name = 'queryGroupBy'.$layout_def['qualifier'];
if (method_exists($this, $func_name)) {
return $this-> $func_name($layout_def)." \n";
}
}
return parent :: queryGroupBy($layout_def)." \n";
}
public function queryOrderBy($layout_def)
{
if (!empty($layout_def['qualifier'])) {
$func_name ='queryOrderBy'.$layout_def['qualifier'];
if (method_exists($this, $func_name)) {
return $this-> $func_name($layout_def)."\n";
}
}
$order_by = parent :: queryOrderBy($layout_def)."\n";
return $order_by;
}
public function displayListPlain($layout_def)
{
global $timedate;
$content = parent:: displayListPlain($layout_def);
// awu: this if condition happens only in Reports where group by month comes back as YYYY-mm format
if (count(explode('-', $content)) == 2) {
return $content;
// if date field
} elseif (substr_count((string) $layout_def['type'], 'date') > 0) {
// if date time field
if (substr_count((string) $layout_def['type'], 'time') > 0 && $this->get_time_part($content)!= false) {
$td = $timedate->to_display_date_time($content);
return $td;
} else {// if date only field
$td = $timedate->to_display_date($content, false); // Avoid PHP notice of returning by reference.
return $td;
}
}
}
public function get_time_part($date_time_value)
{
global $timedate;
$date_parts=$timedate->split_date_time($date_time_value);
if ((is_countable($date_parts) ? count($date_parts) : 0) > 1) {
return $date_parts[1];
} else {
return false;
}
}
public function displayList(&$layout_def)
{
global $timedate;
// i guess qualifier and column_function are the same..
if (!empty($layout_def['column_function'])) {
$func_name = 'displayList'.$layout_def['column_function'];
if (method_exists($this, $func_name)) {
return $this-> $func_name($layout_def);
}
}
$content = parent :: displayListPlain($layout_def);
return $timedate->to_display_date_time($content);
}
public function querySelect(& $layout_def)
{
// i guess qualifier and column_function are the same..
if (!empty($layout_def['column_function'])) {
$func_name = 'querySelect'.$layout_def['column_function'];
if (method_exists($this, $func_name)) {
return $this-> $func_name($layout_def)." \n";
}
}
return parent :: querySelect($layout_def)." \n";
}
public function & displayListday(& $layout_def)
{
$value = parent:: displayListPlain($layout_def);
return $value;
}
public function & displayListyear(& $layout_def)
{
global $app_list_strings;
$value = parent:: displayListPlain($layout_def);
return $value;
}
public function displayListmonth($layout_def)
{
global $app_list_strings;
$display = '';
$match = array();
if (preg_match('/(\d{4})-(\d\d)/', (string) $this->displayListPlain($layout_def), $match)) {
$match[2] = preg_replace('/^0/', '', $match[2]);
$display = $app_list_strings['dom_cal_month_long'][$match[2]]." {$match[1]}";
}
return $display;
}
/**
* Returns part of query for select
*
* @param array $layout_def for field
* @return string part of select query with year & month only
*/
public function querySelectmonth($layout_def)
{
$return = $this->_get_column_select($layout_def);
if ($layout_def['type'] == 'datetime') {
$return = $this->reporter->db->convert($return, 'add_tz_offset');
}
return $this->reporter->db->convert($return, "date_format", array('%Y-%m')) . ' ' . $this->_get_column_alias($layout_def) . "\n";
}
/**
* Returns part of query for group by
*
* @param array $layout_def for field
* @return string part of group by query with year & month only
*/
public function queryGroupByMonth($layout_def)
{
$return = $this->_get_column_select($layout_def);
if ($layout_def['type'] == 'datetime') {
$return = $this->reporter->db->convert($return, 'add_tz_offset');
}
return $this->reporter->db->convert($return, "date_format", array('%Y-%m')) . "\n";
}
/**
* For oracle we have to return order by string like group by string instead of return field alias
*
* @param array $layout_def definition of field
* @return string order by string for field
*/
public function queryOrderByMonth($layout_def)
{
$return = $this->_get_column_select($layout_def);
if ($layout_def['type'] == 'datetime') {
$return = $this->reporter->db->convert($return, 'add_tz_offset');
}
$orderBy = $this->reporter->db->convert($return, "date_format", array('%Y-%m'));
if (empty($layout_def['sort_dir']) || $layout_def['sort_dir'] == 'a') {
return $orderBy . " ASC\n";
} else {
return $orderBy . " DESC\n";
}
}
/**
* Returns part of query for select
*
* @param array $layout_def for field
* @return string part of select query with year & month & day
*/
public function querySelectday($layout_def)
{
$return = $this->_get_column_select($layout_def);
if ($layout_def['type'] == 'datetime') {
$return = $this->reporter->db->convert($return, 'add_tz_offset');
}
return $this->reporter->db->convert($return, "date_format", array('%Y-%m-%d')) . ' ' . $this->_get_column_alias($layout_def) . "\n";
}
/**
* Returns part of query for group by
*
* @param array $layout_def for field
* @return string part of group by query with year & month & day
*/
public function queryGroupByDay($layout_def)
{
$return = $this->_get_column_select($layout_def);
if ($layout_def['type'] == 'datetime') {
$return = $this->reporter->db->convert($return, 'add_tz_offset');
}
return $this->reporter->db->convert($return, "date_format", array('%Y-%m-%d')) . "\n";
}
/**
* Returns part of query for select
*
* @param array $layout_def for field
* @return string part of select query with year only
*/
public function querySelectyear($layout_def)
{
$return = $this->_get_column_select($layout_def);
if ($layout_def['type'] == 'datetime') {
$return = $this->reporter->db->convert($return, 'add_tz_offset');
}
return $this->reporter->db->convert($return, "date_format", array('%Y')) . ' ' . $this->_get_column_alias($layout_def) . "\n";
}
/**
* Returns part of query for group by
*
* @param array $layout_def for field
* @return string part of group by query with year only
*/
public function queryGroupByYear($layout_def)
{
$return = $this->_get_column_select($layout_def);
if ($layout_def['type'] == 'datetime') {
$return = $this->reporter->db->convert($return, 'add_tz_offset');
}
return $this->reporter->db->convert($return, "date_format", array('%Y')) . "\n";
}
public function querySelectquarter($layout_def)
{
$column = $this->_get_column_select($layout_def);
return $this->reporter->db->convert(
$this->reporter->db->convert($column, "date_format", array('%Y')),
'CONCAT',
array("'-'", $this->reporter->db->convert($column, "quarter"))
)
." ".$this->_get_column_alias($layout_def)."\n";
}
public function displayListquarter(& $layout_def)
{
$match = array();
if (preg_match('/(\d{4})-(\d)/', (string) $this->displayListPlain($layout_def), $match)) {
return "Q".$match[2]." ".$match[1];
}
return '';
}
public function queryGroupByQuarter($layout_def)
{
$this->getReporter();
$column = $this->_get_column_select($layout_def);
return $this->reporter->db->convert(
$this->reporter->db->convert($column, "date_format", array('%Y')),
'CONCAT',
array("'-'", $this->reporter->db->convert($column, "quarter"))
);
}
/**
* For oracle we have to return order by string like group by string instead of return field alias
*
* @param array $layout_def definition of field
* @return string order by string for field
*/
public function queryOrderByQuarter($layout_def)
{
$column = $this->_get_column_select($layout_def);
$orderBy = $this->reporter->db->convert(
$this->reporter->db->convert($column, "date_format", array('%Y')),
'CONCAT',
array("'-'", $this->reporter->db->convert($column, "quarter"))
);
if (empty($layout_def['sort_dir']) || $layout_def['sort_dir'] == 'a') {
return $orderBy . " ASC\n";
} else {
return $orderBy . " DESC\n";
}
}
public function displayInput($layout_def)
{
global $timedate, $current_language, $app_strings;
$home_mod_strings = return_module_language($current_language, 'Home');
$filterTypes = array(' ' => $app_strings['LBL_NONE'],
'TP_today' => $home_mod_strings['LBL_TODAY'],
'TP_yesterday' => $home_mod_strings['LBL_YESTERDAY'],
'TP_tomorrow' => $home_mod_strings['LBL_TOMORROW'],
'TP_this_month' => $home_mod_strings['LBL_THIS_MONTH'],
'TP_this_year' => $home_mod_strings['LBL_THIS_YEAR'],
'TP_last_30_days' => $home_mod_strings['LBL_LAST_30_DAYS'],
'TP_last_7_days' => $home_mod_strings['LBL_LAST_7_DAYS'],
'TP_last_month' => $home_mod_strings['LBL_LAST_MONTH'],
'TP_last_year' => $home_mod_strings['LBL_LAST_YEAR'],
'TP_next_30_days' => $home_mod_strings['LBL_NEXT_30_DAYS'],
'TP_next_7_days' => $home_mod_strings['LBL_NEXT_7_DAYS'],
'TP_next_month' => $home_mod_strings['LBL_NEXT_MONTH'],
'TP_next_year' => $home_mod_strings['LBL_NEXT_YEAR'],
);
$cal_dateformat = $timedate->get_cal_date_format();
$str = "<select name='type_{$layout_def['name']}'>";
$str .= get_select_options_with_id($filterTypes, (empty($layout_def['input_name0']) ? '' : $layout_def['input_name0']));
// foreach($filterTypes as $value => $label) {
// $str .= '<option value="' . $value . '">' . $label. '</option>';
// }
$str .= "</select>";
return $str;
}
/**
* @param $date
* @return bool false if the date is a only a date, true if the date includes time.
*/
protected function hasTime($date)
{
return strlen(trim($date)) < 11 ? false : true;
}
}