From 3fea4aba7f02b9489a3209c4104f3b013ec30709 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 29 Dec 2010 14:24:30 -0800 Subject: [PATCH] phpcs showbookmark.php --- plugins/Bookmark/showbookmark.php | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/plugins/Bookmark/showbookmark.php b/plugins/Bookmark/showbookmark.php index 54f333fd52..e9e656f84c 100644 --- a/plugins/Bookmark/showbookmark.php +++ b/plugins/Bookmark/showbookmark.php @@ -82,7 +82,7 @@ class ShowbookmarkAction extends ShownoticeAction } $dt = new DateTime($this->trimmed('created'), - new DateTimeZone('UTC')); + new DateTimeZone('UTC')); if (empty($dt)) { throw new ClientException(_('No such create date.'), 404); @@ -91,7 +91,7 @@ class ShowbookmarkAction extends ShownoticeAction $bookmarks = Bookmark::getByCRC32($this->profile, $crc32); - foreach ($bookmarks as $bookmark) { + foreach ($bookmarks as $bookmark) { $bdt = new DateTime($bookmark->created, new DateTimeZone('UTC')); if ($bdt->format('U') == $dt->format('U')) { $this->bookmark = $bookmark; @@ -113,6 +113,14 @@ class ShowbookmarkAction extends ShownoticeAction return true; } + /** + * Title of the page + * + * Used by Action class for layout. + * + * @return string page tile + */ + function title() { return sprintf(_('%s\'s bookmark for "%s"'), @@ -120,6 +128,12 @@ class ShowbookmarkAction extends ShownoticeAction $this->bookmark->title); } + /** + * Overload page title display to show bookmark link + * + * @return void + */ + function showPageTitle() { $this->elementStart('h1');