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


PHP helper::error方法代碼示例

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


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

示例1: handle

 /**
  * Controller for mChat
  *
  * @return \Symfony\Component\HttpFoundation\Response A Symfony Response object
  */
 public function handle()
 {
     $ret = $this->render_helper->render_data_for_page();
     // If this was an ajax request, we just create an json_response and return that. It's not ours to handle here.
     if ($this->request->is_ajax() && is_array($ret) && isset($ret['json']) && $ret['json'] === true) {
         return new \Symfony\Component\HttpFoundation\JsonResponse($ret);
     }
     // If error occured, render it
     if (isset($ret['error']) && $ret['error'] == true) {
         return $this->helper->error($ret['error_text'], $ret['error_type']);
     }
     return $this->helper->render($ret['filename'], $ret['lang_title']);
 }
開發者ID:ezpz-cz,項目名稱:web-plugins,代碼行數:18,代碼來源:mchat.php

示例2: suggest_tags

 /**
  * Gets suggestions for tags based on a ajax request, route: /tags/suggest
  *
  * @param php://input raw post data must contain a json-encoded object of this structure: {"query":"...", "exclude":["...", "...", ...]}
  */
 public function suggest_tags()
 {
     if (false && $this->request->is_ajax()) {
         $data = json_decode(file_get_contents('php://input'), true);
         $query = $data['query'];
         $exclude = $data['exclude'];
         $tags = $this->tags_manager->get_tag_suggestions($query, $exclude, 5);
         $json_response = new json_response();
         $json_response->send($tags);
     }
     // fake a 404
     return $this->helper->error($this->user->lang('RH_TOPICTAGS_TAG_SUGGEST_TAG_ROUTE_ERROR', $this->helper->get_current_url()), 404);
 }
開發者ID:NuLeaf,項目名稱:phpbb-ext-tags,代碼行數:18,代碼來源:main.php

示例3: finish

 public function finish($message, $status_code, $redirect_time = 5, $route = 'slider_controller')
 {
     $this->meta_refresh($redirect_time, $route);
     return $this->helper->error($this->user->lang($message), $status_code);
 }
開發者ID:dmzx,項目名稱:Nivo-Slider,代碼行數:5,代碼來源:settings.php

示例4: error

 /**
  * {@inheritDoc}
  */
 public function error($message, $code = 500)
 {
     return parent::error($this->user->lang($message), $code);
 }
開發者ID:Sajaki,項目名稱:customisation-db,代碼行數:7,代碼來源:helper.php


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