List before
This commit is contained in:
parent
267170b8d2
commit
08af9bf365
@ -338,6 +338,17 @@ if ($resql)
|
|||||||
if ($usergroup) $nav.='<input type="hidden" name="usergroup" value="'.$usergroup.'">';
|
if ($usergroup) $nav.='<input type="hidden" name="usergroup" value="'.$usergroup.'">';
|
||||||
print $nav;
|
print $nav;
|
||||||
|
|
||||||
|
if ($user->rights->agenda->myactions->create || $user->rights->agenda->allactions->create)
|
||||||
|
{
|
||||||
|
$newparam.='&month='.str_pad($month, 2, "0", STR_PAD_LEFT).'&year='.$year;
|
||||||
|
|
||||||
|
//$param='month='.$monthshown.'&year='.$year;
|
||||||
|
$hourminsec='100000';
|
||||||
|
$link = '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create&datep='.sprintf("%04d%02d%02d",$year,$month,$day).$hourminsec.'&backtopage='.urlencode($_SERVER["PHP_SELF"].($newparam?'?'.$newparam:'')).'">';
|
||||||
|
$link.= $langs->trans("NewAction");
|
||||||
|
$link.= '</a>';
|
||||||
|
}
|
||||||
|
|
||||||
print_barre_liste($s, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $link, $num, -1 * $nbtotalofrecords, '', 0, $nav, '', $limit);
|
print_barre_liste($s, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $link, $num, -1 * $nbtotalofrecords, '', 0, $nav, '', $limit);
|
||||||
|
|
||||||
$moreforfilter='';
|
$moreforfilter='';
|
||||||
|
|||||||
@ -85,7 +85,7 @@ function print_actions_filter($form, $canedit, $status, $year, $month, $day, $sh
|
|||||||
{
|
{
|
||||||
include_once DOL_DOCUMENT_ROOT . '/resource/class/html.formresource.class.php';
|
include_once DOL_DOCUMENT_ROOT . '/resource/class/html.formresource.class.php';
|
||||||
$formresource=new FormResource($db);
|
$formresource=new FormResource($db);
|
||||||
|
|
||||||
// Resource
|
// Resource
|
||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td class="nowrap" style="padding-bottom: 2px; padding-right: 4px;">';
|
print '<td class="nowrap" style="padding-bottom: 2px; padding-right: 4px;">';
|
||||||
@ -94,7 +94,7 @@ function print_actions_filter($form, $canedit, $status, $year, $month, $day, $sh
|
|||||||
print $formresource->select_resource_list($resourceid, "resourceid", '', 1, 0, 0, null, '', 2);
|
print $formresource->select_resource_list($resourceid, "resourceid", '', 1, 0, 0, null, '', 2);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php';
|
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php';
|
||||||
$formactions=new FormActions($db);
|
$formactions=new FormActions($db);
|
||||||
|
|
||||||
@ -251,7 +251,7 @@ function show_array_actions_to_do($max=5)
|
|||||||
while ($i < $num)
|
while ($i < $num)
|
||||||
{
|
{
|
||||||
$obj = $db->fetch_object($resql);
|
$obj = $db->fetch_object($resql);
|
||||||
|
|
||||||
|
|
||||||
print '<tr class="oddeven">';
|
print '<tr class="oddeven">';
|
||||||
|
|
||||||
@ -347,7 +347,7 @@ function show_array_last_actions_done($max=5)
|
|||||||
while ($i < $num)
|
while ($i < $num)
|
||||||
{
|
{
|
||||||
$obj = $db->fetch_object($resql);
|
$obj = $db->fetch_object($resql);
|
||||||
|
|
||||||
|
|
||||||
print '<tr class="oddeven">';
|
print '<tr class="oddeven">';
|
||||||
|
|
||||||
@ -458,7 +458,7 @@ function actions_prepare_head($object)
|
|||||||
{
|
{
|
||||||
include_once DOL_DOCUMENT_ROOT.'/resource/class/dolresource.class.php';
|
include_once DOL_DOCUMENT_ROOT.'/resource/class/dolresource.class.php';
|
||||||
$resource=new DolResource($db);
|
$resource=new DolResource($db);
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/resource/element_resource.php?element=action&element_id='.$object->id;
|
$head[$h][0] = DOL_URL_ROOT.'/resource/element_resource.php?element=action&element_id='.$object->id;
|
||||||
$listofresourcelinked = $resource->getElementResources($object->element, $object->id);
|
$listofresourcelinked = $resource->getElementResources($object->element, $object->id);
|
||||||
$nbResources=count($listofresourcelinked);
|
$nbResources=count($listofresourcelinked);
|
||||||
@ -506,6 +506,11 @@ function calendars_prepare_head($param)
|
|||||||
$h = 0;
|
$h = 0;
|
||||||
$head = array();
|
$head = array();
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/comm/action/listactions.php'.($param?'?'.$param:'');
|
||||||
|
$head[$h][1] = $langs->trans("ViewList");
|
||||||
|
$head[$h][2] = 'cardlist';
|
||||||
|
$h++;
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/comm/action/index.php?action=show_day'.($param?'&'.$param:'');
|
$head[$h][0] = DOL_URL_ROOT.'/comm/action/index.php?action=show_day'.($param?'&'.$param:'');
|
||||||
$head[$h][1] = $langs->trans("ViewDay");
|
$head[$h][1] = $langs->trans("ViewDay");
|
||||||
$head[$h][2] = 'cardday';
|
$head[$h][2] = 'cardday';
|
||||||
@ -529,16 +534,12 @@ function calendars_prepare_head($param)
|
|||||||
$head[$h][2] = 'cardpertype';
|
$head[$h][2] = 'cardpertype';
|
||||||
$h++;
|
$h++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/comm/action/peruser.php'.($param?'?'.$param:'');
|
$head[$h][0] = DOL_URL_ROOT.'/comm/action/peruser.php'.($param?'?'.$param:'');
|
||||||
$head[$h][1] = $langs->trans("ViewPerUser");
|
$head[$h][1] = $langs->trans("ViewPerUser");
|
||||||
$head[$h][2] = 'cardperuser';
|
$head[$h][2] = 'cardperuser';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/comm/action/listactions.php'.($param?'?'.$param:'');
|
|
||||||
$head[$h][1] = $langs->trans("ViewList");
|
|
||||||
$head[$h][2] = 'cardlist';
|
|
||||||
$h++;
|
|
||||||
|
|
||||||
$object=new stdClass();
|
$object=new stdClass();
|
||||||
|
|
||||||
|
|||||||
@ -235,7 +235,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda',
|
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>102,
|
'position'=>140,
|
||||||
'perms'=>'$user->rights->agenda->myactions->read',
|
'perms'=>'$user->rights->agenda->myactions->read',
|
||||||
'enabled'=>'$conf->agenda->enabled',
|
'enabled'=>'$conf->agenda->enabled',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -247,7 +247,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=todo&filter=mine',
|
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=todo&filter=mine',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>103,
|
'position'=>141,
|
||||||
'perms'=>'$user->rights->agenda->myactions->read',
|
'perms'=>'$user->rights->agenda->myactions->read',
|
||||||
'enabled'=>'$conf->agenda->enabled',
|
'enabled'=>'$conf->agenda->enabled',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -259,7 +259,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=done&filter=mine',
|
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=done&filter=mine',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>104,
|
'position'=>142,
|
||||||
'perms'=>'$user->rights->agenda->myactions->read',
|
'perms'=>'$user->rights->agenda->myactions->read',
|
||||||
'enabled'=>'$conf->agenda->enabled',
|
'enabled'=>'$conf->agenda->enabled',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -271,7 +271,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=todo&filtert=-1',
|
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=todo&filtert=-1',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>105,
|
'position'=>143,
|
||||||
'perms'=>'$user->rights->agenda->allactions->read',
|
'perms'=>'$user->rights->agenda->allactions->read',
|
||||||
'enabled'=>'$user->rights->agenda->allactions->read',
|
'enabled'=>'$user->rights->agenda->allactions->read',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -283,7 +283,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=done&filtert=-1',
|
'url'=>'/comm/action/index.php?mainmenu=agenda&leftmenu=agenda&status=done&filtert=-1',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>106,
|
'position'=>144,
|
||||||
'perms'=>'$user->rights->agenda->allactions->read',
|
'perms'=>'$user->rights->agenda->allactions->read',
|
||||||
'enabled'=>'$user->rights->agenda->allactions->read',
|
'enabled'=>'$user->rights->agenda->allactions->read',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -296,7 +296,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda',
|
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>112,
|
'position'=>110,
|
||||||
'perms'=>'$user->rights->agenda->myactions->read',
|
'perms'=>'$user->rights->agenda->myactions->read',
|
||||||
'enabled'=>'$conf->agenda->enabled',
|
'enabled'=>'$conf->agenda->enabled',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -308,7 +308,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=todo&filter=mine',
|
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=todo&filter=mine',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>113,
|
'position'=>111,
|
||||||
'perms'=>'$user->rights->agenda->myactions->read',
|
'perms'=>'$user->rights->agenda->myactions->read',
|
||||||
'enabled'=>'$conf->agenda->enabled',
|
'enabled'=>'$conf->agenda->enabled',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -320,7 +320,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=done&filter=mine',
|
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=done&filter=mine',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>114,
|
'position'=>112,
|
||||||
'perms'=>'$user->rights->agenda->myactions->read',
|
'perms'=>'$user->rights->agenda->myactions->read',
|
||||||
'enabled'=>'$conf->agenda->enabled',
|
'enabled'=>'$conf->agenda->enabled',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -332,7 +332,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=todo&filtert=-1',
|
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=todo&filtert=-1',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>115,
|
'position'=>113,
|
||||||
'perms'=>'$user->rights->agenda->allactions->read',
|
'perms'=>'$user->rights->agenda->allactions->read',
|
||||||
'enabled'=>'$user->rights->agenda->allactions->read',
|
'enabled'=>'$user->rights->agenda->allactions->read',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -344,7 +344,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=done&filtert=-1',
|
'url'=>'/comm/action/listactions.php?mainmenu=agenda&leftmenu=agenda&status=done&filtert=-1',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>116,
|
'position'=>114,
|
||||||
'perms'=>'$user->rights->agenda->allactions->read',
|
'perms'=>'$user->rights->agenda->allactions->read',
|
||||||
'enabled'=>'$user->rights->agenda->allactions->read',
|
'enabled'=>'$user->rights->agenda->allactions->read',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
@ -357,7 +357,7 @@ class modAgenda extends DolibarrModules
|
|||||||
'mainmenu'=>'agenda',
|
'mainmenu'=>'agenda',
|
||||||
'url'=>'/comm/action/rapport/index.php?mainmenu=agenda&leftmenu=agenda',
|
'url'=>'/comm/action/rapport/index.php?mainmenu=agenda&leftmenu=agenda',
|
||||||
'langs'=>'agenda',
|
'langs'=>'agenda',
|
||||||
'position'=>120,
|
'position'=>160,
|
||||||
'perms'=>'$user->rights->agenda->allactions->read',
|
'perms'=>'$user->rights->agenda->allactions->read',
|
||||||
'enabled'=>'$conf->agenda->enabled',
|
'enabled'=>'$conf->agenda->enabled',
|
||||||
'target'=>'',
|
'target'=>'',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user