当前位置: 首页>>代码示例>>PHP>>正文


PHP UI::get_story_break方法代码示例

本文整理汇总了PHP中UI::get_story_break方法的典型用法代码示例。如果您正苦于以下问题:PHP UI::get_story_break方法的具体用法?PHP UI::get_story_break怎么用?PHP UI::get_story_break使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UI的用法示例。


在下文中一共展示了UI::get_story_break方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

                        <div class="post-extra card-separator">
                            <div class="post-actions-row">
                                <ul>
                                    <li><a href="#" title="Like this post">Like</a></li>
                                    <li>·</li>
                                    <li><a href="#" title="Comment on this post">Comment</a></li>
                                </ul>
                            </div>
                            <div class="comments-section">
                                <b>0 comments</b> on this post.
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="right column">
                <?php 
echo UI::get_story_break("People you may know");
?>
                <div class="box-shadow card">
                    <div class="main-card-content">
                    </div>
                </div>

                <?php 
echo UI::get_footer();
?>
            </div>
        </div>
    </body>
</html>
开发者ID:joe-el-khoury,项目名称:friendbook-social-network,代码行数:31,代码来源:home_loggedin.php

示例2:

echo $viewed_user->get_first_name();
?>
</h1>
                    </div>
                    <div class="bg card-separator">
                        Viewing <b><?php 
echo UI::get_his_her_pronoun($viewed_user);
?>
 most recent</b> stories first
                    </div>
                </div>
            </div>
        </div>
        <div class="right column">
            <?php 
echo UI::get_story_break("Basic information");
?>
            <div class="box-shadow card">
                <div class="card-separator">
                    Gender
                    <div class="bold rfloat">
                        <?php 
echo UI::capitalize($viewed_user->get_gender());
?>
                    </div>
                </div>
                <div class="card-separator">
                    Email
                    <?php 
$truncated_and_original_email = UI::truncate_word($viewed_user->get_email(), 13);
$original_email = $truncated_and_original_email[0];
开发者ID:joe-el-khoury,项目名称:friendbook-social-network,代码行数:31,代码来源:profile.php


注:本文中的UI::get_story_break方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。