84 lines
2.1 KiB
PHP
84 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @author Maurice Preuß <hello@envoyr.com>
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Tabellisting
|
|
*
|
|
*/
|
|
|
|
use Froxlor\UI\Callbacks\Email;
|
|
use Froxlor\UI\Callbacks\Text;
|
|
use Froxlor\UI\Listing;
|
|
|
|
return [
|
|
'email_list' => [
|
|
'title' => $lng['menue']['email']['emails'],
|
|
'icon' => 'fa-solid fa-envelope',
|
|
'columns' => [
|
|
'm.email_full' => [
|
|
'label' => $lng['emails']['emailaddress'],
|
|
'column' => 'email_full',
|
|
],
|
|
'm.destination' => [
|
|
'label' => $lng['emails']['forwarders'],
|
|
'column' => 'destination',
|
|
// @todo formatting
|
|
],
|
|
'm.popaccountid' => [
|
|
'label' => $lng['emails']['account'],
|
|
'column' => 'popaccountid',
|
|
'format_callback' => [Email::class, 'account'],
|
|
],
|
|
'm.iscatchall' => [
|
|
'label' => $lng['emails']['catchall'],
|
|
'column' => 'iscatchall',
|
|
'format_callback' => [Text::class, 'boolean'],
|
|
'visible' => \Froxlor\Settings::Get('catchall.catchall_enabled') == '1'
|
|
],
|
|
'm.quota' => [
|
|
'label' => $lng['emails']['quota'],
|
|
'column' => 'quota',
|
|
'visible' => \Froxlor\Settings::Get('system.mail_quota_enabled') == '1'
|
|
]
|
|
],
|
|
'visible_columns' => Listing::getVisibleColumnsForListing('email_list', [
|
|
'm.email_full',
|
|
'm.destination',
|
|
'm.popaccountid',
|
|
'm.iscatchall',
|
|
'm.quota'
|
|
]),
|
|
'actions' => [
|
|
'edit' => [
|
|
'icon' => 'fa fa-edit',
|
|
'href' => [
|
|
'section' => 'email',
|
|
'page' => 'emails',
|
|
'action' => 'edit',
|
|
'id' => ':id'
|
|
],
|
|
],
|
|
'delete' => [
|
|
'icon' => 'fa fa-trash',
|
|
'class' => 'text-danger',
|
|
'href' => [
|
|
'section' => 'email',
|
|
'page' => 'emails',
|
|
'action' => 'delete',
|
|
'id' => ':id'
|
|
],
|
|
]
|
|
]
|
|
]
|
|
];
|