Пример #1
0
 function getMailboxAction()
 {
     @($id = DevblocksPlatform::importGPC($_REQUEST['id'], 'integer', 0));
     $tpl = DevblocksPlatform::getTemplateService();
     $tpl->assign('path', $this->_TPL_PATH);
     if (!empty($id)) {
         @($pop3 = DAO_Mail::getPop3Account($id));
         $tpl->assign('pop3_account', $pop3);
     }
     $tpl->display('file:' . $this->_TPL_PATH . 'configuration/tabs/mail/edit_pop3_account.tpl');
     return;
 }