28require 
'../main.inc.php';
 
   31if (!$user->hasRight(
'holiday', 
'define_holiday') || $user->socid > 0) {
 
   35require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
 
   36require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
 
   37require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
 
   38require_once DOL_DOCUMENT_ROOT.
'/holiday/class/holiday.class.php';
 
   40$action             = 
GETPOST(
'action', 
'aZ09') ? 
GETPOST(
'action', 
'aZ09') : 
'view'; 
 
   41$massaction         = 
GETPOST(
'massaction', 
'alpha'); 
 
   42$mode      = 
GETPOST(
'mode', 
'alpha');
 
   43$show_files         = 
GETPOST(
'show_files', 
'int'); 
 
   44$confirm            = 
GETPOST(
'confirm', 
'alpha'); 
 
   45$cancel             = 
GETPOST(
'cancel', 
'alpha'); 
 
   46$toselect           = 
GETPOST(
'toselect', 
'array'); 
 
   47$contextpage        = 
GETPOST(
'contextpage', 
'aZ') ? 
GETPOST(
'contextpage', 
'aZ') : 
'myobjectlist'; 
 
   48$backtopage         = 
GETPOST(
'backtopage', 
'alpha'); 
 
   49$optioncss          = 
GETPOST(
'optioncss', 
'aZ'); 
 
   51$search_id          = 
GETPOST(
'search_id', 
'alphanohtml');
 
   52$search_month       = 
GETPOST(
'search_month', 
'int');
 
   53$search_year        = 
GETPOST(
'search_year', 
'int');
 
   54$search_employee    = 
GETPOST(
'search_employee', 
'int');
 
   55$search_validator   = 
GETPOST(
'search_validator', 
'int');
 
   56$search_description = 
GETPOST(
'search_description', 
'alphanohtml');
 
   57$search_type        = 
GETPOST(
'search_type', 
'int');
 
   58$search_prev_solde  = 
GETPOST(
'search_prev_solde', 
'alphanohtml');
 
   59$search_new_solde   = 
GETPOST(
'search_new_solde', 
'alphanohtml');
 
   62$limit = 
GETPOST(
'limit', 
'int') ? 
GETPOST(
'limit', 
'int') : $conf->liste_limit;
 
   63$sortfield = 
GETPOST(
'sortfield', 
'aZ09comma');
 
   64$sortorder = 
GETPOST(
'sortorder', 
'aZ09comma');
 
   65$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) : 
