30require 
'../main.inc.php';
 
   32require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
 
   33require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
 
   34require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
 
   37require_once __DIR__.
'/class/skill.class.php';
 
   43$langs->loadLangs(array(
'hrm', 
'other'));
 
   47$action     = 
GETPOST(
'action', 
'aZ09') ? 
GETPOST(
'action', 
'aZ09') : 
'view'; 
 
   48$massaction = 
GETPOST(
'massaction', 
'alpha'); 
 
   49$show_files = 
GETPOST(
'show_files', 
'int'); 
 
   50$confirm    = 
GETPOST(
'confirm', 
'alpha'); 
 
   51$cancel     = 
GETPOST(
'cancel', 
'alpha'); 
 
   52$toselect   = 
GETPOST(
'toselect', 
'array'); 
 
   53$contextpage = 
GETPOST(
'contextpage', 
'aZ') ? 
GETPOST(
'contextpage', 
'aZ') : 
'skilllist'; 
 
   54$backtopage  = 
GETPOST(
'backtopage', 
'alpha'); 
 
   55$optioncss   = 
GETPOST(
'optioncss', 
'aZ'); 
 
   56$mode        = 
GETPOST(
'mode', 
'alpha'); 
 
   61$limit = 
GETPOST(
'limit', 
'int') ? 
GETPOST(
'limit', 
'int') : $conf->liste_limit;
 
   62$sortfield = 
GETPOST(
'sortfield', 
'aZ09comma');
 
   63$sortorder = 
GETPOST(
'sortorder', 
'aZ09comma');
 
   64$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) : 
