mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
508 lines
18 KiB
PHP
508 lines
18 KiB
PHP
<?php
|
|
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2005-2016 Laurent Destailleur <eldy@users.sourceforge.org>
|
|
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
|
|
* Copyright (C) 2012-2018 Regis Houssin <regis.houssin@inodbox.com>
|
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
|
* Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/api/admin/index.php
|
|
* \ingroup api
|
|
* \brief Page to setup Webservices REST module
|
|
*/
|
|
|
|
// Load Dolibarr environment
|
|
require '../../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/api.lib.php';
|
|
|
|
/**
|
|
* @var Conf $conf
|
|
* @var DoliDB $db
|
|
* @var Form $form
|
|
* @var HookManager $hookmanager
|
|
* @var Translate $langs
|
|
* @var User $user
|
|
*
|
|
* @var string $dolibarr_main_url_root
|
|
*/
|
|
|
|
// Load translation files required by the page
|
|
$langs->loadLangs(array('admin', 'users'));
|
|
$error = 0;
|
|
|
|
if (!$user->admin) {
|
|
accessforbidden();
|
|
}
|
|
|
|
// Retrieve needed GETPOSTS for this file
|
|
// Action / Massaction
|
|
$action = GETPOST('action', 'aZ09');
|
|
$massaction = GETPOST('massaction', 'alpha');
|
|
$confirm = GETPOST('confirm', 'alpha');
|
|
$toselect = GETPOST('toselect', 'array');
|
|
|
|
// List filters
|
|
$search_token = GETPOST('search_token', 'alpha');
|
|
$search_user = GETPOST('search_user', 'alpha');
|
|
$search_entity = GETPOST('search_entity', 'alpha');
|
|
$search_datec_startday = GETPOSTINT('search_datec_startday');
|
|
$search_datec_startmonth = GETPOSTINT('search_datec_startmonth');
|
|
$search_datec_startyear = GETPOSTINT('search_datec_startyear');
|
|
$search_datec_endday = GETPOSTINT('search_datec_endday');
|
|
$search_datec_endmonth = GETPOSTINT('search_datec_endmonth');
|
|
$search_datec_endyear = GETPOSTINT('search_datec_endyear');
|
|
$search_datec_start = dol_mktime(0, 0, 0, $search_datec_startmonth, $search_datec_startday, $search_datec_startyear);
|
|
$search_datec_end = dol_mktime(23, 59, 59, $search_datec_endmonth, $search_datec_endday, $search_datec_endyear);
|
|
$search_tms_startday = GETPOSTINT('search_tms_startday');
|
|
$search_tms_startmonth = GETPOSTINT('search_tms_startmonth');
|
|
$search_tms_startyear = GETPOSTINT('search_tms_startyear');
|
|
$search_tms_endday = GETPOSTINT('search_tms_endday');
|
|
$search_tms_endmonth = GETPOSTINT('search_tms_endmonth');
|
|
$search_tms_endyear = GETPOSTINT('search_tms_endyear');
|
|
$search_tms_start = dol_mktime(0, 0, 0, $search_tms_startmonth, $search_tms_startday, $search_tms_startyear);
|
|
$search_tms_end = dol_mktime(23, 59, 59, $search_tms_endmonth, $search_tms_endday, $search_tms_endyear);
|
|
|
|
// Pagination
|
|
$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
|
|
$sortfield = GETPOST('sortfield', 'aZ09comma');
|
|
$sortorder = GETPOST('sortorder', 'aZ09comma');
|
|
$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
|
|
if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
|
|
$page = 0;
|
|
}
|
|
$offset = $limit * $page;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
|
|
if (!$sortfield) {
|
|
$sortfield = 'oat.token';
|
|
}
|
|
if (!$sortorder) {
|
|
$sortorder = 'DESC';
|
|
}
|
|
|
|
$arrayfields = array(
|
|
'oat.token' => array('label' => "ApiToken", 'checked' => '1'),
|
|
'u.login' => array('label' => "User", 'checked' => '1'),
|
|
'e.label' => array('label' => "Entity", 'checked' => '1'),
|
|
'oat.datec' => array('label' => "DateCreation", 'checked' => '1'),
|
|
'oat.tms' => array('label' => "DateModification", 'checked' => '1'),
|
|
);
|
|
|
|
/*
|
|
* Action
|
|
*/
|
|
if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
|
|
$search_token = '';
|
|
$search_user = '';
|
|
$search_entity = '';
|
|
$search_datec_startday = '';
|
|
$search_datec_startmonth = '';
|
|
$search_datec_startyear = '';
|
|
$search_datec_endday = '';
|
|
$search_datec_endmonth = '';
|
|
$search_datec_endyear = '';
|
|
$search_datec_start = '';
|
|
$search_datec_end = '';
|
|
$search_tms_startday = '';
|
|
$search_tms_startmonth = '';
|
|
$search_tms_startyear = '';
|
|
$search_tms_endday = '';
|
|
$search_tms_endmonth = '';
|
|
$search_tms_endyear = '';
|
|
$search_tms_start = '';
|
|
$search_tms_end = '';
|
|
|
|
$toselect = array();
|
|
}
|
|
if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')
|
|
|| GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) {
|
|
$massaction = ''; // Protection to avoid mass action if we force a new search during a mass action confirmation
|
|
}
|
|
if (($action == 'delete' && $confirm == 'yes')) {
|
|
$db->begin();
|
|
|
|
$nbok = 0;
|
|
$TMsg = array();
|
|
|
|
//$toselect could contain duplicate entries, cf https://github.com/Dolibarr/dolibarr/issues/26244
|
|
$unique_arr = array_unique($toselect);
|
|
foreach ($unique_arr as $toselectid) {
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."oauth_token";
|
|
$sql .= " WHERE rowid = '".$toselectid."'";
|
|
$sql .= " AND service = 'dolibarr_rest_api'";
|
|
|
|
$result = $db->query($sql);
|
|
|
|
if ($result > 0) {
|
|
$nbok++;
|
|
} else {
|
|
setEventMessages($db->error(), null, 'errors');
|
|
$error++;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (empty($error)) {
|
|
// Message for elements well deleted
|
|
if ($nbok > 1) {
|
|
setEventMessages($langs->trans("RecordsDeleted", $nbok), null, 'mesgs');
|
|
} elseif ($nbok > 0) {
|
|
setEventMessages($langs->trans("RecordDeleted", $nbok), null, 'mesgs');
|
|
} else {
|
|
setEventMessages($langs->trans("NoRecordDeleted"), null, 'mesgs');
|
|
}
|
|
$db->commit();
|
|
} else {
|
|
$db->rollback();
|
|
}
|
|
|
|
//var_dump($listofobjectthirdparties);exit;
|
|
}
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$nbtotalofrecords = '';
|
|
if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
|
|
/* The fast and low memory method to get and count full list converts the sql into a sql count */
|
|
$sqlforcount = 'SELECT COUNT(*) as nbtotalofrecords';
|
|
$sqlforcount .= " FROM ".MAIN_DB_PREFIX."oauth_token as oat";
|
|
$sqlforcount .= " WHERE entity IN (".$conf->entity.")";
|
|
$sqlforcount .= " AND service = 'dolibarr_rest_api'";
|
|
$resql = $db->query($sqlforcount);
|
|
if ($resql) {
|
|
$objforcount = $db->fetch_object($resql);
|
|
$nbtotalofrecords = $objforcount->nbtotalofrecords;
|
|
} else {
|
|
dol_print_error($db);
|
|
}
|
|
|
|
if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
|
|
$page = 0;
|
|
$offset = 0;
|
|
}
|
|
$db->free($resql);
|
|
}
|
|
|
|
$sql = "SELECT oat.rowid as token_id, oat.token, oat.entity, oat.state as rights, oat.fk_user, oat.datec as date_creation, oat.tms as date_modification";
|
|
if (isModEnabled('multicompany')) {
|
|
$sql .= ", e.label as entity_name";
|
|
}
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."oauth_token as oat";
|
|
if (isModEnabled('multicompany')) {
|
|
$sql .= " JOIN ".$db->prefix()."entity as e ON oat.entity = e.rowid";
|
|
}
|
|
$sql .= " WHERE service = 'dolibarr_rest_api'";
|
|
if (!isModEnabled('multicompany') || $conf->entity > 1) {
|
|
$sql .= " AND oat.entity IN (".$conf->entity.")";
|
|
}
|
|
if ($search_token) {
|
|
$sql .= natural_search('oat.token', $search_token);
|
|
}
|
|
if ($search_user) {
|
|
$sql .= natural_search('u.login', $search_user);
|
|
}
|
|
if ($search_entity) {
|
|
$sql .= natural_search('e.label', $search_entity);
|
|
}
|
|
if ($search_datec_start) {
|
|
$sql .= " AND oat.datec >= '".$db->idate($search_datec_start)."'";
|
|
}
|
|
if ($search_datec_end) {
|
|
$sql .= " AND oat.datec <= '".$db->idate($search_datec_end)."'";
|
|
}
|
|
if ($search_tms_start) {
|
|
$sql .= " AND oat.tms >= '".$db->idate($search_tms_start)."'";
|
|
}
|
|
if ($search_tms_end) {
|
|
$sql .= " AND oat.tms <= '".$db->idate($search_tms_end)."'";
|
|
}
|
|
$sql .= $db->order($sortfield, $sortorder);
|
|
if ($limit) {
|
|
$sql .= $db->plimit($limit + 1, $offset);
|
|
}
|
|
|
|
$resql = $db->query($sql);
|
|
|
|
$num = $db->num_rows($resql);
|
|
|
|
llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-api page-admin-index');
|
|
|
|
$param = '';
|
|
if ($limit > 0 && $limit != $conf->liste_limit) {
|
|
$param .= '&limit='.((int) $limit);
|
|
}
|
|
if ($search_datec_startday) {
|
|
$param .= '&search_date_startday='.urlencode((string) ($search_datec_startday));
|
|
}
|
|
if ($search_datec_startmonth) {
|
|
$param .= '&search_date_startmonth='.urlencode((string) ($search_datec_startmonth));
|
|
}
|
|
if ($search_datec_startyear) {
|
|
$param .= '&search_date_startyear='.urlencode((string) ($search_datec_startyear));
|
|
}
|
|
if ($search_datec_endday) {
|
|
$param .= '&search_date_endday='.urlencode((string) ($search_datec_endday));
|
|
}
|
|
if ($search_datec_endmonth) {
|
|
$param .= '&search_date_endmonth='.urlencode((string) ($search_datec_endmonth));
|
|
}
|
|
if ($search_datec_endyear) {
|
|
$param .= '&search_date_endyear='.urlencode((string) ($search_datec_endyear));
|
|
}
|
|
if ($search_tms_startday) {
|
|
$param .= '&search_date_startday='.urlencode((string) ($search_tms_startday));
|
|
}
|
|
if ($search_tms_startmonth) {
|
|
$param .= '&search_date_startmonth='.urlencode((string) ($search_tms_startmonth));
|
|
}
|
|
if ($search_tms_startyear) {
|
|
$param .= '&search_date_startyear='.urlencode((string) ($search_tms_startyear));
|
|
}
|
|
if ($search_tms_endday) {
|
|
$param .= '&search_date_endday='.urlencode((string) ($search_tms_endday));
|
|
}
|
|
if ($search_tms_endmonth) {
|
|
$param .= '&search_date_endmonth='.urlencode((string) ($search_tms_endmonth));
|
|
}
|
|
if ($search_tms_endyear) {
|
|
$param .= '&search_date_endyear='.urlencode((string) ($search_tms_endyear));
|
|
}
|
|
|
|
$arrayofselected = is_array($toselect) ? $toselect : array();
|
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
|
|
print load_fiche_titre($langs->trans("ApiSetup"), $linkback, 'title_setup');
|
|
|
|
$head = api_admin_prepare_head();
|
|
|
|
print dol_get_fiche_head($head, 'token_list', '', -1);
|
|
|
|
$arrayofmassactions = array(
|
|
'predelete' => img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete")
|
|
);
|
|
|
|
if (GETPOSTINT('nomassaction') || in_array($massaction, array('presend', 'predelete'))) {
|
|
$arrayofmassactions = array();
|
|
}
|
|
$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
|
|
|
|
$morehtmlright = '';
|
|
$tmpurlforbutton = DOL_URL_ROOT.'/user/api_token/card.php?action=create&backtopage='.urlencode(DOL_URL_ROOT.'/api/admin/token_list.php');
|
|
$morehtmlright .= dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', $tmpurlforbutton);
|
|
|
|
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
|
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
|
|
print '<input type="hidden" name="action" value="list">';
|
|
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
|
|
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
|
|
|
print_barre_liste($langs->trans("ListOfTokensForAllUsers"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, '', 0, $morehtmlright, '', $limit, 0, 0, 1);
|
|
|
|
include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
|
|
|
|
if (empty($reshook)) {
|
|
print '<!-- List of tokens of all users -->';
|
|
print '<table class="noborder centpercent">';
|
|
|
|
print '<tr class="liste_titre_filter">';
|
|
|
|
// Action buttons
|
|
if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="liste_titre center">';
|
|
$searchpicto = $form->showFilterButtons('left');
|
|
print $searchpicto;
|
|
print '</td>';
|
|
}
|
|
|
|
// Token string
|
|
if (!empty($arrayfields['oat.token']['checked'])) {
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat" type="text" name="search_token" value="'.dol_escape_htmltag($search_token).'">';
|
|
print '</td>';
|
|
}
|
|
|
|
// Entity
|
|
if (!empty($arrayfields['u.login']['checked'])) {
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat maxwidth100" type="text" name="search_user" value="'.dol_escape_htmltag($search_user).'">';
|
|
print '</td>';
|
|
}
|
|
|
|
// Entity
|
|
if (!empty($arrayfields['e.label']['checked']) && isModEnabled('multicompany')) {
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat maxwidth100" type="text" name="search_entity" value="'.dol_escape_htmltag($search_entity).'">';
|
|
print '</td>';
|
|
}
|
|
|
|
// Number of perms
|
|
// We don't search out number of perms because it is a string field,
|
|
// and we don't want to count into it with sql query
|
|
print '<td class="liste_titre"></td>';
|
|
|
|
// Date creation
|
|
if (!empty($arrayfields['oat.datec']['checked'])) {
|
|
print '<td class="liste_titre center">';
|
|
print '<div class="nowrapfordate">';
|
|
print $form->selectDate($search_datec_start ? $search_datec_start : -1, 'search_datec_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
|
|
print '</div>';
|
|
print '<div class="nowrapfordate">';
|
|
print $form->selectDate($search_datec_end ? $search_datec_end : -1, 'search_datec_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
|
|
print '</div>';
|
|
print '</td>';
|
|
}
|
|
|
|
// Date modification
|
|
if (!empty($arrayfields['oat.tms']['checked'])) {
|
|
print '<td class="liste_titre center">';
|
|
print '<div class="nowrapfordate">';
|
|
print $form->selectDate($search_tms_start ? $search_tms_start : -1, 'search_tms_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
|
|
print '</div>';
|
|
print '<div class="nowrapfordate">';
|
|
print $form->selectDate($search_tms_end ? $search_tms_end : -1, 'search_tms_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
|
|
print '</div>';
|
|
print '</td>';
|
|
}
|
|
|
|
// Action buttons
|
|
if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="liste_titre center">';
|
|
$searchpicto = $form->showFilterButtons('left');
|
|
print $searchpicto;
|
|
print '</td>';
|
|
}
|
|
|
|
print "</tr>";
|
|
|
|
print '<tr class="liste_titre">';
|
|
if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<th class="wrapcolumntitle center maxwidthsearch liste_titre">';
|
|
print $form->showCheckAddButtons('checkforselect', 1);
|
|
print '</th>';
|
|
}
|
|
if (!empty($arrayfields['oat.token']['checked'])) {
|
|
print_liste_field_titre($arrayfields['oat.token']['label'], $_SERVER["PHP_SELF"], 'oat.token', '', $param, '', $sortfield, $sortorder);
|
|
}
|
|
if (!empty($arrayfields['u.login']['checked'])) {
|
|
print_liste_field_titre($arrayfields['u.login']['label'], $_SERVER["PHP_SELF"], 'u.login', '', $param, '', $sortfield, $sortorder);
|
|
}
|
|
if (!empty($arrayfields['e.label']['checked']) && isModEnabled('multicompany')) {
|
|
print_liste_field_titre($arrayfields['e.label']['label'], $_SERVER["PHP_SELF"], 'e.label', '', $param, '', $sortfield, $sortorder);
|
|
}
|
|
print '<th class="liste_titre right">'.$langs->trans("NumberOfPermissions").'</th>';
|
|
if (!empty($arrayfields['oat.datec']['checked'])) {
|
|
print_liste_field_titre($arrayfields['oat.datec']['label'], $_SERVER["PHP_SELF"], 'oat.datec', '', $param, '', $sortfield, $sortorder, 'center ');
|
|
}
|
|
if (!empty($arrayfields['oat.tms']['checked'])) {
|
|
print_liste_field_titre($arrayfields['oat.tms']['label'], $_SERVER["PHP_SELF"], 'oat.tms', '', $param, '', $sortfield, $sortorder, 'center ');
|
|
}
|
|
if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<th class="wrapcolumntitle center maxwidthsearch liste_titre">';
|
|
print $form->showCheckAddButtons('checkforselect', 1);
|
|
print '</th>';
|
|
}
|
|
print '</tr>';
|
|
|
|
// List of tokens of user
|
|
$i = 0;
|
|
$imaxinloop = ($limit ? min($num, $limit) : $num);
|
|
if ($num > 0) {
|
|
while ($i < $imaxinloop) {
|
|
// Compute number of perms
|
|
$obj = $db->fetch_object($resql);
|
|
$currentuser = new User($db);
|
|
$currentuser->fetch($obj->fk_user);
|
|
$numperms = 0;
|
|
if (!empty($obj->rights)) {
|
|
$numperms = count(explode(",", $obj->rights));
|
|
}
|
|
print '<tr class="oddeven">';
|
|
// Action column
|
|
if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="nowrap center">';
|
|
if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
|
|
$selected = 0;
|
|
if (in_array($obj->token_id, $arrayofselected)) {
|
|
$selected = 1;
|
|
}
|
|
print '<input id="cb'.$obj->token_id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->token_id.'"'.($selected ? ' checked="checked"' : '').'>';
|
|
}
|
|
print '</td>';
|
|
}
|
|
print '<td>';
|
|
print '<a href="'.DOL_URL_ROOT.'/user/api_token/card.php?id='.$obj->fk_user.'&tokenid='.$obj->token_id.'">';
|
|
print dolDecrypt($obj->token);
|
|
print '</a>';
|
|
print '</td>';
|
|
print '<td>';
|
|
print '<a href="'.DOL_URL_ROOT.'/user/card.php?id='.$obj->fk_user.'">';
|
|
print $currentuser->getNomUrl(1);
|
|
print '</a>';
|
|
print '</td>';
|
|
if (isModEnabled('multicompany')) {
|
|
print '<td>';
|
|
print '<span class="multicompany-entity-container">';
|
|
print '<span class="fa fa-globe multicompany-button-template" title="'.$langs->trans("Entity").'"></span>';
|
|
print $obj->entity_name;
|
|
print ' </span>';
|
|
print '</td>';
|
|
}
|
|
print '<td class="right">';
|
|
print $numperms;
|
|
print '</td>';
|
|
print '<td class="center">';
|
|
print dol_print_date($db->jdate($obj->date_creation), 'day');
|
|
print '</td>';
|
|
print '<td class="center">';
|
|
print dol_print_date($db->jdate($obj->date_modification), 'day');
|
|
print '</td>';
|
|
if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="nowrap center">';
|
|
if ($massactionbutton || $massaction) {
|
|
$selected = 0;
|
|
if (in_array($obj->token_id, $arrayofselected)) {
|
|
$selected = 1;
|
|
}
|
|
print '<input id="cb'.$obj->token_id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->token_id.'"'.($selected ? ' checked="checked"' : '').'>';
|
|
}
|
|
print '</td>';
|
|
}
|
|
print '</tr>';
|
|
$i++;
|
|
}
|
|
} else {
|
|
$colspan = 6; // Base colspan
|
|
if (isModEnabled('multicompany')) {
|
|
$colspan++;
|
|
}
|
|
print '<tr class="oddeven"><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
|
|
}
|
|
|
|
print "</table>";
|
|
print '</form>';
|
|
}
|
|
|
|
llxFooter();
|
|
$db->close();
|