(2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Formfields * */ return array( 'emails_edit' => array( 'title' => $lng['emails']['emails_edit'], 'image' => 'icons/email_edit.png', 'sections' => array( 'section_a' => array( 'title' => $lng['emails']['emails_edit'], 'image' => 'icons/email_edit.png', 'nobuttons' => true, 'fields' => array( 'email_full' => array( 'label' => $lng['emails']['emailaddress'], 'type' => 'label', 'value' => $result['email_full'] ), 'account_yes' => array( 'visible' => ($result['popaccountid'] != 0 ? true : false), 'label' => $lng['emails']['account'], 'type' => 'label', 'value' => $lng['panel']['yes'] . ' [' . $lng['menue']['main']['changepassword'] . '] [' . $lng['emails']['account_delete'] . ']' ), 'account_no' => array( 'visible' => ($result['popaccountid'] == 0 ? true : false), 'label' => $lng['emails']['account'], 'type' => 'label', 'value' => $lng['panel']['no'] . ' [' . $lng['emails']['account_add'] . ']' ), 'mail_quota' => array( 'visible' => ($result['popaccountid'] != 0 && \Froxlor\Settings::Get('system.mail_quota_enabled')), 'label' => $lng['customer']['email_quota'], 'type' => 'label', 'value' => $result['quota'] . ' MiB [' . $lng['emails']['quota_edit'] . ']' ), 'mail_catchall' => array( 'label' => $lng['emails']['catchall'], 'type' => 'label', 'value' => ($result['iscatchall'] == 0 ? $lng['panel']['no'] : $lng['panel']['yes']) . ' [' . $lng['panel']['toggle'] . ']' ), 'mail_fwds' => array( 'label' => $lng['emails']['forwarders'] . ' (' . $forwarders_count . ')', 'type' => 'label', 'value' => $forwarders . ' ' . $lng['emails']['forwarder_add'] . '' ) ) ) ) ) );