2007-12-12 16:29:16 +00:00
|
|
|
<?php
|
|
|
|
/***************************************************************************
|
|
|
|
Copyright (C) 2006 Scuttle project
|
|
|
|
http://sourceforge.net/projects/scuttle/
|
|
|
|
http://scuttle.org/
|
|
|
|
|
|
|
|
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
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
require_once('header.inc.php');
|
2008-11-25 15:57:29 +00:00
|
|
|
|
|
|
|
/* Service creation: only useful services are created */
|
2008-04-21 08:44:44 +00:00
|
|
|
$b2tservice = & ServiceFactory :: getServiceInstance('Bookmark2TagService');
|
2008-12-05 07:25:04 +00:00
|
|
|
|
2007-12-12 16:29:16 +00:00
|
|
|
|
2008-11-25 15:57:29 +00:00
|
|
|
/* Managing all possible inputs */
|
|
|
|
isset($_POST['confirm']) ? define('POST_CONFIRM', $_POST['confirm']): define('POST_CONFIRM', '');
|
|
|
|
isset($_POST['cancel']) ? define('POST_CANCEL', $_POST['cancel']): define('POST_CANCEL', '');
|
|
|
|
isset($_POST['referrer']) ? define('POST_REFERRER', $_POST['referrer']): define('POST_REFERRER', '');
|
|
|
|
|
|
|
|
/* Managing current logged user */
|
|
|
|
$currentUser = $userservice->getCurrentObjectUser();
|
2008-02-21 16:00:35 +00:00
|
|
|
|
2008-11-25 15:57:29 +00:00
|
|
|
/* Managing path info */
|
2007-12-12 16:29:16 +00:00
|
|
|
list ($url, $tag) = explode('/', $_SERVER['PATH_INFO']);
|
|
|
|
|
2008-11-25 15:57:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (POST_CONFIRM) {
|
|
|
|
if ($b2tservice->deleteTag($currentUser->getId(), $tag)) {
|
2008-02-21 16:00:35 +00:00
|
|
|
$tplVars['msg'] = T_('Tag deleted');
|
2008-11-25 15:57:29 +00:00
|
|
|
header('Location: '. createURL('bookmarks', $currentUser->getUsername()));
|
2007-12-12 16:29:16 +00:00
|
|
|
} else {
|
|
|
|
$tplVars['error'] = T_('Failed to delete the tag');
|
|
|
|
$templateservice->loadTemplate('error.500.tpl', $tplVars);
|
|
|
|
exit();
|
|
|
|
}
|
2008-11-25 15:57:29 +00:00
|
|
|
} elseif (POST_CANCEL) {
|
|
|
|
header('Location: '. POST_REFERRER);
|
2007-12-12 16:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$tplVars['subtitle'] = T_('Delete Tag') .': '. $tag;
|
|
|
|
$tplVars['formaction'] = $_SERVER['SCRIPT_NAME'] .'/'. $tag;
|
|
|
|
$tplVars['referrer'] = $_SERVER['HTTP_REFERER'];
|
|
|
|
$templateservice->loadTemplate('tagdelete.tpl', $tplVars);
|
2008-02-21 16:00:35 +00:00
|
|
|
?>
|