當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CStringHelper::formatLinks方法代碼示例

本文整理匯總了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;
        }
開發者ID:joshjim27,項目名稱:jobsglobal,代碼行數:101,代碼來源:twitter.php


注:本文中的CStringHelper::formatLinks方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。