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


PHP qa_html_theme_base::a_item_buttons方法代码示例

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


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

示例1: a_item_buttons

 function a_item_buttons($a_item)
 {
     if (isset($a_item['form']['buttons']) && count($a_item['form']['buttons'])) {
         ami_dhp_add_a_delete_button($a_item['form']['buttons'], $a_item['raw']);
     }
     qa_html_theme_base::a_item_buttons($a_item);
 }
开发者ID:aunna77doe,项目名称:q2a-delete-hidden-posts,代码行数:7,代码来源:qa-dhp-layer.php

示例2: a_item_buttons

 function a_item_buttons($a_item)
 {
     if (qa_opt('ajax_comment_enable') && qa_opt('ajax_comment_username') && isset($a_item['form']['buttons']['comment']) && !$this->qa_state && $this->can_comment) {
         $handle = $this->getHandleFromId($a_item['raw']['userid']);
         $a_item['form']['buttons']['comment']['comment_username'] = $handle;
     }
     qa_html_theme_base::a_item_buttons($a_item);
 }
开发者ID:microbye,项目名称:q2a-comment-ajax,代码行数:8,代码来源:qa-comment-layer.php

示例3: a_item_buttons

 public function a_item_buttons($a_item)
 {
     if (qa_opt('donut_show_collapsible_btns')) {
         if (!empty($a_item['form'])) {
             $a_item_temp = $a_item;
             $allowed_main_btns = array('comment');
             $a_item_temp['form']['buttons'] = $this->donut_divide_array($a_item['form']['buttons'], $allowed_main_btns);
             $this->output('<div class="qa-a-item-buttons clearfix">');
             $this->output('<div class="default-buttons pull-left">');
             $this->form($a_item['form']);
             $this->output('</div>');
             $this->donut_generate_action_button($a_item_temp);
             $this->output('</div>');
         }
     } else {
         parent::a_item_buttons($a_item);
     }
 }
开发者ID:microbye,项目名称:Donut,代码行数:18,代码来源:qa-donut-layer.php


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