mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-10 07:16:06 -06:00
Merge branch 'master' of https://github.com/openclassify/openclassify into muammertop
This commit is contained in:
commit
e7ae6675cf
@ -27,8 +27,8 @@ class AdvTableColumns
|
|||||||
'value' => [
|
'value' => [
|
||||||
'id' => 'entry.id',
|
'id' => 'entry.id',
|
||||||
'date' => function(EntryInterface $entry){
|
'date' => function(EntryInterface $entry){
|
||||||
$created_at = date_format($entry['created_at'], 'd.m.Y H:i');
|
$created_at = ($entry['created_at']) ?date_format($entry['created_at'], 'd.m.Y H:i'): '';
|
||||||
$finish_at = date_format($entry['finish_at'], 'd.m.Y H:i');
|
$finish_at = ($entry['finish_at']) ? date_format($entry['finish_at'], 'd.m.Y H:i'): '';
|
||||||
return $created_at . ' <i class="fa fa-angle-right"></i> ' . $finish_at;
|
return $created_at . ' <i class="fa fa-angle-right"></i> ' . $finish_at;
|
||||||
},
|
},
|
||||||
'name' => function (EntryInterface $entry) {
|
'name' => function (EntryInterface $entry) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user