Skip to content

Commit 4d1fe19

Browse files
committed
added visible aliases on website list
1 parent 59002e1 commit 4d1fe19

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/site/controllers/Admin/Websites.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ protected function getTableHeader()
215215
'ID' => 'id',
216216
'Site Name' => 'site_name',
217217
'Domain' => 'domain',
218+
'Aliases' => null,
218219
'Default Locale' => 'default_locale',
219220
'actions' => null,
220221
];
@@ -234,6 +235,7 @@ function ($website) {
234235
'ID' => $website->id,
235236
'Site Name' => $website->site_name,
236237
'Domain' => $website->domain,
238+
'Aliases' => $website->aliases,
237239
'Default Locale' => $website->default_locale,
238240
'actions' => '<a class="btn btn-primary btn-sm" href="'. $this->getControllerUrl() .'?action=edit&website_id='. $website->id.'">'.$this->getUtils()->getIcon('edit') .'</a>
239241
<a class="btn btn-danger btn-sm" href="'. $this->getControllerUrl() .'?action=delete&website_id='. $website->id.'">'.$this->getUtils()->getIcon('trash') .'</a>'

0 commit comments

Comments
 (0)