* @license https://files.froxlor.org/misc/COPYING.txt GPLv2 */ use Froxlor\UI\Listing; return [ 'mailtpl_list' => [ 'title' => lng('admin.templates.templates'), 'icon' => 'fa-solid fa-envelope', 'self_overview' => ['section' => 'templates', 'page' => 'email'], 'default_sorting' => ['template' => 'asc'], 'no_search' => true, 'columns' => [ 'language' => [ 'label' => lng('login.language'), 'field' => 'language' ], 'template' => [ 'label' => lng('admin.templates.action'), 'field' => 'template' ], ], 'visible_columns' => Listing::getVisibleColumnsForListing('mailtpl_list', [ 'language', 'template' ]), 'actions' => [ 'edit' => [ 'icon' => 'fa-solid fa-edit', 'title' => lng('panel.edit'), 'href' => [ 'section' => 'templates', 'page' => $page, 'action' => 'edit', 'subjectid' => ':subjectid', 'mailbodyid' => ':mailbodyid' ], ], 'delete' => [ 'icon' => 'fa-solid fa-trash', 'title' => lng('panel.delete'), 'class' => 'btn-danger', 'href' => [ 'section' => 'templates', 'page' => $page, 'action' => 'delete', 'subjectid' => ':subjectid', 'mailbodyid' => ':mailbodyid' ], ], ], ] ];