本文整理匯總了PHP中qa_html_theme_base::a_item_content方法的典型用法代碼示例。如果您正苦於以下問題:PHP qa_html_theme_base::a_item_content方法的具體用法?PHP qa_html_theme_base::a_item_content怎麽用?PHP qa_html_theme_base::a_item_content使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類qa_html_theme_base
的用法示例。
在下文中一共展示了qa_html_theme_base::a_item_content方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: a_item_content
function a_item_content($a_item)
{
if (qa_opt('embed_smileys') && isset($a_item['content'])) {
$a_item['content'] = $this->smiley_replace($a_item['content']);
}
qa_html_theme_base::a_item_content($a_item);
}
示例2: a_item_content
function a_item_content($a_item)
{
if (isset($a_item['content'])) {
$a_item['content'] = $this->embed_replace($a_item['content']);
}
qa_html_theme_base::a_item_content($a_item);
}
示例3: a_item_content
function a_item_content($a_item)
{
if (qa_opt('signatures_enable') && qa_opt('signatures_a_enable')) {
if (isset($this->signatures['user' . $a_item['raw']['userid']]) && isset($a_item['content'])) {
$a_item['content'] .= $this->signature_output($a_item['raw']['userid']);
}
}
qa_html_theme_base::a_item_content($a_item);
}
示例4: a_item_content
function a_item_content($a_item)
{
if (qa_opt('buddypress_integration_enable') && qa_opt('buddypress_mentions') && isset($a_item['content'])) {
$a_item['content'] = bp_activity_at_name_filter($a_item['content']);
}
qa_html_theme_base::a_item_content($a_item);
}