GETPOST(
"page", 
'int');
 
   66if (empty($page) || $page == -1 || 
GETPOST(
'button_search', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha') || (empty($toselect) && $massaction === 
'0')) {
 
   69$offset = $limit * $page;
 
   73  $sortfield = 
"cpl.rowid";
 
   80$langs->loadLangs(array(
'users', 
'other', 
'holiday'));
 
   86$hookmanager->initHooks(array(
'leavemovementlist')); 
 
   88$arrayfields = array();
 
   89$arrayofmassactions = array();
 
   91if (empty($conf->holiday->enabled)) {
 
   96if (!$user->hasRight(
'holiday', 
'readall')) {
 
  105if (
GETPOST(
'cancel', 
'alpha')) {
 
  109if (!
GETPOST(
'confirmmassaction', 
'alpha') && $massaction != 
'presend' && $massaction != 
'confirm_presend') {
 
  113$parameters = array();
 
  114$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action); 
 
  119if (empty($reshook)) {
 
  121  include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
 
  124  if (
GETPOST(
'button_removefilter_x', 
'alpha') || 
GETPOST(
'button_removefilter.x', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha')) { 
 
  128    $search_employee = 
'';
 
  129    $search_validator = 
'';
 
  130    $search_description = 
'';
 
  132    $search_prev_solde = 
'';
 
  133    $search_new_solde = 
'';
 
  135    $search_array_options = array();
 
  138  if (
GETPOST(
'button_removefilter_x', 
'alpha')
 
  139    || 
GETPOST(
'button_removefilter.x', 
'alpha')
 
  140    || 
GETPOST(
'button_removefilter', 
'alpha')
 
  141    || 
GETPOST(
'button_search_x', 
'alpha')
 
  142    || 
GETPOST(
'button_search.x', 
'alpha')
 
  143    || 
GETPOST(
'button_search', 
'alpha')) {
 
  160  'cpl.rowid'=>array(
'label'=>
"ID", 
'checked'=>1),
 
  161  'cpl.date_action'=>array(
'label'=>
"Date", 
'checked'=>1),
 
  162  'cpl.fk_user_action'=>array(
'label'=>
"ActionByCP", 
'checked'=>1),
 
  163  'cpl.fk_user_update'=>array(
'label'=>
"UserUpdateCP", 
'checked'=>1),
 
  164  'cpl.type_action'=>array(
'label'=>
"Description", 
'checked'=>1),
 
  165  'cpl.fk_type'=>array(
'label'=>
"Type", 
'checked'=>1),
 
  166  'cpl.prev_solde'=>array(
'label'=>
"PrevSoldeCP", 
'checked'=>1),
 
  167  'variation'=>array(
'label'=>
"Variation", 
'checked'=>1),
 
  168  'cpl.new_solde'=>array(
'label'=>
"NewSoldeCP", 
'checked'=>1),
 
  176$form = 
new Form($db);
 
  179$alltypeleaves = $object->getTypes(1, -1); 
 
  181$title = $langs->trans(
'CPTitreMenu');
 
  186if (!empty($search_year) && $search_year > 0) {
 
  187  if (!empty($search_month) && $search_month > 0) {
 
  195  $sqlwhere .= 
"AND date_action BETWEEN '".$db->idate($from_date).
"' AND '".$db->idate($to_date).
"'";
 
  198if (!empty($search_id) && $search_id > 0) {
 
  201if (!empty($search_validator) && $search_validator > 0) {
 
  202  $sqlwhere .= 
natural_search(
'fk_user_action', $search_validator, 1);
 
  204if (!empty($search_employee) && $search_employee > 0) {
 
  205  $sqlwhere .= 
natural_search(
'fk_user_update', $search_employee, 1);
 
  207if (!empty($search_description)) {
 
  210if (!empty($search_type) && $search_type > 0) {
 
  213if (!empty($search_prev_solde)) {
 
  216if (!empty($search_new_solde)) {
 
  220$sqlorder = $db->order($sortfield, $sortorder);
 
  223$log_holiday = $object->fetchLog($sqlorder, $sqlwhere); 
 
  226$nbtotalofrecords = 
'';
 
  230  $nbtotalofrecords = is_array($object->logs) ? count($object->logs) : 0;
 
  232  if (($page * $limit) > $nbtotalofrecords) { 
 
  239$num = is_array($object->logs) ? count($object->logs) : 0;
 
  242if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
 
  243  $param .= 
'&contextpage='.urlencode($contextpage);
 
  245if ($limit > 0 && $limit != $conf->liste_limit) {
 
  246  $param .= 
'&limit='.((int) $limit);
 
  248if (!empty($search_id)) {
 
  249  $param .= 
'&search_statut='.urlencode($search_statut);
 
  251if (!empty($search_month) && $search_month > 0) {
 
  252  $param .= 
'&search_month='.urlencode($search_month);
 
  254if (!empty($search_year) && $search_year > 0) {
 
  255  $param .= 
'&search_year='.urlencode($search_year);
 
  257if (!empty($search_validator) && $search_validator > 0) {
 
  258  $param .= 
'&search_validator='.urlencode($search_validator);
 
  260if (!empty($search_employee) && $search_employee > 0) {
 
  261  $param .= 
'&search_employee='.urlencode($search_employee);
 
  263if (!empty($search_description)) {
 
  264  $param .= 
'&search_description='.urlencode($search_description);
 
  266if (!empty($search_type) && $search_type > 0) {
 
  267  $param .= 
'&search_type='.urlencode($search_type);
 
  269if (!empty($search_prev_solde)) {
 
  270  $param .= 
'&search_prev_solde='.urlencode($search_prev_solde);
 
  272if (!empty($search_new_solde)) {
 
  273  $param .= 
'&search_new_solde='.urlencode($search_new_solde);
 
  276print 
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">';
 
  277if ($optioncss != 
'') {
 
  278  print 
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
 
  280print 
'<input type="hidden" name="token" value="'.newToken().
'">';
 
  281print 
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
 
  282print 
'<input type="hidden" name="action" value="list">';
 
  283print 
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
 
  284print 
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
 
  285print 
'<input type="hidden" name="page" value="'.$page.
'">';
 
  286print 
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
 
  288$newcardbutton = 
dolGetButtonTitle($langs->trans(
'MenuAddCP'), 
'', 
'fa fa-plus-circle', DOL_URL_ROOT.
'/holiday/card.php?action=create', 
'', $user->rights->holiday->write);
 
  289print_barre_liste($langs->trans(
'LogCP'), $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, 
'', $num, $nbtotalofrecords, 
'title_hrm', 0, $newcardbutton, 
'', $limit, 0, 0, 1);
 
  291print 
'<div class="info">'.$langs->trans(
'LastUpdateCP').
': ';
 
  293$lastUpdate = $object->getConfCP(
'lastUpdate');
 
  295  $monthLastUpdate = $lastUpdate[4].$lastUpdate[5];
 
  296  $yearLastUpdate = $lastUpdate[0].$lastUpdate[1].$lastUpdate[2].$lastUpdate[3];
 
  297  print 
'<strong>'.dol_print_date($db->jdate($object->getConfCP(
'lastUpdate')), 
'dayhour', 
'tzuser').
'</strong>';
 
  299  print $langs->trans(
"MonthOfLastMonthlyUpdate").
': <strong>'.$yearLastUpdate.
'-'.$monthLastUpdate.
'</strong>';
 
  301  print $langs->trans(
'None');
 
  311$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
 
  312$selectedfields = ($mode != 
'kanban' ? $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage, 
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN', 
'')) : 
''); 
 
  313$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) : 
'');
 
  315print 
'<div class="div-table-responsive">';
 
  316print 
'<table class="tagtable liste'.($moreforfilter ? 
" listwithfilterbefore" : 
"").
'" id="tablelines3">';
 
  318print 
'<tr class="liste_titre_filter">';
 
  322  print 
'<td class="liste_titre maxwidthsearch">';
 
  323  $searchpicto = $form->showFilterButtons();
 
  329if (!empty($arrayfields[
'cpl.rowid'][
'checked'])) {
 
  330  print 
'<td class="liste_titre"><input type="text" class="maxwidth50" name="search_id" value="'.$search_id.
'"></td>';
 
  334if (!empty($arrayfields[
'cpl.date_action'][
'checked'])) {
 
  335  print 
'<td class="liste_titre center">';
 
  336  print 
'<input class="flat valignmiddle maxwidth25" type="text" maxlength="2" name="search_month" value="'.dol_escape_htmltag($search_month).
'">';
 
  337  print $formother->selectyear($search_year, 
'search_year', 1, 10, 5, 0, 0, 
'', 
'valignmiddle width75', 
true);
 
  342if (!empty($arrayfields[
'cpl.fk_user_action'][
'checked'])) {
 
  344  $excludefilter = $user->admin ? 
'' : 
'u.rowid <> '.$user->id;
 
  345  $valideurobjects = $validator->listUsersForGroup($excludefilter, 1);
 
  346  $valideurarray = array();
 
  347  foreach ($valideurobjects as $val) {
 
  348    $valideurarray[$val] = $val;
 
  351  print 
'<td class="liste_titre">';
 
  352  print $form->select_dolusers($search_validator, 
"search_validator", 1, 
"", 0, $valideurarray, 
'', 0, 0, 0, $morefilter, 0, 
'', 
'maxwidth200');
 
  357if (!empty($arrayfields[
'cpl.fk_user_update'][
'checked'])) {
 
  358  print 
'<td class="liste_titre">';
 
  359  print $form->select_dolusers($search_employee, 
"search_employee", 1, 
"", $disabled, $include, 
'', 0, 0, 0, $morefilter, 0, 
'', 
'maxwidth200');
 
  364if (!empty($arrayfields[
'cpl.type_action'][
'checked'])) {
 
  365  print 
'<td class="liste_titre">';
 
  366  print 
'<input type="text" class="maxwidth50" name="search_description" value="'.$search_description.
'">';
 
  371if (!empty($arrayfields[
'cpl.fk_type'][
'checked'])) {
 
  372  foreach ($alltypeleaves as $key => $val) {
 
  373    $labeltoshow = ($langs->trans($val[
'code']) != $val[
'code'] ? $langs->trans($val[
'code']) : $val[
'label']);
 
  374    $arraytypeleaves[$val[
'rowid']] = $labeltoshow;
 
  377  print 
'<td class="liste_titre">';
 
  378  print $form->selectarray(
'search_type', $arraytypeleaves, $search_type, 1, 0, 0, 
'', 0, 0, 0, 
'', 
'', 1);
 
  383if (!empty($arrayfields[
'cpl.prev_solde'][
'checked'])) {
 
  384  print 
'<td class="liste_titre right">';
 
  385  print 
'<input type="text" class="maxwidth50" name="search_prev_solde" value="'.$search_prev_solde.
'">';
 
  390if (!empty($arrayfields[
'variation'][
'checked'])) {
 
  391  print 
'<td class="liste_titre"></td>';
 
  395if (!empty($arrayfields[
'cpl.new_solde'][
'checked'])) {
 
  396  print 
'<td class="liste_titre right">';
 
  397  print 
'<input type="text" class="maxwidth50" name="search_new_solde" value="'.$search_new_solde.
'">';
 
  403  print 
'<td class="liste_titre maxwidthsearch">';
 
  404  $searchpicto = $form->showFilterButtons();
 
  410print 
'<tr class="liste_titre">';
 
  413  print 
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"], 
'', 
'', 
'', 
'', $sortfield, $sortorder, 
'center maxwidthsearch ');
 
  415if (!empty($arrayfields[
'cpl.rowid'][
'checked'])) {
 
  416  print_liste_field_titre($arrayfields[
'cpl.rowid'][
'label'], $_SERVER[
"PHP_SELF"], 
'cpl.rowid', 
'', 
'', 
'', $sortfield, $sortorder);
 
  418if (!empty($arrayfields[
'cpl.date_action'][
'checked'])) {
 
  419  print_liste_field_titre($arrayfields[
'cpl.date_action'][
'label'], $_SERVER[
"PHP_SELF"], 
'date_action', 
'', 
'', 
'', $sortfield, $sortorder, 
'center ');
 
  421if (!empty($arrayfields[
'cpl.fk_user_action'][
'checked'])) {
 
  422  print_liste_field_titre($arrayfields[
'cpl.fk_user_action'][
'label'], $_SERVER[
"PHP_SELF"], 
'fk_user_action', 
'', 
'', 
'', $sortfield, $sortorder);
 
  424if (!empty($arrayfields[
'cpl.fk_user_update'][
'checked'])) {
 
  425  print_liste_field_titre($arrayfields[
'cpl.fk_user_update'][
'label'], $_SERVER[
"PHP_SELF"], 
'fk_user_update', 
'', 
'', 
'', $sortfield, $sortorder);
 
  427if (!empty($arrayfields[
'cpl.type_action'][
'checked'])) {
 
  428  print_liste_field_titre($arrayfields[
'cpl.type_action'][
'label'], $_SERVER[
"PHP_SELF"], 
'type_action', 
'', 
'', 
'', $sortfield, $sortorder);
 
  430if (!empty($arrayfields[
'cpl.fk_type'][
'checked'])) {
 
  431  print_liste_field_titre($arrayfields[
'cpl.fk_type'][
'label'], $_SERVER[
"PHP_SELF"], 
'fk_type', 
'', 
'', 
'', $sortfield, $sortorder);
 
  433if (!empty($arrayfields[
'cpl.prev_solde'][
'checked'])) {
 
  434  print_liste_field_titre($arrayfields[
'cpl.prev_solde'][
'label'], $_SERVER[
"PHP_SELF"], 
'prev_solde', 
'', 
'', 
'', $sortfield, $sortorder, 
'right ');
 
  436if (!empty($arrayfields[
'variation'][
'checked'])) {
 
  437  print_liste_field_titre($arrayfields[
'variation'][
'label'], $_SERVER[
"PHP_SELF"], 
'', 
'', 
'', 
'', $sortfield, $sortorder, 
'right ');
 
  439if (!empty($arrayfields[
'cpl.new_solde'][
'checked'])) {
 
  440  print_liste_field_titre($arrayfields[
'cpl.new_solde'][
'label'], $_SERVER[
"PHP_SELF"], 
'new_solde', 
'', 
'', 
'', $sortfield, $sortorder, 
'right ');
 
  444  print 
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"], 
'', 
'', 
'', 
'', $sortfield, $sortorder, 
'center maxwidthsearch ');
 
  450while ($j < ($page * $limit)) {
 
  451  $obj = next($object->logs);
 
  456while ($i < min($num, $limit)) {
 
  458  $obj = current($object->logs);
 
  463  $holidaylogstatic->id = $obj[
'rowid'];
 
  464  $holidaylogstatic->date = $obj[
'date_action'];
 
  465  $holidaylogstatic->validator    = $obj[
'fk_user_action'];
 
  466  $holidaylogstatic->employee     = $obj[
'fk_user_update'];
 
  467  $holidaylogstatic->description    = $obj[
'type_action'];
 
  468  $holidaylogstatic->type = $obj[
'fk_type'];
 
  469  $holidaylogstatic->balance_previous = $obj[
'prev_solde'];
 
  470  $holidaylogstatic->balance_new    = $obj[
'new_solde'];
 
  472  print 
'<tr class="oddeven">';
 
  480  if (!empty($arrayfields[
'cpl.rowid'][
'checked'])) {
 
  481    print 
'<td>'.$holidaylogstatic->id.
'</td>';
 
  485  if (!empty($arrayfields[
'cpl.date_action'][
'checked'])) {
 
  486    print 
'<td style="text-align: center">'.$holidaylogstatic->date.
'</td>';
 
  490  if (!empty($arrayfields[
'cpl.fk_user_action'][
'checked'])) {
 
  491    $user_action = 
new User($db);
 
  492    $user_action->fetch($holidaylogstatic->validator);
 
  493    print 
'<td>'.$user_action->getNomUrl(-1).
'</td>';
 
  497  if (!empty($arrayfields[
'cpl.fk_user_update'][
'checked'])) {
 
  498    $user_update = 
new User($db);
 
  499    $user_update->fetch($holidaylogstatic->employee);
 
  500    print 
'<td>'.$user_update->getNomUrl(-1).
'</td>';
 
  504  if (!empty($arrayfields[
'cpl.type_action'][
'checked'])) {
 
  505    print 
'<td class="tdoverflowmax400" title="'.dol_escape_htmltag($holidaylogstatic->description).
'">'.
dol_escape_htmltag($holidaylogstatic->description).
'</td>';
 
  509  if (!empty($arrayfields[
'cpl.fk_type'][
'checked'])) {
 
  511    if (!empty($alltypeleaves[$holidaylogstatic->type])) {
 
  512      if ($alltypeleaves[$holidaylogstatic->type][
'code'] && $langs->trans($alltypeleaves[$holidaylogstatic->type][
'code']) != $alltypeleaves[$holidaylogstatic->type][
'code']) {
 
  513        $label = $langs->trans($alltypeleaves[$holidaylogstatic->type][
'code']);
 
  515        $label = $alltypeleaves[$holidaylogstatic->type][
'label'];
 
  520    print $label ? $label : $holidaylogstatic->type;
 
  525  if (!empty($arrayfields[
'cpl.prev_solde'][
'checked'])) {
 
  526    print 
'<td style="text-align: right;">'.price2num($holidaylogstatic->balance_previous, 5).
' '.$langs->trans(
'days').
'</td>';
 
  530  if (!empty($arrayfields[
'variation'][
'checked'])) {
 
  531    $delta = 
price2num($holidaylogstatic->balance_new - $holidaylogstatic->balance_previous, 5);
 
  532    print 
'<td style="text-align: right;">';
 
  534      print 
'<span class="stockmovemententry fontsizeunset">+'.$delta.
'</span>';
 
  536      print 
'<span class="stockmovementexit fontsizeunset">'.$delta.
'</span>';
 
  542  if (!empty($arrayfields[
'cpl.new_solde'][
'checked'])) {
 
  543    print 
'<td style="text-align: right;">'.price2num($holidaylogstatic->balance_new, 5).
' '.$langs->trans(
'days').
'</td>';
 
  557if ($log_holiday == 
'2') {
 
  558  print 
'<tr class="opacitymedium">';
 
  559  print 
'<td colspan="10" class="opacitymedium">'.$langs->trans(
'NoRecordFound').
'</td>';
 
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
 
Class of the module paid holiday.
 
Class to manage user groups.
 
Class to manage Dolibarr users.
 
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
 
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
 
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
 
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.
 
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
 
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
 
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
 
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
 
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
 
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
 
print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
 
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
 
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
 
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.