当前位置: 首页>>代码示例>>PHP>>正文


PHP qa_html_theme_base::a_item_main方法代码示例

本文整理汇总了PHP中qa_html_theme_base::a_item_main方法的典型用法代码示例。如果您正苦于以下问题:PHP qa_html_theme_base::a_item_main方法的具体用法?PHP qa_html_theme_base::a_item_main怎么用?PHP qa_html_theme_base::a_item_main使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在qa_html_theme_base的用法示例。


在下文中一共展示了qa_html_theme_base::a_item_main方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: a_item_main

 function a_item_main($a_item)
 {
     if (qa_opt('ajax_comment_enable') && !$this->qa_state && $this->can_comment) {
         $switch = @$a_item['c_form'];
         $a_item['c_form'] = $this->qa_ajax_comment_form_shell($a_item['raw']['postid'], isset($a_item['c_list']));
         $a_item['c_form_2'] = @$switch;
     }
     qa_html_theme_base::a_item_main($a_item);
     $this->form(@$a_item['c_form_2']);
     // answer form if any
 }
开发者ID:microbye,项目名称:q2a-comment-ajax,代码行数:11,代码来源:qa-comment-layer.php

示例2: a_item_main

 function a_item_main($a_item)
 {
     if ($this->is_print_view) {
         $this->output('<DIV CLASS="qa-a-item-main">');
         if ($a_item['hidden']) {
             $this->output('<DIV CLASS="qa-a-item-hidden">');
         } elseif ($a_item['selected']) {
             $this->output('<DIV CLASS="qa-a-item-selected">');
         }
         $this->a_item_content($a_item);
         $this->post_meta($a_item, 'qa-a-item');
         $this->a_item_clear();
         if ($a_item['hidden'] || $a_item['selected']) {
             $this->output('</DIV>');
         }
         $this->c_list(@$a_item['c_list'], 'qa-a-item');
         $this->output('</DIV> <!-- END qa-a-item-main -->');
     } else {
         qa_html_theme_base::a_item_main($a_item);
     }
 }
开发者ID:NoahY,项目名称:q2a-print,代码行数:21,代码来源:qa-print-layer.php


注:本文中的qa_html_theme_base::a_item_main方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。