49if (!$res && !empty($_SERVER[
"CONTEXT_DOCUMENT_ROOT"])) {
50 $res = @include str_replace(
"..",
"", $_SERVER[
"CONTEXT_DOCUMENT_ROOT"]).
"/main.inc.php";
53$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME'];
54$tmp2 = realpath(__FILE__);
56$j = strlen($tmp2) - 1;
57while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
61if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/main.inc.php")) {
62 $res = @include substr($tmp, 0, ($i + 1)).
"/main.inc.php";
64if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php")) {
65 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php";
68if (!$res && file_exists(
"../main.inc.php")) {
69 $res = @include
"../main.inc.php";
71if (!$res && file_exists(
"../../main.inc.php")) {
72 $res = @include
"../../main.inc.php";
74if (!$res && file_exists(
"../../../main.inc.php")) {
75 $res = @include
"../../../main.inc.php";
78 die(
"Include of main fails");
88include_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
89include_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
90include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
95$langs->loadLangs(array(
"mymodule@mymodule",
"other"));
100$action =
GETPOST(
'action',
'aZ09');
103$backtopage =
GETPOST(
'backtopage',
'alpha');
106 $actioncode =
GETPOST(
'actioncode',
'array:alpha', 3);
107 if (!count($actioncode)) {
113$search_rowid =
GETPOST(
'search_rowid');
114$search_agenda_label =
GETPOST(
'search_agenda_label');
115$search_complete =
GETPOST(
'search_complete');
116$search_filtert =
GETPOSTINT(
'search_filtert');
117$search_dateevent_start =
GETPOSTDATE(
'dateevent_start');
118$search_dateevent_end =
GETPOSTDATE(
'dateevent_end');
121$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
122$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
124if (empty($page) || $page == -1) {
128$offset = $limit * $page;
129$pageprev = $page - 1;
130$pagenext = $page + 1;
132 $sortfield =
'a.datep,a.id';
135 $sortorder =
'DESC,DESC';
141$diroutputmassaction =
$conf->mymodule->dir_output.
'/temp/massgeneration/'.$user->id;
142$hookmanager->initHooks(array(
$object->element.
'agenda',
'globalcard'));
144$extrafields->fetch_name_optionals_label(
$object->table_element);
147include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
148if ($id > 0 || !empty($ref)) {
154$enablepermissioncheck =
getDolGlobalInt(
'MYMODULE_ENABLE_PERMISSION_CHECK');
155if ($enablepermissioncheck) {
156 $permissiontoread = $user->hasRight(
'mymodule',
'myobject',
'read');
157 $permissiontoadd = $user->hasRight(
'mymodule',
'myobject',
'write');
159 $permissiontoread = 1;
160 $permissiontoadd = 1;
171if (!$permissiontoread) {
180$parameters = array(
'id' => $id);
181$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
186if (empty($reshook)) {
188 if (
GETPOST(
'cancel',
'alpha') && !empty($backtopage)) {
189 header(
"Location: ".$backtopage);
194 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
197 $search_agenda_label =
'';
198 $search_complete =
'';
199 $search_filtert =
'';
212 $title = $langs->trans(
"MyObject").
" - ".$langs->trans(
'Agenda');
214 $help_url =
'EN:Module_Agenda_En|DE:Modul_Terminplanung';
216 llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-mymodule page-card_agenda');
219 $langs->load(
"mails");
228 $linkback =
'<a href="'.dol_buildpath(
'/mymodule/myobject_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
230 $morehtmlref =
'<div class="refidno">';
267 $morehtmlref .=
'</div>';
270 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
272 print
'<div class="fichecenter">';
273 print
'<div class="underbanner clearboth"></div>';
289 $out =
'&origin='.urlencode(
$object->element.(!empty(
$object->module) ?
'@'.$object->module :
'')).
'&originid='.urlencode((
string)
$object->id);
290 $urlbacktopage = $_SERVER[
'PHP_SELF'].
'?id='.
$object->id;
291 $out .=
'&backtopage='.urlencode($urlbacktopage);
292 $permok = $user->hasRight(
'agenda',
'myactions',
'create');
293 if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
295 if (get_class($objthirdparty) ==
'Societe') {
296 $out .=
'&socid='.urlencode((
string) $objthirdparty->id);
298 $out .= (!empty($objcon->id) ?
'&contactid='.urlencode($objcon->id) :
'');
312 if ($user->hasRight(
'agenda',
'myactions',
'create') || $user->hasRight(
'agenda',
'allactions',
'create')) {
313 $morehtmlright .=
dolGetButtonTitle($langs->trans(
'AddAction'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/comm/action/card.php?action=create'.$out);
315 $morehtmlright .=
dolGetButtonTitle($langs->trans(
'AddAction'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/comm/action/card.php?action=create'.$out,
'', 0);
320 if (
isModEnabled(
'agenda') && ($user->hasRight(
'agenda',
'myactions',
'read') || $user->hasRight(
'agenda',
'allactions',
'read'))) {
323 $param =
'&id='.$object->id;
325 $param .=
'&contextpage='.urlencode($contextpage);
327 if ($limit > 0 && $limit !=
$conf->liste_limit) {
328 $param .=
'&limit='.((int) $limit);
331 $param .=
'&search_rowid='.urlencode($search_rowid);
333 if ($actioncode !==
'' && $actioncode !==
'-1') {
334 $param .=
'&actioncode='.urlencode($actioncode);
336 if ($search_agenda_label) {
337 $param .=
'&search_agenda_label='.urlencode($search_agenda_label);
339 if ($search_complete !=
'') {
340 $param .=
'&search_complete='.urlencode($search_complete);
342 if ($search_filtert !=
'') {
343 $param .=
'&search_filtert='.urlencode((
string) $search_filtert);
345 if ($search_dateevent_start !=
'') {
346 $param .=
'&dateevent_startyear='.GETPOSTINT(
'dateevent_startyear');
347 $param .=
'&dateevent_startmonth='.GETPOSTINT(
'dateevent_startmonth');
348 $param .=
'&dateevent_startday='.GETPOSTINT(
'dateevent_startday');
350 if ($search_dateevent_end !=
'') {
351 $param .=
'&dateevent_endyear='.GETPOSTINT(
'dateevent_endyear');
352 $param .=
'&dateevent_endmonth='.GETPOSTINT(
'dateevent_endmonth');
353 $param .=
'&dateevent_endday='.GETPOSTINT(
'dateevent_endday');
361 $titlelist = $langs->trans(
"Actions").(is_numeric($nbEvent) ?
'<span class="opacitymedium colorblack paddingleft">('.$nbEvent.
')</span>' :
'');
362 if (!empty(
$conf->dol_optimize_smallscreen)) {
363 $titlelist = $langs->trans(
"Actions").(is_numeric($nbEvent) ?
'<span class="opacitymedium colorblack paddingleft">('.$nbEvent.
')</span>' :
'');
367 $parameters = array(
'morehtmlright' => &$morehtmlright,
'elementtype' =>
$object->element);
368 $reshook = $hookmanager->executeHooks(
'printObjectRightToolbar', $parameters, $object, $action);
372 $morehtmlright .= $hookmanager->resPrint;
375 print_barre_liste($titlelist, 0, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder,
'', 0, -1,
'', 0, $morehtmlright,
'', 0, 1, 0);
379 $filters[
'search_agenda_label'] = $search_agenda_label;
380 $filters[
'search_rowid'] = $search_rowid;
381 $filters[
'search_complete'] = $search_complete;
382 $filters[
'search_filtert'] = $search_filtert;
385 show_actions_done(
$conf, $langs,
$db, $object,
null, 0, $actioncode,
'', $filters, $sortfield, $sortorder, !empty(
$object->module) ?
$object->module :
'');
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
show_actions_done($conf, $langs, $db, $filterobj, $objcon=null, $noprint=0, $actioncode='', $donetodo='done', $filters=array(), $sortfield='a.datep, a.id', $sortorder='DESC', $module='')
Show html area with actions (done or not, ignore the name of function).
dol_print_object_info($object, $usetable=0)
Show information on an object TODO Move this into html.formother.
GETPOSTDATE($prefix, $hourTime='', $gm='auto', $saverestore='')
Helper function that combines values of a dolibarr DatePicker (such as Form\selectDate) for year,...
GETPOSTISARRAY($paramname, $method=0)
Return true if the parameter $paramname is submit from a POST OR GET as an array.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
getDolDefaultContextPage($s)
Return the default context page string.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
myobjectPrepareHead($object)
Prepare array of tabs for MyObject.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.