當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BackendTemplate::import方法代碼示例

本文整理匯總了PHP中BackendTemplate::import方法的典型用法代碼示例。如果您正苦於以下問題:PHP BackendTemplate::import方法的具體用法?PHP BackendTemplate::import怎麽用?PHP BackendTemplate::import使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在BackendTemplate的用法示例。


在下文中一共展示了BackendTemplate::import方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: send

 /**
  * Show preview and send the Newsletter.
  *
  * @return string
  */
 public function send()
 {
     $id = $this->Input->get('id');
     $newsletter = AvisotaNewsletter::load($id);
     if (!$newsletter) {
         $this->redirect('contao/main.php?do=avisota_newsletter');
     }
     $category = AvisotaNewsletterCategory::load($newsletter->pid);
     if (!$category) {
         $this->redirect('contao/main.php?do=avisota_newsletter');
     }
     if (!$this->User->isAdmin) {
         if (!is_array($this->User->avisota_newsletter_categories) || count($this->User->avisota_newsletter_categories) < 1) {
             $root = array(0);
         } else {
             $root = $this->User->avisota_newsletter_categories;
         }
         if (!in_array($category->id, $root)) {
             $this->log('Not enough permissions to send newsletter from category ID ' . $category->id, 'Avisota::send()', TL_ERROR);
             $this->redirect('contao/main.php?act=error');
         }
     }
     AvisotaStatic::pushCategory($category);
     AvisotaStatic::pushNewsletter($newsletter);
     $template = new BackendTemplate('be_avisota_send');
     $template->import('BackendUser', 'User');
     // allow backend sending
     $template->beSend = $this->Base->allowBackendSending();
     // Store the current referer
     $session = $this->Session->get('referer');
     if ($session['current'] != $this->Environment->requestUri) {
         $session['orm_avisota_message'] = $this->Environment->requestUri;
         $session['last'] = $session['current'];
         $session['current'] = $this->Environment->requestUri;
         $this->Session->set('referer', $session);
     }
     $template->users = $this->getAllowedUsers();
     return $template->parse();
 }
開發者ID:avisota,項目名稱:contao-core,代碼行數:44,代碼來源:Avisota.php


注:本文中的BackendTemplate::import方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。