mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
GridFieldBlogPostState: Made indentation consistant
This commit is contained in:
parent
5fd07b2c17
commit
511dab9e78
@ -31,17 +31,20 @@ class GridFieldBlogPostState implements GridField_ColumnProvider {
|
||||
if($record->hasMethod("isPublished")) {
|
||||
$published = $record->isPublished();
|
||||
if(!$published) {
|
||||
return _t("GridFieldBlogPostState.Draft",
|
||||
return _t(
|
||||
"GridFieldBlogPostState.Draft",
|
||||
'<i class="btn-icon blog-icon btn-icon-pencil"></i> Saved as Draft on {date}',
|
||||
"State for when a post is saved.", array(
|
||||
"State for when a post is saved.",
|
||||
array(
|
||||
"date" => $record->dbObject("LastEdited")->Nice()
|
||||
)
|
||||
);
|
||||
)
|
||||
);
|
||||
} else if (strtotime($record->PublishDate) > time()) {
|
||||
return _t(
|
||||
"GridFieldBlogPostState.Timer",
|
||||
'<i class="blog-icon blog-icon-timer"></i> Publish at {date}',
|
||||
"State for when a post is published.", array(
|
||||
"State for when a post is published.",
|
||||
array(
|
||||
"date" => $record->dbObject("PublishDate")->Nice()
|
||||
)
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user