summaryrefslogtreecommitdiffstatshomepage
path: root/templates/bookmarks.tpl.php
diff options
context:
space:
mode:
authorGravatar mensonge2009-01-15 16:58:14 +0000
committerGravatar mensonge2009-01-15 16:58:14 +0000
commit8e9d354af15afcb26c1a56b279f9c03f2fbd75ca (patch)
tree4dcda73953d5c38d9df64e67f6bef377e8ad656a /templates/bookmarks.tpl.php
parentd91520b491625b3eed6c8c8d3ba2c8f0db13af7a (diff)
downloadscuttle-8e9d354af15afcb26c1a56b279f9c03f2fbd75ca.tar.gz
scuttle-8e9d354af15afcb26c1a56b279f9c03f2fbd75ca.zip
Minor Refactoring: tps)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@235 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/bookmarks.tpl.php')
-rw-r--r--templates/bookmarks.tpl.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php
index 299dc0a..6203d33 100644
--- a/templates/bookmarks.tpl.php
+++ b/templates/bookmarks.tpl.php
@@ -8,6 +8,8 @@ $cdservice =& ServiceFactory::getServiceInstance('CommonDescriptionService');
$pageName = isset($pageName)?$pageName:"";
$user = isset($user)?$user:"";
+$currenttag = isset($currenttag)?$currenttag:"";
+
$this->includeTemplate($GLOBALS['top_include']);
@@ -28,12 +30,12 @@ include('search.inc.php');
<?php
// common tag description
-if((isset($currenttag) && $currenttag!= '' && $GLOBALS['enableCommonTagDescription'])
+if(($currenttag!= '' && $GLOBALS['enableCommonTagDescription'])
|| (isset($hash) && $GLOBALS['enableCommonBookmarkDescription'])):?>
<p class="commondescription"><?php
-if(isset($currenttag) && $currenttag!= '' && $cdservice->getLastTagDescription($currenttag)) {
+if($currenttag!= '' && $cdservice->getLastTagDescription($currenttag)) {
$description = $cdservice->getLastTagDescription($currenttag);
echo nl2br(filter($description['cdDescription']));
} elseif(isset($hash) && $cdservice->getLastBookmarkDescription($hash)) {
@@ -44,7 +46,7 @@ if(isset($currenttag) && $currenttag!= '' && $cdservice->getLastTagDescription($
//common tag description edit
if($userservice->isLoggedOn()) {
- if(isset($currenttag) && $currenttag!= '') {
+ if($currenttag!= '') {
echo ' <a href="'. createURL('tagcommondescriptionedit', $currenttag).'">';
echo T_('common description').' <img src="'.ROOT.'images/b_edit.png" /></a>';
} elseif(isset($hash)) {
@@ -58,7 +60,7 @@ if($userservice->isLoggedOn()) {
<?php
/* personal tag description */
-if(isset($currenttag) && $currenttag!= '' && isset($user)) {
+if($currenttag!= '' && $user!='') {
$userObject = $userservice->getUserByUsername($user);
if($tagservice->getDescription($currenttag, $userObject['uId'])) { ?>
@@ -68,7 +70,7 @@ echo nl2br(filter($description['tDescription']));
//personal tag description edit
if($userservice->isLoggedOn()) {
- if(isset($currenttag) && $currenttag!= '') {
+ if($currenttag!= '') {
echo ' <a href="'. createURL('tagedit', $currenttag).'">';
echo T_('personal description').' <img src="'.ROOT.'images/b_edit.png" /></a>';
}
@@ -98,8 +100,8 @@ if (!isset($hash)) {
<?php
}
?> <?php
-if(isset($currenttag) && $currenttag!= '') {
- if(isset($user) && $user!= '') {
+if($currenttag!= '') {
+ if($user!= '') {
echo ' - ';
echo '<a href="'. createURL('tags', $currenttag) .'">';
echo T_('Bookmarks from other users for this tag').'</a>';