(2010-) * @author Maurice Preuß * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Tabellisting * */ use Froxlor\UI\Callbacks\Mysql; use Froxlor\UI\Callbacks\Text; use Froxlor\UI\Listing; return [ 'mysql_list' => [ 'title' => $lng['menue']['mysql']['databases'], 'icon' => 'fa-solid fa-database', 'columns' => [ 'databasename' => [ 'label' => $lng['mysql']['databasename'], 'field' => 'databasename', ], 'description' => [ 'label' => $lng['mysql']['databasedescription'], 'field' => 'description' ], 'size' => [ 'label' => $lng['mysql']['size'], 'field' => 'size', 'callback' => [Text::class, 'size'] ], 'dbserver' => [ 'label' => $lng['mysql']['mysql_server'], 'field' => 'dbserver', 'callback' => [Mysql::class, 'dbserver'], 'visible' => $count_mysqlservers > 1 ] ], 'visible_columns' => Listing::getVisibleColumnsForListing('mysql_list', [ 'databasename', 'description', 'size', 'dbserver' ]), 'actions' => [ 'edit' => [ 'icon' => 'fa fa-edit', 'title' => $lng['panel']['edit'], 'href' => [ 'section' => 'mysql', 'page' => 'mysqls', 'action' => 'edit', 'id' => ':id' ], ], 'delete' => [ 'icon' => 'fa fa-trash', 'title' => $lng['panel']['delete'], 'class' => 'text-danger', 'href' => [ 'section' => 'mysql', 'page' => 'mysqls', 'action' => 'delete', 'id' => ':id' ], ] ] ] ];