(2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Tabellisting * */ use Froxlor\UI\Listing; return [ 'filetpl_list' => [ 'title' => $lng['admin']['templates']['filetemplates'], 'icon' => 'fa-solid fa-file-lines', 'columns' => [ 'template' => [ 'label' => $lng['admin']['templates']['action'], 'field' => 'template' ], ], 'visible_columns' => Listing::getVisibleColumnsForListing('filetpl_list', [ 'template' ]), 'actions' => [ 'edit' => [ 'icon' => 'fa fa-edit', 'title' => $lng['panel']['edit'], 'href' => [ 'section' => 'templates', 'page' => $page, 'action' => 'editf', 'id' => ':id' ], ], 'delete' => [ 'icon' => 'fa fa-trash', 'title' => $lng['panel']['delete'], 'class' => 'text-danger', 'href' => [ 'section' => 'templates', 'page' => $page, 'action' => 'deletef', 'id' => ':id' ], ], ], ] ];