phpcs showbookmark.php
This commit is contained in:
parent
f3999ab92d
commit
3fea4aba7f
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue
Block a user