48if (!$res && !empty($_SERVER[
"CONTEXT_DOCUMENT_ROOT"])) {
49 $res = @include str_replace(
"..",
"", $_SERVER[
"CONTEXT_DOCUMENT_ROOT"]).
"/main.inc.php";
52$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME'];
53$tmp2 = realpath(__FILE__);
55$j = strlen($tmp2) - 1;
56while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
60if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/main.inc.php")) {
61 $res = @include substr($tmp, 0, ($i + 1)).
"/main.inc.php";
63if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php")) {
64 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php";
67if (!$res && file_exists(
"../main.inc.php")) {
68 $res = @include
"../main.inc.php";
70if (!$res && file_exists(
"../../main.inc.php")) {
71 $res = @include
"../../main.inc.php";
73if (!$res && file_exists(
"../../../main.inc.php")) {
74 $res = @include
"../../../main.inc.php";
77 die(
"Include of main fails");
87include_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
88include_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
89include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
94$langs->loadLangs(array(
"mymodule@mymodule",
"other"));
99$action =
GETPOST(
'action',
'aZ09');
102$backtopage =
GETPOST(
'backtopage',
'alpha');
105 $actioncode =
GETPOST(
'actioncode',
'array:alpha', 3);
106 if (!count($actioncode)) {
112$search_rowid =
GETPOST(
'search_rowid');
113$search_agenda_label =
GETPOST(
'search_agenda_label');
114$search_complete =
GETPOST(
'search_complete');
115$search_filtert =
GETPOSTINT(
'search_filtert');
116$search_dateevent_start =
GETPOSTDATE(
'dateevent_start');
117$search_dateevent_end =
GETPOSTDATE(
'dateevent_end');
120$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
121$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
123if (empty($page) || $page == -1) {
127$offset = $limit * $page;
128$pageprev = $page - 1;
129$pagenext = $page + 1;
131 $sortfield =
'a.datep,a.id';
134 $sortorder =
'DESC,DESC';
140$diroutputmassaction =
$conf->mymodule->dir_output.
'/temp/massgeneration/'.$user->id;
141$hookmanager->initHooks(array(
$object->element.
'agenda',
'globalcard'));
143$extrafields->fetch_name_optionals_label(
$object->table_element);
146include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
147if ($id > 0 || !empty($ref)) {
153$enablepermissioncheck =
getDolGlobalInt(
'MYMODULE_ENABLE_PERMISSION_CHECK');
154if ($enablepermissioncheck) {
155 $permissiontoread = $user->hasRight(
'mymodule',
'myobject',
'read');
156 $permissiontoadd = $user->hasRight(
'mymodule',
'myobject',
'write');
158 $permissiontoread = 1;
159 $permissiontoadd = 1;
170if (!$permissiontoread) {
179$parameters = array(
'id' => $id);
180$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
185if (empty($reshook)) {
187 if (
GETPOST(
'cancel',
'alpha') && !empty($backtopage)) {
188 header(
"Location: ".$backtopage);
193 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
196 $search_agenda_label =
'';
197 $search_complete =
'';
198 $search_filtert =
'';
211 $title = $langs->trans(
"MyObject").
" - ".$langs->trans(
'Agenda');
213 $help_url =
'EN:Module_Agenda_En|DE:Modul_Terminplanung';
215 llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-mymodule page-card_agenda');
218 $langs->load(
"mails");
227 $linkback =
'<a href="'.dol_buildpath(
'/mymodule/myobject_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
229 $morehtmlref =
'<div class="refidno">';
266 $morehtmlref .=
'</div>';
269 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
271 print
'<div class="fichecenter">';
272 print
'<div class="underbanner clearboth"></div>';
288 $out =
'&origin='.urlencode(
$object->element.(!empty(
$object->module) ?
'@'.$object->module :
'')).
'&originid='.urlencode((
string)
$object->id);
289 $urlbacktopage = $_SERVER[
'PHP_SELF'].
'?id='.
$object->id;
290 $out .=
'&backtopage='.urlencode($urlbacktopage);
291 $permok = $user->hasRight(
'agenda',
'myactions',
'create');
292 if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
294 if (get_class($objthirdparty) ==
'Societe') {
295 $out .=
'&socid='.urlencode((
string) $objthirdparty->id);
297 $out .= (!empty($objcon->id) ?
'&contactid='.urlencode($objcon->id) :
'');
311 if ($user->hasRight(
'agenda',
'myactions',
'create') || $user->hasRight(
'agenda',
'allactions',
'create')) {
312 $morehtmlright .= dolGetButtonTitle($langs->trans(
'AddAction'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/comm/action/card.php?action=create'.$out);
314 $morehtmlright .= dolGetButtonTitle($langs->trans(
'AddAction'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/comm/action/card.php?action=create'.$out,
'', 0);
319 if (
isModEnabled(
'agenda') && ($user->hasRight(
'agenda',
'myactions',
'read') || $user->hasRight(
'agenda',
'allactions',
'read'))) {
322 $param =
'&id='.$object->id;
324 $param .=
'&contextpage='.urlencode($contextpage);
326 if ($limit > 0 && $limit !=
$conf->liste_limit) {
327 $param .=
'&limit='.((int) $limit);
330 $param .=
'&search_rowid='.urlencode($search_rowid);
332 if ($actioncode !==
'' && $actioncode !==
'-1') {
333 $param .=
'&actioncode='.urlencode($actioncode);
335 if ($search_agenda_label) {
336 $param .=
'&search_agenda_label='.urlencode($search_agenda_label);
338 if ($search_complete !=
'') {
339 $param .=
'&search_complete='.urlencode($search_complete);
341 if ($search_filtert !=
'') {
342 $param .=
'&search_filtert='.urlencode((
string) $search_filtert);
344 if ($search_dateevent_start !=
'') {
345 $param .=
'&dateevent_startyear='.GETPOSTINT(
'dateevent_startyear');
346 $param .=
'&dateevent_startmonth='.GETPOSTINT(
'dateevent_startmonth');
347 $param .=
'&dateevent_startday='.GETPOSTINT(
'dateevent_startday');
349 if ($search_dateevent_end !=
'') {
350 $param .=
'&dateevent_endyear='.GETPOSTINT(
'dateevent_endyear');
351 $param .=
'&dateevent_endmonth='.GETPOSTINT(
'dateevent_endmonth');
352 $param .=
'&dateevent_endday='.GETPOSTINT(
'dateevent_endday');
360 $titlelist = $langs->trans(
"Actions").(is_numeric($nbEvent) ?
'<span class="opacitymedium colorblack paddingleft">('.$nbEvent.
')</span>' :
'');
361 if (!empty(
$conf->dol_optimize_smallscreen)) {
362 $titlelist = $langs->trans(
"Actions").(is_numeric($nbEvent) ?
'<span class="opacitymedium colorblack paddingleft">('.$nbEvent.
')</span>' :
'');
365 print_barre_liste($titlelist, 0, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder,
'', 0, -1,
'', 0, $morehtmlright,
'', 0, 1, 0);
369 $filters[
'search_agenda_label'] = $search_agenda_label;
370 $filters[
'search_rowid'] = $search_rowid;
371 $filters[
'search_complete'] = $search_complete;
372 $filters[
'search_filtert'] = $search_filtert;
375 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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTDATE($prefix, $hourTime='', $gm='auto', $saverestore='')
Helper function that combines values of a dolibarr DatePicker (such as Form\selectDate) for year,...
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.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
getDolDefaultContextPage($s)
Return the default context page string.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
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
buildzip.php
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.