GETPOST(
"page", 
'int');
 
   65if (empty($page) || $page < 0 || 
GETPOST(
'button_search', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha')) {
 
   69$offset = $limit * $page;
 
   74$object = 
new Skill($db);
 
   76$diroutputmassaction = $conf->hrm->dir_output.
'/temp/massgeneration/'.$user->id;
 
   77$hookmanager->initHooks(array(
'skilllist')); 
 
   80$extrafields->fetch_name_optionals_label($object->table_element);
 
   83$search_array_options = $extrafields->getOptionalsFromPost($object->table_element, 
'', 
'search_');
 
   87  reset($object->fields);         
 
   88  $sortfield = 
"t.".key($object->fields); 
 
   95$search_all = 
GETPOST(
'search_all', 
'alphanohtml') ? 
GETPOST(
'search_all', 
'alphanohtml') : 
GETPOST(
'sall', 
'alphanohtml');
 
   97foreach ($object->fields as $key => $val) {
 
   98  if (
GETPOST(
'search_'.$key, 
'alpha') !== 
'') {
 
   99    $search[$key] = 
GETPOST(
'search_'.$key, 
'alpha');
 
  101  if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
 
  102    $search[$key.
'_dtstart'] = 
dol_mktime(0, 0, 0, 
GETPOST(
'search_'.$key.
'_dtstartmonth', 
'int'), 
GETPOST(
'search_'.$key.
'_dtstartday', 
'int'), 
GETPOST(
'search_'.$key.
'_dtstartyear', 
'int'));
 
  103    $search[$key.
'_dtend'] = 
dol_mktime(23, 59, 59, 
GETPOST(
'search_'.$key.
'_dtendmonth', 
'int'), 
GETPOST(
'search_'.$key.
'_dtendday', 
'int'), 
GETPOST(
'search_'.$key.
'_dtendyear', 
'int'));
 
  108$fieldstosearchall = array();
 
  109foreach ($object->fields as $key => $val) {
 
  110  if (!empty($val[
'searchall'])) {
 
  111    $fieldstosearchall[
't.'.$key] = $val[
'label'];
 
  114$parameters = array(
'fieldstosearchall'=>$fieldstosearchall);
 
  115$reshook = $hookmanager->executeHooks(
'completeFieldsToSearchAll', $parameters, $object, $action); 
 
  117  $fieldstosearchall = empty($hookmanager->resArray[
'fieldstosearchall']) ? array() : $hookmanager->resArray[
'fieldstosearchall'];
 
  118} elseif ($reshook == 0) {
 
  119  $fieldstosearchall = array_merge($fieldstosearchall, empty($hookmanager->resArray[
'fieldstosearchall']) ? array() : $hookmanager->resArray[
'fieldstosearchall']);
 
  123$arrayfields = array();
 
  124foreach ($object->fields as $key => $val) {
 
  126  if (!empty($val[
'visible'])) {
 
  127    $visible = (int) 
dol_eval($val[
'visible'], 1);
 
  128    $arrayfields[
't.'.$key] = array(
 
  129      'label'=>$val[
'label'],
 
  130      'checked'=>(($visible < 0) ? 0 : 1),
 
  131      'enabled'=>(abs($visible) != 3 && 
dol_eval($val[
'enabled'], 1)),
 
  132      'position'=>$val[
'position'],
 
  133      'help'=> isset($val[
'help']) ? $val[
'help'] : 
'' 
  138include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
 
  144$permissiontoread   = $user->hasRight(
'hrm', 
'all', 
'read');
 
  145$permissiontoadd    = $user->hasRight(
'hrm', 
'all', 
'write');
 
  146$permissiontodelete = $user->hasRight(
'hrm', 
'all', 
'delete');
 
  149if (!isModEnabled(
'hrm')) {
 
  154if ($user->socid > 0) {
 
  162if (!$permissiontoread) {
 
  172if (
GETPOST(
'cancel', 
'alpha')) {
 
  176if (!
GETPOST(
'confirmmassaction', 
'alpha') && $massaction != 
'presend' && $massaction != 
'confirm_presend') {
 
  180$parameters = array();
 
  181$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action); 
 
  186if (empty($reshook)) {
 
  188  include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
 
  191  if (
GETPOST(
'button_removefilter_x', 
'alpha') || 
GETPOST(
'button_removefilter.x', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha')) { 
 
  192    foreach ($object->fields as $key => $val) {
 
  194      if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
 
  195        $search[$key.
'_dtstart'] = 
'';
 
  196        $search[$key.
'_dtend'] = 
'';
 
  200    $search_array_options = array();
 
  202  if (
GETPOST(
'button_removefilter_x', 
'alpha') || 
GETPOST(
'button_removefilter.x', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha')
 
  203    || 
GETPOST(
'button_search_x', 
'alpha') || 
GETPOST(
'button_search.x', 
'alpha') || 
GETPOST(
'button_search', 
'alpha')) {
 
  208  $objectclass = 
'Skill';
 
  209  $objectlabel = 
'Skill';
 
  210  $uploaddir = $conf->hrm->dir_output;
 
  211  include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
 
  220$form = 
new Form($db);
 
  226$title = $langs->trans(
"Skills");
 
  234$sql .= $object->getFieldList(
't');
 
  236if (!empty($extrafields->attributes[$object->table_element][
'label'])) {
 
  237  foreach ($extrafields->attributes[$object->table_element][
'label'] as $key => $val) {
 
  238    $sql .= ($extrafields->attributes[$object->table_element][
'type'][$key] != 
'separate' ? 
", ef.".$key.
" as options_".$key : 
'');
 
  242$parameters = array();
 
  243$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action); 
 
  244$sql .= $hookmanager->resPrint;
 
  245$sql = preg_replace(
'/,\s*$/', 
'', $sql);
 
  250$sql .= 
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
 
  251if (isset($extrafields->attributes[$object->table_element][
'label']) && is_array($extrafields->attributes[$object->table_element][
'label']) && count($extrafields->attributes[$object->table_element][
'label'])) {
 
  252  $sql .= 
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
 
  255$parameters = array();
 
  256$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object); 
 
  257$sql .= $hookmanager->resPrint;
 
  258if ($object->ismultientitymanaged == 1) {
 
  259  $sql .= 
" WHERE t.entity IN (".getEntity($object->element).
")";
 
  261  $sql .= 
" WHERE 1 = 1";
 
  263foreach ($search as $key => $val) {
 
  264  if (array_key_exists($key, $object->fields)) {
 
  265    if ($key == 
'status' && $search[$key] == -1) {
 
  268    $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
 
  269    if ((strpos($object->fields[$key][
'type'], 
'integer:') === 0) || (strpos($object->fields[$key][
'type'], 
'sellist:') === 0) || !empty($object->fields[$key][
'arrayofkeyval'])) {
 
  270      if ($search[$key] == 
'-1' || ($search[$key] === 
'0' && (empty($object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0', $object->fields[$key][
'arrayofkeyval'])))) {
 
  275    if ($search[$key] != 
'') {
 
  276      $sql .= 
natural_search(
"t.".$db->escape($key), $search[$key], (($key == 
'status') ? 2 : $mode_search));
 
  279    if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] != 
'') {
 
  280      $columnName=preg_replace(
'/(_dtstart|_dtend)$/', 
'', $key);
 
  281      if (preg_match(
'/^(date|timestamp|datetime)/', $object->fields[$columnName][
'type'])) {
 
  282        if (preg_match(
'/_dtstart$/', $key)) {
 
  283          $sql .= 
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
 
  285        if (preg_match(
'/_dtend$/', $key)) {
 
  286          $sql .= 
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
 
  293  $sql .= 
natural_search(array_keys($fieldstosearchall), $search_all);
 
  298include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
 
  300$parameters = array();
 
  301$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action); 
 
  302$sql .= $hookmanager->resPrint;
 
  323$nbtotalofrecords = 
'';
 
  326  $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields, 
'/').
'/', 
'SELECT COUNT(*) as nbtotalofrecords', $sql);
 
  327  $sqlforcount = preg_replace(
'/GROUP BY .*$/', 
'', $sqlforcount);
 
  328  $resql = $db->query($sqlforcount);
 
  330    $objforcount = $db->fetch_object($resql);
 
  331    $nbtotalofrecords = $objforcount->nbtotalofrecords;
 
  336  if (($page * $limit) > $nbtotalofrecords) { 
 
  344$sql .= $db->order($sortfield, $sortorder);
 
  346  $sql .= $db->plimit($limit + 1, $offset);
 
  349$resql = $db->query($sql);
 
  355$num = $db->num_rows($resql);
 
  359if ($num == 1 && 
getDolGlobalString(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
 
  360  $obj = $db->fetch_object($resql);
 
  362  header(
"Location: ".
dol_buildpath(
'/hrm/skill_card.php', 1).
'?id='.$id);
 
  370llxHeader(
'', $title, $help_url, 
'', 0, 0, $morejs, $morecss, 
'', 
'bodyforlist');
 
  372$arrayofselected = is_array($toselect) ? $toselect : array();
 
  376  $param .= 
'&mode='.urlencode($mode);
 
  378if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
 
  379  $param .= 
'&contextpage='.urlencode($contextpage);
 
  381if ($limit > 0 && $limit != $conf->liste_limit) {
 
  382  $param .= 
'&limit='.((int) $limit);
 
  384foreach ($search as $key => $val) {
 
  385  if (is_array($search[$key])) {
 
  386    foreach ($search[$key] as $skey) {
 
  388        $param .= 
'&search_'.$key.
'[]='.urlencode($skey);
 
  391  } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
 
  392    $param .= 
'&search_'.$key.
'month='.((int) 
GETPOST(
'search_'.$key.
'month', 
'int'));
 
  393    $param .= 
'&search_'.$key.
'day='.((int) 
GETPOST(
'search_'.$key.
'day', 
'int'));
 
  394    $param .= 
'&search_'.$key.
'year='.((int) 
GETPOST(
'search_'.$key.
'year', 
'int'));
 
  395  } elseif ($search[$key] != 
'') {
 
  396    $param .= 
'&search_'.$key.
'='.urlencode($search[$key]);
 
  399if ($optioncss != 
'') {
 
  400  $param .= 
'&optioncss='.urlencode($optioncss);
 
  403include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
 
  405$parameters = array(
'param' => &$param);
 
  406$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object); 
 
  407$param .= $hookmanager->resPrint;
 
  410$arrayofmassactions = array(
 
  416if (!empty($permissiontodelete)) {
 
  417  $arrayofmassactions[
'predelete'] = 
img_picto(
'', 
'delete', 
'class="pictofixedwidth"').$langs->trans(
"Delete");
 
  419if (
GETPOST(
'nomassaction', 
'int') || in_array($massaction, array(
'presend', 
'predelete'))) {
 
  420  $arrayofmassactions = array();
 
  422$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
 
  424print 
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
 
  425if ($optioncss != 
'') {
 
  426  print 
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
 
  428print 
'<input type="hidden" name="token" value="'.newToken().
'">';
 
  429print 
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
 
  430print 
'<input type="hidden" name="action" value="list">';
 
  431print 
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
 
  432print 
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
 
  433print 
'<input type="hidden" name="page" value="'.$page.
'">';
 
  434print 
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
 
  435print 
'<input type="hidden" name="page_y" value="">';
 
  436print 
'<input type="hidden" name="mode" value="'.$mode.
'">';
 
  439$newcardbutton .= 
dolGetButtonTitle($langs->trans(
'ViewList'), 
'', 
'fa fa-bars imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=common'.preg_replace(
'/(&|\?)*mode=[^&]+/', 
'', $param), 
'', ((empty($mode) || $mode == 
'common') ? 2 : 1), array(
'morecss'=>
'reposition'));
 
  440$newcardbutton .= 
dolGetButtonTitle($langs->trans(
'ViewKanban'), 
'', 
'fa fa-th-list imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=kanban'.preg_replace(
'/(&|\?)*mode=[^&]+/', 
'', $param), 
'', ($mode == 
'kanban' ? 2 : 1), array(
'morecss'=>
'reposition'));
 
  442$newcardbutton .= 
dolGetButtonTitle($langs->trans(
'New'), 
'', 
'fa fa-plus-circle', DOL_URL_ROOT.
'/hrm/skill_card.php?action=create', 
'', $permissiontoadd);
 
  444print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 
'object_'.$object->picto, 0, $newcardbutton, 
'', $limit, 0, 0, 1);
 
  447$topicmail = 
"SendSkillRef";
 
  449$objecttmp = 
new Skill($db);
 
  450$trackid = 
'xxxx'.$object->id;
 
  451include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
 
  455  foreach ($fieldstosearchall as $key => $val) {
 
  456    $fieldstosearchall[$key] = $langs->trans($val);
 
  457    $setupstring .= $key.
"=".$val.
";";
 
  459  print 
'<!-- Search done like if HRM_SKILL_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
 
  460  print 
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).join(
', ', $fieldstosearchall).
'</div>'.
"\n";
 
  468$parameters = array();
 
  469$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action); 
 
  470if (empty($reshook)) {
 
  471  $moreforfilter .= $hookmanager->resPrint;
 
  473  $moreforfilter = $hookmanager->resPrint;
 
  476if (!empty($moreforfilter)) {
 
  477  print 
'<div class="liste_titre liste_titre_bydiv centpercent">';
 
  478  print $moreforfilter;
 
  479  $parameters = array(
'type'=>$type);
 
  480  $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action); 
 
  481  print $hookmanager->resPrint;
 
  485$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
 
  486$selectedfields = ($mode != 
'kanban' ? $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage, 
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN', 
'')) : 
''); 
 
  487$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) : 
'');
 
  489print 
'<div class="div-table-responsive">'; 
 
  490print 
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ? 
" listwithfilterbefore" : 
"").
'">'.
"\n";
 
  495print 
'<tr class="liste_titre_filter">';
 
  498  print 
'<td class="liste_titre maxwidthsearch center">';
 
  499  $searchpicto = $form->showFilterButtons(
'left');
 
  503foreach ($object->fields as $key => $val) {
 
  504  $searchkey = empty($search[$key]) ? 
'' : $search[$key];
 
  505  $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ? 
'' : $val[
'css']) : $val[
'csslist']);
 
  506  if ($key == 
'status') {
 
  507    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  508  } elseif (in_array($val[
'type'], array(
'date', 
'datetime', 
'timestamp'))) {
 
  509    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  510  } elseif (in_array($val[
'type'], array(
'timestamp'))) {
 
  511    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  512  } elseif (in_array($val[
'type'], array(
'double(24,8)', 
'double(6,3)', 
'integer', 
'real', 
'price')) && !in_array($key, array(
'id', 
'rowid', 
'ref', 
'status')) && $val[
'label'] != 
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
 
  513    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'right';
 
  515  if (!empty($arrayfields[
't.'.$key][
'checked'])) {
 
  516    print 
'<td class="liste_titre'.($cssforfield ? 
' '.$cssforfield : 
'').($key == 
'status' ? 
' parentonrightofpage' : 
'').
'">';
 
  517    if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
 
  518      print $form->selectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] : 
''), $val[
'notnull'], 0, 0, 
'', 1, 0, 0, 
'', 
'maxwidth100'.($key == 
'status' ? 
' search_status width100 onrightofpage' : 
''), 1);
 
  519    } elseif ((strpos($val[
'type'], 
'integer:') === 0) || (strpos($val[
'type'], 
'sellist:') === 0)) {
 
  520      print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] : 
''), 
'', 
'', 
'search_', $cssforfield.
' maxwidth250', 1);
 
  521    } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
 
  522      print 
'<div class="nowrap">';
 
  523      print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] : 
'', 
"search_".$key.
"_dtstart", 0, 0, 1, 
'', 1, 0, 0, 
'', 
'', 
'', 
'', 1, 
'', $langs->trans(
'From'));
 
  525      print 
'<div class="nowrap">';
 
  526      print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] : 
'', 
"search_".$key.
"_dtend", 0, 0, 1, 
'', 1, 0, 0, 
'', 
'', 
'', 
'', 1, 
'', $langs->trans(
'to'));
 
  528    } elseif ($key == 
'lang') {
 
  529      require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
 
  531      print $formadmin->select_language($search[$key], 
'search_lang', 0, 
null, 1, 0, 0, 
'minwidth150 maxwidth200', 2);
 
  533      print 
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] : 
'').
'">';
 
  539include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
 
  542$parameters = array(
'arrayfields'=>$arrayfields);
 
  543$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action); 
 
  544print $hookmanager->resPrint;
 
  547  print 
'<td class="liste_titre center maxwidthsearch">';
 
  548  $searchpicto = $form->showFilterButtons();
 
  554$totalarray = array();
 
  555$totalarray[
'nbfield'] = 0;
 
  559print 
'<tr class="liste_titre">';
 
  562  print 
getTitleFieldOfList(($mode != 
'kanban' ? $selectedfields : 
''), 0, $_SERVER[
"PHP_SELF"], 
'', 
'', 
'', 
'', $sortfield, $sortorder, 
'center maxwidthsearch ').
"\n";
 
  563  $totalarray[
'nbfield']++;
 
  565foreach ($object->fields as $key => $val) {
 
  566  $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ? 
'' : $val[
'css']) : $val[
'csslist']);
 
  567  if ($key == 
'status') {
 
  568    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  569  } elseif (in_array($val[
'type'], array(
'date', 
'datetime', 
'timestamp'))) {
 
  570    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  571  } elseif (in_array($val[
'type'], array(
'timestamp'))) {
 
  572    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  573  } elseif (in_array($val[
'type'], array(
'double(24,8)', 
'double(6,3)', 
'integer', 
'real', 
'price')) && !in_array($key, array(
'id', 
'rowid', 
'ref', 
'status')) && $val[
'label'] != 
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
 
  574    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'right';
 
  576  $cssforfield = preg_replace(
'/small\s*/', 
'', $cssforfield);  
 
  577  if (!empty($arrayfields[
't.'.$key][
'checked'])) {
 
  578    print 
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'], 
't.'.$key, 
'', $param, ($cssforfield ? 
'class="'.$cssforfield.
'"' : 
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' : 
''), 0, (empty($val[
'helplist']) ? 
'' : $val[
'helplist'])).
"\n";
 
  579    $totalarray[
'nbfield']++;
 
  583include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
 
  585$parameters = array(
'arrayfields'=>$arrayfields, 
'param'=>$param, 
'sortfield'=>$sortfield, 
'sortorder'=>$sortorder, 
'totalarray'=>&$totalarray);
 
  586$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action); 
 
  587print $hookmanager->resPrint;
 
  590  print 
getTitleFieldOfList(($mode != 
'kanban' ? $selectedfields : 
''), 0, $_SERVER[
"PHP_SELF"], 
'', 
'', 
'', 
'', $sortfield, $sortorder, 
'center maxwidthsearch ').
"\n";
 
  591  $totalarray[
'nbfield']++;
 
  597$needToFetchEachLine = 0;
 
  598if (isset($extrafields->attributes[$object->table_element][
'computed']) && is_array($extrafields->attributes[$object->table_element][
'computed']) && count($extrafields->attributes[$object->table_element][
'computed']) > 0) {
 
  599  foreach ($extrafields->attributes[$object->table_element][
'computed'] as $key => $val) {
 
  600    if (!is_null($val) && preg_match(
'/\$object/', $val)) {
 
  601      $needToFetchEachLine++; 
 
  610$savnbfield = $totalarray[
'nbfield'];
 
  611$totalarray = array();
 
  612$totalarray[
'nbfield'] = 0;
 
  613$imaxinloop = ($limit ? min($num, $limit) : $num);
 
  614while ($i < $imaxinloop) {
 
  615  $obj = $db->fetch_object($resql);
 
  621  $object->setVarsFromFetchObj($obj);
 
  623  if ($mode == 
'kanban') {
 
  625      print 
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
 
  626      print 
'<div class="box-flex-container kanban">';
 
  630    $object->skill_type = $obj->skill_type;
 
  631    $object->description = $obj->description;
 
  635    if ($massactionbutton || $massaction) { 
 
  637      if (in_array($object->id, $arrayofselected)) {
 
  641    print $object->getKanbanView(
'', array(
'selected' => $selected));
 
  642    if ($i == ($imaxinloop - 1)) {
 
  649    print 
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
 
  652      print 
'<td class="nowrap center">';
 
  653      if ($massactionbutton || $massaction) { 
 
  655        if (in_array($object->id, $arrayofselected)) {
 
  658        print 
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ? 
' checked="checked"' : 
'').
'>';
 
  662        $totalarray[
'nbfield']++;
 
  665    foreach ($object->fields as $key => $val) {
 
  666      $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ? 
'' : $val[
'css']) : $val[
'csslist']);
 
  667      if (in_array($val[
'type'], array(
'date', 
'datetime', 
'timestamp'))) {
 
  668        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  669      } elseif ($key == 
'status') {
 
  670        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  673      if (in_array($val[
'type'], array(
'timestamp'))) {
 
  674        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  675      } elseif ($key == 
'ref') {
 
  676        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  679      if (in_array($val[
'type'], array(
'double(24,8)', 
'double(6,3)', 
'integer', 
'real', 
'price')) && !in_array($key, array(
'rowid', 
'status')) && empty($val[
'arrayofkeyval'])) {
 
  680        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'right';
 
  684      if (!empty($arrayfields[
't.'.$key][
'checked'])) {
 
  685        print 
'<td'.($cssforfield ? 
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ? 
' classfortooltip' : 
'').
'"' : 
'');
 
  686        if (preg_match(
'/tdoverflow/', $cssforfield) && !is_numeric($object->$key)) {
 
  687          print 
' title="'.dol_escape_htmltag($object->$key).
'"';
 
  690        if ($key == 
'status') {
 
  691          print $object->getLibStatut(5);
 
  692        } elseif ($key == 
'rowid') {
 
  693          print $object->showOutputField($val, $key, $object->id, 
'');
 
  694        } elseif ($key == 
'label') {
 
  695          print $object->getNomUrl(1);
 
  697          print $object->showOutputField($val, $key, $object->$key, 
'');
 
  701          $totalarray[
'nbfield']++;
 
  703        if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
 
  705            $totalarray[
'pos'][$totalarray[
'nbfield']] = 
't.'.$key;
 
  707          if (!isset($totalarray[
'val'])) {
 
  708            $totalarray[
'val'] = array();
 
  710          if (!isset($totalarray[
'val'][
't.'.$key])) {
 
  711            $totalarray[
'val'][
't.'.$key] = 0;
 
  713          $totalarray[
'val'][
't.'.$key] += $object->$key;
 
  718    include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
 
  720    $parameters = array(
'arrayfields'=>$arrayfields, 
'object'=>$object, 
'obj'=>$obj, 
'i'=>$i, 
'totalarray'=>&$totalarray);
 
  721    $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action); 
 
  722    print $hookmanager->resPrint;
 
  725      print 
'<td class="nowrap center">';
 
  726      if ($massactionbutton || $massaction) { 
 
  728        if (in_array($object->id, $arrayofselected)) {
 
  731        print 
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ? 
' checked="checked"' : 
'').
'>';
 
  735        $totalarray[
'nbfield']++;
 
  745include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
 
  750  foreach ($arrayfields as $key => $val) {
 
  751    if (!empty($val[
'checked'])) {
 
  755  print 
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
 
  761$parameters = array(
'arrayfields'=>$arrayfields, 
'sql'=>$sql);
 
  762$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action); 
 
  763print $hookmanager->resPrint;
 
  765print 
'</table>'.
"\n";
 
  770if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords === 
'' || $nbtotalofrecords)) {
 
  771  $hidegeneratedfilelistifempty = 1;
 
  772  if ($massaction == 
'builddoc' || $action == 
'remove_file' || $show_files) {
 
  773    $hidegeneratedfilelistifempty = 0;
 
  776  require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
 
  780  $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
 
  781  $urlsource .= str_replace(
'&', 
'&', $param);
 
  783  $filedir = $diroutputmassaction;
 
  784  $genallowed = $permissiontoread;
 
  785  $delallowed = $permissiontoadd;
 
  787  print $formfile->showdocuments(
'massfilesarea_hrm', 
'', $filedir, $urlsource, 0, $delallowed, 
'', 1, 1, 0, 48, 1, $param, $title, 
'', 
'', 
'', 
null, $hidegeneratedfilelistifempty);
 
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
 
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
 
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
 
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...
 
dol_now($mode='auto')
Return date for now.
 
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
 
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
 
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...
 
dol_eval($s, $returnvalue=0, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
 
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
 
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
 
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.
 
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
 
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.