diff --git a/doc/images/dolibarr_screenshot12_1920x1080.jpg b/doc/images/dolibarr_screenshot12_1920x1080.jpg
new file mode 100644
index 00000000000..72ae74cb00f
Binary files /dev/null and b/doc/images/dolibarr_screenshot12_1920x1080.jpg differ
diff --git a/htdocs/admin/pdf.php b/htdocs/admin/pdf.php
index 008e5277bc3..ec93c95b045 100644
--- a/htdocs/admin/pdf.php
+++ b/htdocs/admin/pdf.php
@@ -326,7 +326,8 @@ print '';
print '
| '.$langs->trans("PDF_USE_ALSO_LANGUAGE_CODE").' | ';
//if (! empty($conf->global->MAIN_MULTILANGS))
//{
-print $formadmin->select_language(GETPOSTISSET('PDF_USE_ALSO_LANGUAGE_CODE') ? GETPOST('PDF_USE_ALSO_LANGUAGE_CODE') : (!empty($conf->global->PDF_USE_ALSO_LANGUAGE_CODE) ? $conf->global->PDF_USE_ALSO_LANGUAGE_CODE : 0), 'PDF_USE_ALSO_LANGUAGE_CODE', 0, null, 1);
+$selected = GETPOSTISSET('PDF_USE_ALSO_LANGUAGE_CODE') ? GETPOST('PDF_USE_ALSO_LANGUAGE_CODE') : (!empty($conf->global->PDF_USE_ALSO_LANGUAGE_CODE) ? $conf->global->PDF_USE_ALSO_LANGUAGE_CODE : 0);
+print $formadmin->select_language($selected, 'PDF_USE_ALSO_LANGUAGE_CODE', 0, null, 1);
//} else {
// print ''.$langs->trans("MultiLangNotEnabled").'';
//}
diff --git a/htdocs/comm/action/card.php b/htdocs/comm/action/card.php
index e34dffd6223..fba2cf10cbc 100644
--- a/htdocs/comm/action/card.php
+++ b/htdocs/comm/action/card.php
@@ -730,8 +730,8 @@ if (empty($reshook) && GETPOST('actionmove', 'alpha') == 'mupdate')
{
$error = 0;
- $shour = dol_print_date($object->datep, "%H");
- $smin = dol_print_date($object->datep, "%M");
+ $shour = dol_print_date($object->datep, "%H", 'tzuserrel'); // We take the date visible by user $newdate is also date visible by user.
+ $smin = dol_print_date($object->datep, "%M", 'tzuserrel');
$newdate = GETPOST('newdate', 'alpha');
if (empty($newdate) || strpos($newdate, 'dayevent_') != 0)
@@ -740,7 +740,9 @@ if (empty($reshook) && GETPOST('actionmove', 'alpha') == 'mupdate')
exit;
}
- $datep = dol_mktime($shour, $smin, 0, substr($newdate, 13, 2), substr($newdate, 15, 2), substr($newdate, 9, 4));
+ $datep = dol_mktime($shour, $smin, 0, substr($newdate, 13, 2), substr($newdate, 15, 2), substr($newdate, 9, 4), 'tzuserrel');
+ //print dol_print_date($datep, 'dayhour');exit;
+
if ($datep != $object->datep)
{
if (!empty($object->datef))
diff --git a/htdocs/comm/action/class/actioncomm.class.php b/htdocs/comm/action/class/actioncomm.class.php
index c2dc7f6b2a6..0aff54a93e3 100644
--- a/htdocs/comm/action/class/actioncomm.class.php
+++ b/htdocs/comm/action/class/actioncomm.class.php
@@ -85,6 +85,11 @@ class ActionComm extends CommonObject
*/
public $type_id;
+ /**
+ * @var string Calendar of event (Type of type of event). 'system'=Default calendar, 'systemauto'=Auto calendar, 'birthdate', 'holiday', 'module'=Calendar specific to a module
+ */
+ public $type;
+
/**
* @var string Code into parent table llx_c_actioncomm (used only if option to use type is set). With default setup, should be AC_OTH_AUTO or AC_OTH.
*/
@@ -95,16 +100,16 @@ class ActionComm extends CommonObject
*/
public $type_label;
- /**
- * @var string Label into parent table llx_c_actioncomm (used only if option to use type is set)
- */
- public $type;
-
/**
* @var string Color into parent table llx_c_actioncomm (used only if option to use type is set)
*/
public $type_color;
+ /**
+ * @var string Picto for type of event (used only if option to use type is set)
+ */
+ public $type_picto;
+
/**
* @var string Free code to identify action. Ie: Agenda trigger add here AC_TRIGGERNAME ('AC_COMPANY_CREATE', 'AC_PROPAL_VALIDATE', ...)
*/
@@ -1376,7 +1381,7 @@ class ActionComm extends CommonObject
* @param int $maxlength Max number of charaters into label. If negative, use the ref as label.
* @param string $classname Force style class on a link
* @param string $option '' = Link to action, 'birthday'= Link to contact, 'holiday' = Link to leave
- * @param int $overwritepicto 1 = Overwrite picto
+ * @param int $overwritepicto 1 = Overwrite picto with this one
* @param int $notooltip 1 = Disable tooltip
* @param int $save_lastsearch_value -1 = Auto, 0 = No save of lastsearch_values when clicking, 1 = Save lastsearch_values whenclicking
* @return string Chaine avec URL
@@ -1426,8 +1431,8 @@ class ActionComm extends CommonObject
if (!empty($this->note_private))
$tooltip .= ' '.$langs->trans('Note').': '.(dol_textishtml($this->note_private) ? str_replace(array("\r", "\n"), "", $this->note_private) : str_replace(array("\r", "\n"), ' ', $this->note_private));
$linkclose = '';
- if (!empty($conf->global->AGENDA_USE_EVENT_TYPE) && $this->type_color)
- $linkclose = ' style="background-color:#'.$this->type_color.'"';
+ //if (!empty($conf->global->AGENDA_USE_EVENT_TYPE) && $this->type_color)
+ // $linkclose = ' style="background-color:#'.$this->type_color.'"';
if (empty($notooltip))
{
@@ -1453,6 +1458,7 @@ class ActionComm extends CommonObject
elseif ($option == 'holiday')
$url = DOL_URL_ROOT.'/holiday/card.php?id='.$this->id;
else $url = DOL_URL_ROOT.'/comm/action/card.php?id='.$this->id;
+
if ($option !== 'nolink')
{
// Add param to save lastsearch_values or not
@@ -1494,7 +1500,7 @@ class ActionComm extends CommonObject
}
$result .= $linkstart;
- if ($withpicto) $result .= img_object(($notooltip ? '' : $langs->trans("ShowAction").': '.$libelle), ($overwritepicto ? $overwritepicto : 'action'), ($notooltip ? 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'"' : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
+ if ($withpicto) $result .= img_object(($notooltip ? '' : $langs->trans("ShowAction").': '.$libelle), ($overwritepicto ? $overwritepicto : 'action'), (($this->type_color && $overwritepicto) ? 'style="color: #'.$this->type_color.' !important;" ' : '').($notooltip ? 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'"' : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
$result .= $libelleshort;
$result .= $linkend;
@@ -1520,21 +1526,25 @@ class ActionComm extends CommonObject
$imgpicto = '';
if (!empty($conf->global->AGENDA_USE_EVENT_TYPE))
{
+ $color = '';
+ if ($this->type_color) {
+ $color = 'style="color: #'.$this->type_color.' !important;"';
+ }
if ($this->type_picto) {
$imgpicto = img_picto('', $this->type_picto, 'class="paddingright"');
} else {
- if ($this->type_code == 'AC_RDV') $imgpicto = img_picto('', 'meeting', '', false, 0, 0, '', 'paddingright');
- elseif ($this->type_code == 'AC_TEL') $imgpicto = img_picto('', 'object_phoning', '', false, 0, 0, '', 'paddingright');
- elseif ($this->type_code == 'AC_FAX') $imgpicto = img_picto('', 'object_phoning_fax', '', false, 0, 0, '', 'paddingright');
- elseif ($this->type_code == 'AC_EMAIL' || $this->type_code == 'AC_EMAIL_IN') $imgpicto = img_picto('', 'object_email', '', false, 0, 0, '', 'paddingright');
- elseif ($this->type_code == 'AC_INT') $imgpicto = img_picto('', 'object_intervention', '', false, 0, 0, '', 'paddingright');
- elseif ($this->type_code == 'AC_OTH' && $this->code == 'TICKET_MSG') $imgpicto = img_picto('', 'object_conversation', '', false, 0, 0, '', 'paddingright');
- elseif (!preg_match('/_AUTO/', $this->type_code)) $imgpicto = img_picto('', 'user-cog', '', false, 0, 0, '', 'paddingright');
- else $imgpicto = img_picto('', 'cog', '', false, 0, 0, '', 'paddingright');
+ if ($this->type_code == 'AC_RDV') $imgpicto = img_picto('', 'meeting', $color, false, 0, 0, '', 'paddingright');
+ elseif ($this->type_code == 'AC_TEL') $imgpicto = img_picto('', 'object_phoning', $color, false, 0, 0, '', 'paddingright');
+ elseif ($this->type_code == 'AC_FAX') $imgpicto = img_picto('', 'object_phoning_fax', $color, false, 0, 0, '', 'paddingright');
+ elseif ($this->type_code == 'AC_EMAIL' || $this->type_code == 'AC_EMAIL_IN') $imgpicto = img_picto('', 'object_email', $color, false, 0, 0, '', 'paddingright');
+ elseif ($this->type_code == 'AC_INT') $imgpicto = img_picto('', 'object_intervention', $color, false, 0, 0, '', 'paddingright');
+ elseif ($this->type_code == 'AC_OTH' && $this->code == 'TICKET_MSG') $imgpicto = img_picto('', 'object_conversation', $color, false, 0, 0, '', 'paddingright');
+ elseif ($this->type != 'systemauto') $imgpicto = img_picto('', 'user-cog', $color, false, 0, 0, '', 'paddingright');
+ else $imgpicto = img_picto('', 'cog', $color, false, 0, 0, '', 'paddingright');
}
} else {
// 2 picto: 1 for auto, 1 for manual
- if (!preg_match('/_AUTO/', $this->type_code)) $imgpicto = img_picto('', 'user-cog', '', false, 0, 0, '', 'paddingright');
+ if ($this->type != 'systemauto') $imgpicto = img_picto('', 'user-cog', '', false, 0, 0, '', 'paddingright');
else $imgpicto = img_picto('', 'cog', '', false, 0, 0, '', 'paddingright');
}
return $imgpicto;
diff --git a/htdocs/comm/action/class/cactioncomm.class.php b/htdocs/comm/action/class/cactioncomm.class.php
index 3b932b2f59c..6b02c026575 100644
--- a/htdocs/comm/action/class/cactioncomm.class.php
+++ b/htdocs/comm/action/class/cactioncomm.class.php
@@ -142,9 +142,9 @@ class CActionComm
* Return list of event types: array(id=>label) or array(code=>label)
*
* @param string|int $active 1 or 0 to filter on event state active or not ('' by default = no filter)
- * @param string $idorcode 'id' or 'code'
+ * @param string $idorcode 'id' or 'code' or 'all'
* @param string $excludetype Type to exclude ('system' or 'systemauto')
- * @param int $onlyautoornot 1=Group all type AC_XXX into 1 line AC_MANUAL. 0=Keep details of type, -1=Keep details and add a combined line "All manual"
+ * @param int $onlyautoornot 1=Group all type AC_XXX into 1 line AC_MANUAL. 0=Keep details of type, -1=Keep details and add a combined line per calendar (Default, Auto, BoothConf, ...)
* @param string $morefilter Add more SQL filter
* @param int $shortlabel 1=Get short label instead of long label
* @return mixed Array of all event types if OK, <0 if KO. Key of array is id or code depending on parameter $idorcode.
@@ -157,6 +157,7 @@ class CActionComm
$repid = array();
$repcode = array();
+ $repall = array();
$sql = "SELECT id, code, libelle as label, module, type, color, picto";
$sql .= " FROM ".MAIN_DB_PREFIX."c_actioncomm";
@@ -166,7 +167,7 @@ class CActionComm
}
if (!empty($excludetype)) $sql .= " AND type <> '".$this->db->escape($excludetype)."'";
if ($morefilter) $sql .= " AND ".$morefilter;
- $sql .= " ORDER BY module, position, type";
+ $sql .= " ORDER BY type, position, module";
dol_syslog(get_class($this)."::liste_array", LOG_DEBUG);
$resql = $this->db->query($sql);
@@ -175,6 +176,7 @@ class CActionComm
$nump = $this->db->num_rows($resql);
if ($nump)
{
+ $idforallfornewmodule = 97;
$i = 0;
while ($i < $nump)
{
@@ -200,8 +202,12 @@ class CActionComm
$keyfortrans = '';
$transcode = '';
$code = $obj->code;
- if ($onlyautoornot > 0 && $code == 'AC_OTH') $code = 'AC_MANUAL';
- if ($onlyautoornot > 0 && $code == 'AC_OTH_AUTO') $code = 'AC_AUTO';
+ $typecalendar = $obj->type;
+
+ if ($onlyautoornot > 0 && $typecalendar == 'system') $code = 'AC_MANUAL';
+ elseif ($onlyautoornot > 0 && $typecalendar == 'systemauto') $code = 'AC_AUTO';
+ elseif ($onlyautoornot > 0) $code = 'AC_'.strtoupper($obj->module);
+
if ($shortlabel)
{
$keyfortrans = "Action".$code.'Short';
@@ -213,21 +219,43 @@ class CActionComm
$transcode = $langs->trans($keyfortrans);
}
$label = (($transcode != $keyfortrans) ? $transcode : $langs->trans($obj->label));
- if ($onlyautoornot == -1 && !empty($conf->global->AGENDA_USE_EVENT_TYPE) && !preg_match('/auto/i', $code))
+ if ($onlyautoornot == -1 && !empty($conf->global->AGENDA_USE_EVENT_TYPE))
{
- $label = ' '.$label;
- $repid[-99] = $langs->trans("ActionAC_MANUAL");
- $repcode['AC_NON_AUTO'] = $langs->trans("ActionAC_MANUAL");
+ if ($typecalendar == 'system') {
+ $label = ' '.$label;
+ $repid[-99] = $langs->trans("ActionAC_MANUAL");
+ $repcode['AC_NON_AUTO'] = '-- '.$langs->trans("ActionAC_MANUAL");
+ }
+ if ($typecalendar == 'systemauto') {
+ $label = ' '.$label;
+ $repid[-98] = $langs->trans("ActionAC_AUTO");
+ $repcode['AC_ALL_AUTO'] = '-- '.$langs->trans("ActionAC_AUTO");
+ }
+ if ($typecalendar == 'module') {
+ $label = ' '.$label;
+ if (!isset($repcode['AC_ALL_'.strtoupper($obj->module)])) { // If first time for this module
+ $idforallfornewmodule--;
+ }
+ $repid[$idforallfornewmodule] = $langs->trans("ActionAC_ALL_".strtoupper($obj->module));
+ $repcode['AC_ALL_'.strtoupper($obj->module)] = '-- '.$langs->trans("Module").' '.ucfirst($obj->module);
+ }
}
$repid[$obj->id] = $label;
$repcode[$obj->code] = $label;
- if ($onlyautoornot > 0 && preg_match('/^module/', $obj->type) && $obj->module) $repcode[$obj->code] .= ' ('.$langs->trans("Module").': '.$obj->module.')';
+ $repall[$obj->code] = array('id' => $label, 'label' => $label, 'type' => $typecalendar, 'color' => $obj->color, 'picto' => $obj->picto);
+ if ($onlyautoornot > 0 && preg_match('/^module/', $obj->type) && $obj->module) {
+ $repcode[$obj->code] .= ' ('.$langs->trans("Module").': '.$obj->module.')';
+ $repall[$obj->code]['label'] .= ' ('.$langs->trans("Module").': '.$obj->module.')';
+ }
}
$i++;
}
}
+
if ($idorcode == 'id') $this->liste_array = $repid;
- if ($idorcode == 'code') $this->liste_array = $repcode;
+ elseif ($idorcode == 'code') $this->liste_array = $repcode;
+ else $this->liste_array = $repall;
+
return $this->liste_array;
} else {
$this->error = $this->db->lasterror();
diff --git a/htdocs/comm/action/index.php b/htdocs/comm/action/index.php
index d5f5edbb143..ab712c89847 100644
--- a/htdocs/comm/action/index.php
+++ b/htdocs/comm/action/index.php
@@ -346,8 +346,8 @@ if ($resourceid > 0) $param .= "&search_resourceid=".urlencode($resourceid);
if ($status || GETPOSTISSET('status')) $param .= "&search_status=".urlencode($status);
if ($filter) $param .= "&search_filter=".urlencode($filter);
if ($filtert) $param .= "&search_filtert=".urlencode($filtert);
-if ($usergroup) $param .= "&search_usergroup=".urlencode($usergroup);
-if ($socid) $param .= "&search_socid=".urlencode($socid);
+if ($usergroup > 0) $param .= "&search_usergroup=".urlencode($usergroup);
+if ($socid > 0) $param .= "&search_socid=".urlencode($socid);
if ($showbirthday) $param .= "&search_showbirthday=1";
if ($pid) $param .= "&search_projectid=".urlencode($pid);
if ($type) $param .= "&search_type=".urlencode($type);
@@ -357,32 +357,32 @@ $param .= "&maxprint=".urlencode($maxprint);
// Show navigation bar
if (empty($action) || $action == 'show_month')
{
- $nav = " \n";
+ $nav = " \n";
$nav .= " ".dol_print_date(dol_mktime(0, 0, 0, $month, 1, $year), "%b %Y");
$nav .= " \n";
- $nav .= " \n";
+ $nav .= " \n";
if (empty($conf->dol_optimize_smallscreen)) {
- $nav .= " ".$langs->trans("Today")." ";
+ $nav .= " ".$langs->trans("Today")." ";
}
$picto = 'calendar';
}
if ($action == 'show_week')
{
- $nav = "trans("Previous"))."\"> \n";
+ $nav = "trans("Previous"))."\"> \n";
$nav .= " ".dol_print_date(dol_mktime(0, 0, 0, $first_month, $first_day, $first_year), "%Y").", ".$langs->trans("Week")." ".$week;
$nav .= " \n";
- $nav .= " trans("Next"))."\">\n";
+ $nav .= " trans("Next"))."\">\n";
if (empty($conf->dol_optimize_smallscreen)) {
- $nav .= " ".$langs->trans("Today")." ";
+ $nav .= " ".$langs->trans("Today")." ";
}
$picto = 'calendarweek';
}
if ($action == 'show_day')
{
- $nav = " \n";
+ $nav = " \n";
$nav .= " ".dol_print_date(dol_mktime(0, 0, 0, $month, $day, $year), "daytextshort");
$nav .= " \n";
- $nav .= " \n";
+ $nav .= " \n";
if (empty($conf->dol_optimize_smallscreen)) {
$nav .= " ".$langs->trans("Today")." ";
}
@@ -394,6 +394,7 @@ $nav .= $form->selectDate($dateselect, 'dateselect', 0, 0, 1, '', 1, 0);
$nav .= '';
// Must be after the nav definition
+$paramnodate = $param;
$param .= '&year='.$year.'&month='.$month.($day ? '&day='.$day : '');
//print 'x'.$param;
@@ -410,6 +411,7 @@ if ($action == 'show_pertype') $tabactive = 'cardpertype';
*/
$paramnoaction = preg_replace('/action=[a-z_]+/', '', $param);
+$paramnoactionodate = preg_replace('/action=[a-z_]+/', '', $paramnodate);
$head = calendars_prepare_head($paramnoaction);
@@ -422,31 +424,31 @@ print '';
//print dol_get_fiche_end();
$viewmode = '';
-$viewmode .= '';
+$viewmode .= '';
//$viewmode .= '';
$viewmode .= img_picto($langs->trans("List"), 'object_list-alt', 'class="pictoactionview block"');
//$viewmode .= '';
$viewmode .= ''.$langs->trans("ViewList").'';
-$viewmode .= '';
+$viewmode .= '';
//$viewmode .= '';
$viewmode .= img_picto($langs->trans("ViewCal"), 'object_calendar', 'class="pictoactionview block"');
//$viewmode .= '';
$viewmode .= ''.$langs->trans("ViewCal").'';
-$viewmode .= '';
+$viewmode .= '';
//$viewmode .= '';
$viewmode .= img_picto($langs->trans("ViewWeek"), 'object_calendarweek', 'class="pictoactionview block"');
//$viewmode .= '';
$viewmode .= ''.$langs->trans("ViewWeek").'';
-$viewmode .= '';
+$viewmode .= '';
//$viewmode .= '';
$viewmode .= img_picto($langs->trans("ViewDay"), 'object_calendarday', 'class="pictoactionview block"');
//$viewmode .= '';
$viewmode .= ''.$langs->trans("ViewDay").'';
-$viewmode .= '';
+$viewmode .= '';
//$viewmode .= '';
$viewmode .= img_picto($langs->trans("ViewPerUser"), 'object_calendarperuser', 'class="pictoactionview block"');
//$viewmode .= '';
@@ -541,6 +543,8 @@ if (!empty($conf->use_javascript_ajax)) // If javascript on
{
$s = $hookmanager->resPrint;
}
+
+ $s .= "\n".''."\n";
} else // If javascript off
{
$newparam = $param; // newparam is for birthday links
@@ -554,9 +558,12 @@ if (!empty($conf->use_javascript_ajax)) // If javascript on
$link .= '';
}
+
// Load events from database into $eventarray
$eventarray = array();
+
+// DEFAULT CALENDAR + AUTOEVENT CALENDAR + CONFERENCEBOOTH CALENDAR
$sql = 'SELECT ';
if ($usergroup > 0) $sql .= " DISTINCT";
$sql .= ' a.id, a.label,';
@@ -567,7 +574,7 @@ $sql .= ' a.fk_user_author,a.fk_user_action,';
$sql .= ' a.transparency, a.priority, a.fulldayevent, a.location,';
$sql .= ' a.fk_soc, a.fk_contact, a.fk_project,';
$sql .= ' a.fk_element, a.elementtype,';
-$sql .= ' ca.code as type_code, ca.libelle as type_label, ca.color as type_color';
+$sql .= ' ca.code as type_code, ca.libelle as type_label, ca.color as type_color, ca.type as type_type, ca.picto as type_picto';
$sql .= ' FROM '.MAIN_DB_PREFIX.'c_actioncomm as ca, '.MAIN_DB_PREFIX."actioncomm as a";
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON a.fk_soc = sc.fk_soc";
// We must filter on resource table
@@ -685,13 +692,17 @@ if ($resql)
$event->type_code = $obj->type_code;
$event->type_label = $obj->type_label;
$event->type_color = $obj->type_color;
+ $event->type = $obj->type_type;
+ $event->type_picto = $obj->type_picto;
$event->libelle = $obj->label; // deprecated
$event->label = $obj->label;
$event->percentage = $obj->percent;
+
$event->authorid = $obj->fk_user_author; // user id of creator
$event->userownerid = $obj->fk_user_action; // user id of owner
$event->fetch_userassigned(); // This load $event->userassigned
+
$event->priority = $obj->priority;
$event->fulldayevent = $obj->fulldayevent;
$event->location = $obj->location;
@@ -752,6 +763,7 @@ if ($resql)
dol_print_error($db);
}
+// BIRTHDATES CALENDAR
// Complete $eventarray with birthdates
if ($showbirthday)
{
@@ -788,7 +800,13 @@ if ($showbirthday)
$datearray = dol_getdate($datebirth, true);
$event->datep = dol_mktime(0, 0, 0, $datearray['mon'], $datearray['mday'], $year, true); // For full day events, date are also GMT but they wont but converted during output
$event->datef = $event->datep;
+
$event->type_code = 'BIRTHDAY';
+ $event->type_label = '';
+ $event->type_color = '';
+ $event->type = 'birthdate';
+ $event->type_picto = 'birthdate';
+
$event->label = $langs->trans("Birthday").' '.dolGetFirstLastname($obj->firstname, $obj->lastname);
$event->percentage = 100;
$event->fulldayevent = 1;
@@ -817,8 +835,9 @@ if ($showbirthday)
}
}
-if ($conf->global->AGENDA_SHOW_HOLIDAYS)
-{
+// HOLIDAYS CALENDAR
+//if ($conf->global->AGENDA_SHOW_HOLIDAYS)
+//{
$sql = "SELECT u.rowid as uid, u.lastname, u.firstname, u.statut, x.rowid, x.date_debut as date_start, x.date_fin as date_end, x.halfday, x.statut as status";
$sql .= " FROM ".MAIN_DB_PREFIX."holiday as x, ".MAIN_DB_PREFIX."user as u";
$sql .= " WHERE u.rowid = x.fk_user";
@@ -856,7 +875,12 @@ if ($conf->global->AGENDA_SHOW_HOLIDAYS)
$event->id = $obj->rowid;
$event->ref = $event->id;
- $event->type_code = 'HOLIDAY';
+ $event->type_code = 'HOLIDAY';
+ $event->type_label = '';
+ $event->type_color = '';
+ $event->type = 'holiday';
+ $event->type_picto = 'holiday';
+
$event->datep = dol_mktime(0, 0, 0, $dateStartArray['mon'], $dateStartArray['mday'], $dateStartArray['year'], true);
$event->datef = dol_mktime(0, 0, 0, $dateEndArray['mon'], $dateEndArray['mday'], $dateEndArray['year'], true);
$event->date_start_in_calendar = $event->datep;
@@ -898,8 +922,9 @@ if ($conf->global->AGENDA_SHOW_HOLIDAYS)
$i++;
}
}
-}
+//}
+// EXTERNAL CALENDAR
// Complete $eventarray with external import Ical
if (count($listofextcals))
{
@@ -1088,9 +1113,12 @@ if (count($listofextcals))
$event->userassigned[$userId] = $userId;
$event->percentage = -1;
}
- else {
- $event->type_code = "ICALEVENT";
- }
+
+ $event->type_code = "ICALEVENT";
+ $event->type_label = $namecal;
+ $event->type_color = $colorcal;
+ $event->type = 'icalevent';
+ $event->type_picto = 'rss';
$event->icalname = $namecal;
$event->icalcolor = $colorcal;
@@ -1205,9 +1233,11 @@ if (is_readable($color_file))
}
if (!is_array($theme_datacolor)) $theme_datacolor = array(array(120, 130, 150), array(200, 160, 180), array(190, 190, 220));
+$massactionbutton ='';
print_barre_liste($langs->trans("Agenda"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, -1, 'object_action', 0, $nav.''.$newcardbutton, '', $limit, 1, 0, 1, $viewmode);
+// Show div with list of calendars
print $s;
@@ -1343,14 +1373,14 @@ if (empty($action) || $action == 'show_month') // View by month
for ($iter_day = 0; $iter_day < 7; $iter_day++) {
// Show days of the current week
- $curtime = dol_time_plus_duree($firstdaytoshow, $iter_day, 'd');
- $tmparray = dol_getdate($curtime, true);
- $tmpday = $tmparray['mday'];
- $tmpmonth = $tmparray['mon'];
- $tmpyear = $tmparray['year'];
+ $curtime = dol_time_plus_duree($firstdaytoshow, $iter_day, 'd'); // $firstdaytoshow is in timezone of server
+ $tmpday = dol_print_date($curtime, '%d', 'tzuserrel');
+ $tmpmonth = dol_print_date($curtime, '%m', 'tzuserrel');
+ $tmpyear = dol_print_date($curtime, '%Y', 'tzuserrel');
$style = 'cal_current_month';
if ($iter_day == 6) $style .= ' cal_other_month_right';
+
$today = 0;
$todayarray = dol_getdate($now, 'fast');
if ($todayarray['mday'] == $tmpday && $todayarray['mon'] == $tmpmonth && $todayarray['year'] == $tmpyear) $today = 1;
@@ -1486,6 +1516,10 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
global $theme_datacolor;
global $cachethirdparties, $cachecontacts, $cacheusers, $colorindexused;
+ if ($conf->use_javascript_ajax) { // Enable the "Show more button..."
+ $conf->global->MAIN_JS_SWITCH_AGENDA = 1;
+ }
+
$dateint = sprintf("%04d", $year).sprintf("%02d", $month).sprintf("%02d", $day);
print "\n";
@@ -1501,11 +1535,11 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
}
// Line with title of day
- print ''."\n";
+ print ' '."\n";
if ($nonew <= 0)
{
- print ' ';
+ print ' ';
print ' ';
if ($showinfo) print dol_print_date($curtime, 'daytextshort');
else print dol_print_date($curtime, '%d');
@@ -1617,7 +1651,7 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
// Define color
$color = sprintf("%02x%02x%02x", $theme_datacolor[$colorindex][0], $theme_datacolor[$colorindex][1], $theme_datacolor[$colorindex][2]);
}
- $cssclass = $cssclass.' '.$cssclass.'_day_'.$ymd;
+ $cssclass = $cssclass.' eventday_'.$ymd;
// Defined style to disable drag and drop feature
if ($event->type_code == 'AC_OTH_AUTO')
@@ -1630,7 +1664,7 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
$tmpyearend = date('Y', $event->date_end_in_calendar);
$tmpmonthend = date('m', $event->date_end_in_calendar);
$tmpdayend = date('d', $event->date_end_in_calendar);
- if ($tmpyearend == $annee && $tmpmonthend == $mois && $tmpdayend == $jour)
+ if ($tmpyearend != $annee || $tmpmonthend != $mois || $tmpdayend != $jour)
{
$cssclass .= " unmovable";
}
@@ -1648,10 +1682,17 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
if ($action == 'show_day') { $h = 'height: 100%; '; $nowrapontd = 0; }
if ($action == 'show_week') { $h = 'height: 100%; '; $nowrapontd = 0; }
- // Show rect of event
+ // Show event box
print "\n";
print ''."\n";
- print '= $maxprint) {
+ $morecss = 'showifmore';
+ }
+ if ($event->type == 'holiday' && !GETPOST('check_birthday')) {
+ $morecss = 'hidden';
+ }
+ print ' type_code == 'BIRTHDAY') // It's a birthday
- {
+ if ($event->type_code == 'BIRTHDAY') { // It's birthday calendar
print $event->getNomUrl(1, $maxnbofchar, 'cal_event', 'birthday', 'contact');
- } elseif ($event->type_code == 'HOLIDAY')
- {
+ } elseif ($event->type_code == 'HOLIDAY') { // It's holiday calendar
print $event->getNomUrl(1, $maxnbofchar, 'cal_event', 'holiday', 'user');
- } elseif ($event->type_code != 'BIRTHDAY' && $event->type_code != 'HOLIDAY')
- {
+ } else { // Other calendar
// Picto
if (empty($event->fulldayevent))
{
@@ -1752,7 +1790,8 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
$event->label = $titletoshow;
$event->libelle = $titletoshow;
// Note: List of users are inside $event->userassigned. Link may be clickable depending on permissions of user.
- $titletoshow = $event->getNomUrl(0, $maxnbofchar, 'cal_event cal_event_title', '', 0, 0);
+ $titletoshow = (($event->type_picto || $event->type_code) ? $event->getTypePicto() : '');
+ $titletoshow .= $event->getNomUrl(0, $maxnbofchar, 'cal_event cal_event_title', '', 0, 0);
$event->label = $savlabel;
$event->libelle = $savlabel;
}
@@ -1861,17 +1900,21 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
if (!empty($conf->global->MAIN_JS_SWITCH_AGENDA) && $i > $maxprint && $maxprint)
{
- print ' '.img_picto("all", "1downarrow_selected.png").' +'.$langs->trans("More").'... ';
+ print ' '.img_picto("All", "angle-double-down", 'class="warning"').' +'.($i - $maxprint).' ';
//print ' +'.(count($eventarray[$daykey])-$maxprint);
print ' |