本文整理汇总了PHP中EasyBlogHelper::showSocialButton方法的典型用法代码示例。如果您正苦于以下问题:PHP EasyBlogHelper::showSocialButton方法的具体用法?PHP EasyBlogHelper::showSocialButton怎么用?PHP EasyBlogHelper::showSocialButton使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EasyBlogHelper
的用法示例。
在下文中一共展示了EasyBlogHelper::showSocialButton方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
<?php
if ($system->config->get('main_facebook_like') && $system->config->get('main_facebook_like_layout') == 'standard' && $system->config->get('integrations_facebook_show_in_listing')) {
?>
<?php
echo $this->fetch('facebook.standard.php', array('facebook' => $row->facebookLike));
?>
<?php
}
?>
<!-- Load bottom social buttons -->
<?php
if ($system->config->get('main_socialbutton_position') == 'bottom') {
?>
<?php
echo EasyBlogHelper::showSocialButton($row, true);
?>
<?php
}
?>
<?php
if ($this->getParam('show_last_modified')) {
?>
<!-- Modified date -->
<span class="blog-modified-date">
<?php
echo JText::_('COM_EASYBLOG_LAST_MODIFIED');
?>
<?php
echo JText::_('COM_EASYBLOG_ON');
示例2: array
<?php
if ($this->getparam('show_tags')) {
?>
<?php
echo $this->fetch('tags.item.php', array('tags' => $tags));
?>
<?php
}
?>
<?php
if ($system->config->get('main_socialbutton_position') == 'bottom') {
?>
<?php
echo EasyBlogHelper::showSocialButton($blog);
?>
<?php
}
?>
<!-- Standard facebook like button needs to be at the bottom -->
<?php
if ($system->config->get('main_facebook_like') && $system->config->get('main_facebook_like_layout') == 'standard') {
?>
<?php
echo $this->fetch('facebook.standard.php', array('facebook' => $facebookLike));
?>
<div class="clear"></div>
<?php
}