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


PHP qa_html_theme_base::main方法代碼示例

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


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

示例1: main

 function main()
 {
     if ($this->request == 'widgets') {
         $content = $this->content;
         $this->output('<div class="qa-main theme-widgets clearfix"><div class="col-sm-12">');
         $this->output('<h1 class="page-title">', $this->content['title'], '</h1>');
         $this->main_parts($content);
         $this->output('</div></div> <!-- END qa-main -->', '');
     } else {
         qa_html_theme_base::main();
     }
 }
開發者ID:microbye,項目名稱:CleanStrap,代碼行數:12,代碼來源:widgets.php

示例2: main

 public function main()
 {
     foreach ($this->content as $key => $part) {
         if (strpos($key, 'q_list') === 0) {
             $this->queue_raw_posts_voters_flaggers(@$part['qs']);
         } elseif (strpos($key, 'q_view') === 0) {
             $this->queue_post_voters_flaggers($part['raw']);
             $this->queue_raw_posts_voters_flaggers($part['c_list']['cs']);
         } elseif (strpos($key, 'a_list') === 0) {
             if (!empty($part)) {
                 $this->queue_raw_posts_voters_flaggers($part['as']);
                 foreach ($part['as'] as $a_item) {
                     $this->queue_raw_posts_voters_flaggers(@$a_item['c_list']['cs']);
                 }
             }
         }
     }
     qa_html_theme_base::main();
 }
開發者ID:Trideon,項目名稱:gigolo,代碼行數:19,代碼來源:qa-layer-voters-flaggers.php

示例3: main

 function main()
 {
     if ($this->is_print_view) {
         unset($this->content['favorite']);
         $content = $this->content;
         $this->output('<DIV CLASS="qa-main' . (@$this->content['hidden'] ? ' qa-main-hidden' : '') . '">');
         if (function_exists('qa_register_plugin_phrases')) {
             $this->page_title_error();
         } else {
             $this->page_title();
         }
         if (isset($content['main_form_tags'])) {
             $this->output('<FORM ' . $content['main_form_tags'] . '>');
         }
         $this->main_parts($content);
         if (isset($content['main_form_tags'])) {
             $this->output('</FORM>');
         }
         $this->output('</DIV> <!-- END qa-main -->', '');
     } else {
         qa_html_theme_base::main();
     }
 }
開發者ID:NoahY,項目名稱:q2a-print,代碼行數:23,代碼來源:qa-print-layer.php


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