forked from Wavyzz/dolibarr
152 lines
4.5 KiB
PHP
152 lines
4.5 KiB
PHP
<?php
|
|
/* Copyright (C) 2013-2014 Jean-François Ferry <jfefe@aternatik.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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file resource/index.php
|
|
* \ingroup resource
|
|
* \brief Page to manage resource objects
|
|
*/
|
|
|
|
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/resource/class/dolresource.class.php';
|
|
|
|
// Load translations files required by page
|
|
$langs->load("resource");
|
|
$langs->load("companies");
|
|
$langs->load("other");
|
|
|
|
// Get parameters
|
|
$id = GETPOST('id','int');
|
|
$action = GETPOST('action','alpha');
|
|
|
|
$lineid = GETPOST('lineid','int');
|
|
$element = GETPOST('element','alpha');
|
|
$element_id = GETPOST('element_id','int');
|
|
$resource_id = GETPOST('resource_id','int');
|
|
|
|
$sortorder = GETPOST('sortorder','alpha');
|
|
$sortfield = GETPOST('sortfield','alpha');
|
|
$page = GETPOST('page','int');
|
|
|
|
$object = new Dolresource($db);
|
|
|
|
$hookmanager->initHooks(array('resource_list'));
|
|
|
|
if (empty($sortorder)) $sortorder="ASC";
|
|
if (empty($sortfield)) $sortfield="t.rowid";
|
|
if (empty($arch)) $arch = 0;
|
|
|
|
if ($page == -1) {
|
|
$page = 0 ;
|
|
}
|
|
|
|
$limit = GETPOST('limit')?GETPOST('limit','int'):$conf->liste_limit;
|
|
$offset = $limit * $page ;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
|
|
if( ! $user->rights->resource->read)
|
|
accessforbidden();
|
|
|
|
|
|
/*
|
|
* Action
|
|
*/
|
|
|
|
$parameters=array();
|
|
$reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks
|
|
if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$form=new Form($db);
|
|
|
|
$pagetitle=$langs->trans('ResourcePageIndex');
|
|
llxHeader('',$pagetitle,'');
|
|
|
|
// Confirmation suppression resource line
|
|
if ($action == 'delete_resource')
|
|
{
|
|
print $form->formconfirm($_SERVER['PHP_SELF']."?element=".$element."&element_id=".$element_id."&lineid=".$lineid,$langs->trans("DeleteResource"),$langs->trans("ConfirmDeleteResourceElement"),"confirm_delete_resource",'','',1);
|
|
}
|
|
|
|
// Load object list
|
|
$ret = $object->fetch_all($sortorder, $sortfield, $limit, $offset);
|
|
if($ret == -1) {
|
|
dol_print_error($db,$object->error);
|
|
exit;
|
|
} else {
|
|
print_barre_liste($pagetitle, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $ret+1, $object->num_all,'title_generic.png');
|
|
}
|
|
|
|
$var=true;
|
|
|
|
print '<table class="noborder" width="100%">'."\n";
|
|
print '<tr class="liste_titre">';
|
|
print_liste_field_titre($langs->trans('Ref'),$_SERVER['PHP_SELF'],'t.ref','',$param,'',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans('ResourceType'),$_SERVER['PHP_SELF'],'ty.code','',$param,'',$sortfield,$sortorder);
|
|
print_liste_field_titre('',"","","","",'width="60" align="center"',"","");
|
|
print "</tr>\n";
|
|
|
|
if ($ret)
|
|
{
|
|
foreach ($object->lines as $resource)
|
|
{
|
|
$var=!$var;
|
|
|
|
$style='';
|
|
if ($resource->id == GETPOST('lineid')) $style='style="background: orange;"';
|
|
|
|
print '<tr '.$bc[$var].' '.$style.'>';
|
|
|
|
print '<td>';
|
|
print $resource->getNomUrl(5);
|
|
print '</td>';
|
|
|
|
print '<td>';
|
|
print $resource->type_label;
|
|
print '</td>';
|
|
|
|
print '<td align="center">';
|
|
print '<a href="./card.php?action=edit&id='.$resource->id.'">';
|
|
print img_edit();
|
|
print '</a>';
|
|
print ' ';
|
|
print '<a href="./card.php?action=delete&id='.$resource->id.'">';
|
|
print img_delete();
|
|
print '</a>';
|
|
print '</td>';
|
|
|
|
print '</tr>';
|
|
}
|
|
|
|
print '</table>';
|
|
}
|
|
else
|
|
{
|
|
print '<tr><td class="opacitymedium">'.$langs->trans('NoResourceInDatabase').'</td></tr>';
|
|
}
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|