(2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Tabellisting * */ use Froxlor\UI\Listing; return [ 'mailtpl_list' => [ 'title' => $lng['admin']['templates']['templates'], 'icon' => 'fa-solid fa-envelope', '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 fa-edit', 'title' => $lng['panel']['edit'], 'href' => [ 'section' => 'templates', 'page' => $page, 'action' => 'edit', 'subjectid' => ':subjectid', 'mailbodyid' => ':mailbodyid' ], ], 'delete' => [ 'icon' => 'fa fa-trash', 'title' => $lng['panel']['delete'], 'class' => 'text-danger', 'href' => [ 'section' => 'templates', 'page' => $page, 'action' => 'delete', 'subjectid' => ':subjectid', 'mailbodyid' => ':mailbodyid' ], ], ], ] ];