mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
221 lines
6.4 KiB
PHP
221 lines
6.4 KiB
PHP
<?php
|
|
/* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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 htdocs/bookmarks/list.php
|
|
* \brief Page to display list of bookmarks
|
|
* \ingroup bookmark
|
|
*/
|
|
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/bookmarks/class/bookmark.class.php';
|
|
|
|
$langs->load("bookmarks");
|
|
$langs->load("admin");
|
|
|
|
// Security check
|
|
if (! $user->rights->bookmark->lire) {
|
|
restrictedArea($user, 'bookmarks');
|
|
}
|
|
|
|
$sortfield = GETPOST("sortfield",'alpha');
|
|
$sortorder = GETPOST("sortorder",'alpha');
|
|
$page = GETPOST("page",'int');
|
|
if ($page == -1) { $page = 0 ; }
|
|
$offset = $conf->liste_limit * $page ;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
if (! $sortorder) $sortorder="ASC";
|
|
if (! $sortfield) $sortfield="position";
|
|
$limit=$conf->liste_limit;
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if ($_GET["action"] == 'delete')
|
|
{
|
|
$bookmark=new Bookmark($db);
|
|
$res=$bookmark->remove($_GET["bid"]);
|
|
if ($res > 0)
|
|
{
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
setEventMessage($bookmark->error, 'errors');
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$userstatic=new User($db);
|
|
|
|
llxHeader();
|
|
|
|
print_fiche_titre($langs->trans("Bookmarks"));
|
|
|
|
$sql = "SELECT b.fk_soc as rowid, b.dateb, b.rowid as bid, b.fk_user, b.url, b.target, b.title, b.favicon, b.position,";
|
|
$sql.= " u.login, u.lastname, u.firstname";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."bookmark as b LEFT JOIN ".MAIN_DB_PREFIX."user as u ON b.fk_user=u.rowid";
|
|
$sql.= " WHERE 1=1";
|
|
$sql.= " AND b.entity = ".$conf->entity;
|
|
if (! $user->admin) $sql.= " AND (b.fk_user = ".$user->id." OR b.fk_user is NULL OR b.fk_user = 0)";
|
|
$sql.= $db->order($sortfield.", position",$sortorder);
|
|
$sql.= $db->plimit($limit, $offset);
|
|
|
|
$resql=$db->query($sql);
|
|
if ($resql)
|
|
{
|
|
$num = $db->num_rows($resql);
|
|
$i = 0;
|
|
|
|
print "<table class=\"noborder\" width=\"100%\">";
|
|
|
|
print "<tr class=\"liste_titre\">";
|
|
//print "<td> </td>";
|
|
print_liste_field_titre($langs->trans("Ref"),$_SERVER["PHP_SELF"],"bid","","",'align="left"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Title"),'','');
|
|
print "</td>";
|
|
print_liste_field_titre($langs->trans("Link"),'','');
|
|
print "</td>";
|
|
print_liste_field_titre($langs->trans("Target"),'','','','','align="center"');
|
|
print "</td>";
|
|
print_liste_field_titre($langs->trans("Owner"),$_SERVER["PHP_SELF"],"u.lastname","","",'align="center"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Date"),$_SERVER["PHP_SELF"],"b.dateb","","",'align="center"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Position"),$_SERVER["PHP_SELF"],"b.position","","",'align="right"',$sortfield,$sortorder);
|
|
print_liste_field_titre('');
|
|
print "</tr>\n";
|
|
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$obj = $db->fetch_object($resql);
|
|
|
|
$var=!$var;
|
|
print "<tr ".$bc[$var].">";
|
|
|
|
// Id
|
|
print '<td align="left">';
|
|
print "<a href=\"card.php?id=".$obj->bid."\">".img_object($langs->trans("ShowBookmark"),"bookmark").' '.$obj->bid."</a>";
|
|
print '</td>';
|
|
|
|
$linkintern=0;
|
|
$title=dol_trunc($obj->title,24);
|
|
$link=dol_trunc($obj->url,24);
|
|
|
|
// Title
|
|
print "<td>";
|
|
if ($obj->rowid)
|
|
{
|
|
// Lien interne societe
|
|
$linkintern=1;
|
|
$link="Dolibarr";
|
|
if (! $obj->title)
|
|
{
|
|
// For compatibility with old Dolibarr bookmarks
|
|
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
|
|
$societe=new Societe($db);
|
|
$societe->fetch($obj->rowid);
|
|
$obj->title=$societe->name;
|
|
}
|
|
$title=img_object($langs->trans("ShowCompany"),"company").' '.$obj->title;
|
|
}
|
|
if ($linkintern) print "<a href=\"".$obj->url."\">";
|
|
print $title;
|
|
if ($linkintern) print "</a>";
|
|
print "</td>\n";
|
|
|
|
// Url
|
|
print "<td>";
|
|
if (! $linkintern) print '<a href="'.$obj->url.'"'.($obj->target?' target="newlink"':'').'>';
|
|
print $link;
|
|
if (! $linkintern) print '</a>';
|
|
print "</td>\n";
|
|
|
|
// Target
|
|
print '<td align="center">';
|
|
if ($obj->target == 0) print $langs->trans("BookmarkTargetReplaceWindowShort");
|
|
if ($obj->target == 1) print $langs->trans("BookmarkTargetNewWindowShort");
|
|
print "</td>\n";
|
|
|
|
// Author
|
|
print '<td align="center">';
|
|
if ($obj->fk_user)
|
|
{
|
|
$userstatic->id=$obj->fk_user;
|
|
$userstatic->lastname=$obj->login;
|
|
print $userstatic->getNomUrl(1);
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("Public");
|
|
}
|
|
print "</td>\n";
|
|
|
|
// Date creation
|
|
print '<td align="center">'.dol_print_date($db->jdate($obj->dateb),'day')."</td>";
|
|
|
|
// Position
|
|
print '<td align="right">'.$obj->position."</td>";
|
|
|
|
// Actions
|
|
print '<td align="right" class="nowrap">';
|
|
if ($user->rights->bookmark->creer)
|
|
{
|
|
print "<a href=\"".DOL_URL_ROOT."/bookmarks/card.php?action=edit&id=".$obj->bid."&backtopage=".urlencode($_SERVER["PHP_SELF"])."\">".img_edit()."</a> ";
|
|
}
|
|
if ($user->rights->bookmark->supprimer)
|
|
{
|
|
print "<a href=\"".$_SERVER["PHP_SELF"]."?action=delete&bid=$obj->bid\">".img_delete()."</a>";
|
|
}
|
|
else
|
|
{
|
|
print " ";
|
|
}
|
|
print "</td>";
|
|
print "</tr>\n";
|
|
$i++;
|
|
}
|
|
print "</table>";
|
|
$db->free($resql);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
|
|
|
|
print "<div class=\"tabsAction\">\n";
|
|
|
|
if ($user->rights->bookmark->creer)
|
|
{
|
|
print '<a class="butAction" href="card.php?action=create">'.$langs->trans("NewBookmark").'</a>';
|
|
}
|
|
|
|
print '</div>';
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter();
|