From 15b91c7e661d928d8b125ec9cfbda1702319c8b4 Mon Sep 17 00:00:00 2001 From: mensonge Date: Tue, 25 Nov 2008 15:57:29 +0000 Subject: Major refactoring: transform user into object, define parameters used into each file, ... git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@173 b3834d28-1941-0410-a4f8-b48e95affb8f --- bookmarkcommondescriptionedit.php | 92 ++++++++++++++++++++++----------------- 1 file changed, 52 insertions(+), 40 deletions(-) (limited to 'bookmarkcommondescriptionedit.php') diff --git a/bookmarkcommondescriptionedit.php b/bookmarkcommondescriptionedit.php index c70dac0..1ac316e 100644 --- a/bookmarkcommondescriptionedit.php +++ b/bookmarkcommondescriptionedit.php @@ -1,64 +1,76 @@ getCurrentUser(); +//$logged_on_user = $userservice->getCurrentUser(); +$currentObjectUser = $userservice->getCurrentObjectUser(); //permissions -if($logged_on_user == null) { - $tplVars['error'] = T_('Permission denied.'); - $templateservice->loadTemplate('error.500.tpl', $tplVars); - exit(); +if(is_null($currentObjectUser)) { + $tplVars['error'] = T_('Permission denied.'); + $templateservice->loadTemplate('error.500.tpl', $tplVars); + exit(); } -if ($_POST['confirm']) { - - if (strlen($hash)>0 && - $cdservice->addBookmarkDescription($_POST['hash'], stripslashes($_POST['title']), stripslashes($_POST['description']), $logged_on_user['uId'], time()) - ) { - $tplVars['msg'] = T_('Bookmark common description updated'); - header('Location: '. $_POST['referrer']); - } else { - $tplVars['error'] = T_('Failed to update the bookmark common description'); - $template = 'error.500.tpl'; - } -} elseif ($_POST['cancel']) { - $logged_on_user = $userservice->getCurrentUser(); - header('Location: '. $_POST['referrer']); +if (POST_CONFIRM) { + if (strlen($hash)>0 && + $cdservice->addBookmarkDescription(POST_HASH, stripslashes(POST_TITLE), stripslashes(POST_DESCRIPTION), $currentObjectUser->getId(), time()) + ) { + $tplVars['msg'] = T_('Bookmark common description updated'); + header('Location: '. POST_REFERRER); + } else { + $tplVars['error'] = T_('Failed to update the bookmark common description'); + $template = 'error.500.tpl'; + } +} elseif (POST_CANCEL) { + $logged_on_user = $userservice->getCurrentUser(); + header('Location: '. POST_REFERRER); } else { - $bkm = $bookmarkservice->getBookmarkByHash($hash); + $bkm = $bookmarkservice->getBookmarkByHash($hash); - $tplVars['subtitle'] = T_('Edit Bookmark Common Description') .': '. $bkm['bAddress']; - $tplVars['formaction'] = $_SERVER['SCRIPT_NAME'] .'/'. $hash; - $tplVars['referrer'] = $_SERVER['HTTP_REFERER']; - $tplVars['hash'] = $hash; - $tplVars['description'] = $cdservice->getLastBookmarkDescription($hash); + $tplVars['subtitle'] = T_('Edit Bookmark Common Description') .': '. $bkm['bAddress']; + $tplVars['formaction'] = $_SERVER['SCRIPT_NAME'] .'/'. $hash; + $tplVars['referrer'] = $_SERVER['HTTP_REFERER']; + $tplVars['hash'] = $hash; + $tplVars['description'] = $cdservice->getLastBookmarkDescription($hash); } $templateservice->loadTemplate($template, $tplVars); ?> -- cgit v1.2.3