本文整理汇总了PHP中CStringHelper::formatLinks方法的典型用法代码示例。如果您正苦于以下问题:PHP CStringHelper::formatLinks方法的具体用法?PHP CStringHelper::formatLinks怎么用?PHP CStringHelper::formatLinks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CStringHelper
的用法示例。
在下文中一共展示了CStringHelper::formatLinks方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getTwitterHTML
//.........这里部分代码省略.........
"/>
</a>
</div>
<!--start twitter post-->
<div class="joms-stream__meta ">
<a href="http://twitter.com/<?php
echo $userinfo->screen_name;
?>
" target="blank" class="cThumb-Title"><?php
echo $userinfo->name;
?>
</a>
<span class="joms-block"><?php
echo $userinfo->statuses_count;
?>
tweets, <?php
echo $userinfo->followers_count;
?>
followers</span>
<small><?php
echo $userinfo->description;
?>
</small>
</div>
<!--end twitter post-->
</div>
<div class="joms-gap"></div>
<?php
if (is_object($data)) {
if (isset($data->error)) {
echo $data->error;
}
} else {
//CFactory::load( 'helpers' , 'linkgenerator' );
for ($i = 0; $i < count($data); $i++) {
$tweet = $data[$i];
//$date = cGetDate($tweet->created_at); //JFactory::getDate( $tweet->created_at );
$date = CTimeHelper::getDate($tweet->created_at);
$text = CLinkGeneratorHelper::replaceURL($tweet->text, true, true);
$text = $this->replaceAliasURL($text);
?>
<div class="joms-stream__header">
<?php
if ($i == 0 && $showFriends || $showFriends) {
?>
<div class="joms-avatar--stream">
<a href="http://twitter.com/<?php
echo $tweet->user->screen_name;
?>
" target="blank" ><img src="<?php
echo $tweet->user->profile_image_url;
?>
" alt="<?php
echo $tweet->user->screen_name;
?>
"></a>
</div>
<?php
}
?>
<div class="joms-stream__meta">
<?php
echo CStringHelper::formatLinks($text);
?>
<div class="small joms-text--light"><?php
echo $date->format(JText::_('DATE_FORMAT_LC2'));
?>
</div>
</div>
<!--twitter avatar-->
</div>
<div class="joms-gap"></div>
<?php
}
}
?>
</div>
<?php
}
} else {
?>
<!-- <div class="icon-nopost">
<img src="<?php
echo JURI::base();
?>
components/com_community/assets/error.gif" alt="" />
</div> -->
<div class="content-nopost">
<?php
echo JText::_('PLG_TWITTER_NOT_UPDATES');
?>
</div>
<?php
}
$html = ob_get_contents();
ob_end_clean();
return $html;
}