Skip to content

Commit

Permalink
Updated page exports to use absolute time format
Browse files Browse the repository at this point in the history
For #1065
  • Loading branch information
ssddanbrown committed Dec 22, 2018
1 parent f62843c commit f4ea5f1
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/pages/export.blade.php
Expand Up @@ -23,7 +23,7 @@
<hr>

<div class="text-muted text-small">
@include('partials.entity-meta', ['entity' => $page])
@include('partials.entity-export-meta', ['entity' => $page])
</div>

</div>
Expand Down
33 changes: 33 additions & 0 deletions resources/views/partials/entity-export-meta.blade.php
@@ -0,0 +1,33 @@
<div class="entity-meta">
@if($entity->isA('revision'))
@icon('history'){{ trans('entities.pages_revision') }}
{{ trans('entities.pages_revisions_number') }}{{ $entity->revision_number == 0 ? '' : $entity->revision_number }}
<br>
@endif

@if ($entity->isA('page'))
@if (userCan('page-update', $entity)) <a href="{{ $entity->getUrl('/revisions') }}"> @endif
@icon('history'){{ trans('entities.meta_revision', ['revisionCount' => $entity->revision_count]) }} <br>
@if (userCan('page-update', $entity))</a>@endif
@endif

@if ($entity->createdBy)
@icon('star'){!! trans('entities.meta_created_name', [
'timeLength' => '<span>'.$entity->created_at->toDayDateTimeString() . '</span>',
'user' => "<a href='{$entity->createdBy->getProfileUrl()}'>".htmlentities($entity->createdBy->name). "</a>"
]) !!}
@else
@icon('star')<span>{{ trans('entities.meta_created', ['timeLength' => $entity->created_at->toDayDateTimeString()]) }}</span>
@endif

<br>

@if ($entity->updatedBy)
@icon('edit'){!! trans('entities.meta_updated_name', [
'timeLength' => '<span>' . $entity->updated_at->toDayDateTimeString() .'</span>',
'user' => "<a href='{$entity->updatedBy->getProfileUrl()}'>".htmlentities($entity->updatedBy->name). "</a>"
]) !!}
@elseif (!$entity->isA('revision'))
@icon('edit')<span>{{ trans('entities.meta_updated', ['timeLength' => $entity->updated_at->toDayDateTimeString()]) }}</span>
@endif
</div>
11 changes: 11 additions & 0 deletions tests/Entity/ExportTest.php
Expand Up @@ -123,4 +123,15 @@ public function test_page_html_export_contains_custom_head_if_set()
$resp->assertSee($customHeadContent);
}

public function test_page_html_export_use_absolute_dates()
{
$page = Page::first();

$resp = $this->asEditor()->get($page->getUrl('/export/html'));
$resp->assertSee($page->created_at->toDayDateTimeString());
$resp->assertDontSee($page->created_at->diffForHumans());
$resp->assertSee($page->updated_at->toDayDateTimeString());
$resp->assertDontSee($page->updated_at->diffForHumans());
}

}

0 comments on commit f4ea5f1

Please sign in to comment.