index.html.php 697 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * The index view file of mail module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  5. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  6. * @author Wang Yidong <yidong@easycorp.ltd>
  7. * @package mail
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. formPanel
  12. (
  13. set::title($lang->mail->selectMTA),
  14. set::size('sm'),
  15. set::bodyClass('text-center'),
  16. set::actions(array
  17. (
  18. common::hasPriv('mail', 'detect') ? array('url' => inLink('detect'), 'text' => $lang->mail->smtp) : null
  19. ))
  20. );
  21. render();