本文整理汇总了PHP中qa_html_theme_base::q_list_and_form方法的典型用法代码示例。如果您正苦于以下问题:PHP qa_html_theme_base::q_list_and_form方法的具体用法?PHP qa_html_theme_base::q_list_and_form怎么用?PHP qa_html_theme_base::q_list_and_form使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类qa_html_theme_base
的用法示例。
在下文中一共展示了qa_html_theme_base::q_list_and_form方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: q_list_and_form
function q_list_and_form($q_list)
{
if ($this->template == 'user' && qa_opt('user_act_list_active') && qa_opt('user_act_list_replace')) {
return;
}
qa_html_theme_base::q_list_and_form($q_list);
}
示例2: q_list_and_form
function q_list_and_form($q_list)
{
qa_html_theme_base::q_list_and_form($q_list);
$handle = $this->_user_handle();
// output activity links under recent activity
if ($this->template === 'user') {
$this->output('<div class="qa-useract-page-links">', ' More activity: ', ' <a href="' . qa_path('user-activity/questions/' . $handle) . '">All actions</a>', ' • ', ' <a href="' . qa_path('user-activity/answers/' . $handle) . '">All reactions</a>', '</div>');
}
}