mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-03 23:52:24 +01:00
197 lines
5.6 KiB
PHP
197 lines
5.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2005 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/bookmarks/liste.php
|
|
\brief Page affichage des bookmarks
|
|
\ingroup bookmark
|
|
\version $Revision$
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/bookmarks/bookmark.class.php");
|
|
|
|
|
|
$page=$_GET["page"];
|
|
$sortorder=$_GET["sortorder"];
|
|
$sortfield=$_GET["sortfield"];
|
|
if (! $sortorder) $sortorder="DESC";
|
|
if (! $sortfield) $sortfield="bid";
|
|
|
|
if ($page == -1) { $page = 0 ; }
|
|
$limit = 26;
|
|
$offset = $limit * $page ;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if ($_GET["action"] == 'delete')
|
|
{
|
|
$bookmark=new Bookmark($db);
|
|
$res=$bookmark->remove($_GET["bid"]);
|
|
if ($res > 0)
|
|
{
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
}
|
|
else
|
|
{
|
|
$mesg='<div class="error">'.$bookmark->error.'</div>';
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* Affichage liste
|
|
*/
|
|
|
|
llxHeader();
|
|
|
|
print_fiche_titre($langs->trans("Bookmarks"));
|
|
|
|
if ($mesg) print $mesg;
|
|
|
|
$sql = "SELECT b.fk_soc as rowid, ".$db->pdate("b.dateb")." as dateb, b.rowid as bid, b.fk_user, b.url, b.target, b.title, b.favicon,";
|
|
$sql.= " u.login, u.name, u.firstname";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."bookmark as b, ".MAIN_DB_PREFIX."user as u";
|
|
$sql.= " WHERE b.fk_user=u.rowid";
|
|
if (! $user->admin) $sql.= " AND (b.fk_user = ".$user->id." OR b.fk_user is NULL)";
|
|
$sql.= " ORDER BY $sortfield $sortorder " . $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("Id"),$_SERVER["PHP_SELF"],"bid","","",'align="left"',$sortfield,$sortorder);
|
|
print '<td>'.$langs->trans("Title")."</td>";
|
|
print '<td>'.$langs->trans("Link")."</td>";
|
|
print '<td align="center">'.$langs->trans("Target")."</td>";
|
|
print_liste_field_titre($langs->trans("Author"),$_SERVER["PHP_SELF"],"u.name","","",'align="center"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Date"),$_SERVER["PHP_SELF"],"b.dateb","","",'align="center"',$sortfield,$sortorder);
|
|
print "<td> </td>";
|
|
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=\"fiche.php?id=".$obj->bid."\">".img_object($langs->trans("ShowBookmark"),"bookmark").' '.$obj->bid."</a>";
|
|
print '</td>';
|
|
|
|
$lieninterne=0;
|
|
$title=dolibarr_trunc($obj->title,24);
|
|
$lien=dolibarr_trunc($obj->url,24);
|
|
|
|
// Title
|
|
print "<td>";
|
|
if ($obj->rowid)
|
|
{
|
|
// Lien interne societe
|
|
$lieninterne=1;
|
|
$lien="Dolibarr";
|
|
if (! $obj->title)
|
|
{
|
|
// Pour compatibilite avec anciens bookmarks
|
|
require_once(DOL_DOCUMENT_ROOT."/societe.class.php");
|
|
$societe=new Societe($db);
|
|
$societe->fetch($obj->rowid);
|
|
$obj->title=$societe->nom;
|
|
}
|
|
$title=img_object($langs->trans("ShowCompany"),"company").' '.$obj->title;
|
|
}
|
|
if ($lieninterne) print "<a href=\"".$obj->url."\">";
|
|
print $title;
|
|
if ($lieninterne) print "</a>";
|
|
print "</td>\n";
|
|
|
|
// Url
|
|
print "<td>";
|
|
if (! $lieninterne) print '<a href="'.$obj->url.'"'.($obj->target?' target="newlink"':'').'>';
|
|
print $lien;
|
|
if (! $lieninterne) 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";
|
|
|
|
// Auteur
|
|
print '<td align="center"><a href="'.DOL_URL_ROOT.'/user/fiche.php?id='.$obj->fk_user.'">'.img_object($langs->trans("ShowUser"),"user").' '.$obj->login."</a></td>\n";
|
|
|
|
// Date creation
|
|
print '<td align="center">'.dolibarr_print_date($obj->dateb) ."</td>";
|
|
|
|
// Actions
|
|
print "<td>";
|
|
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
|
|
{
|
|
dolibarr_print_error($db);
|
|
}
|
|
|
|
|
|
|
|
print "<div class=\"tabsAction\">\n";
|
|
|
|
if ($user->rights->bookmark->creer)
|
|
{
|
|
print '<a class="butAction" href="fiche.php?action=create">'.$langs->trans("NewBookmark").'</a>';
|
|
}
|
|
|
|
print '</div>';
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|