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


PHP Text::GmapsLink方法代码示例

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


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

示例1: if

        <div class="image">
            <?php if (!empty($user->avatar)): ?><img alt="<?php echo htmlspecialchars($user->name) ?>" src="<?php echo $user->avatar->getLink(80, 80, true); ?>" /><?php endif ?>
        </div>

        <?php if (isset($user->about)): ?>
        <blockquote class="about">
        <?php echo $user->about ?>
        </blockquote>
        <?php endif ?>

        <dl>

            <?php if (isset($user->location)): ?>
            <dt class="location"><?php echo Text::get('profile-location-header'); ?></dt>
            <dd class="location"><?php echo Text::GmapsLink($user->location); ?></dd>
            <?php endif ?>

            <?php if (!empty($user->webs)): ?>
            <dt class="links"><?php echo Text::get('profile-webs-header'); ?></dt>
            <dd class="links">
                <ul>
                    <?php foreach ($user->webs as $link): ?>
                    <li><a href="<?php echo htmlspecialchars($link->url) ?>" target="_blank"><?php echo htmlspecialchars($link->url) ?></a></li>
                    <?php endforeach ?>
                </ul>
            </dd>
            <?php endif ?>
            <dt class="message"><?php echo Text::get('regular-send_message')?></dt>
            <dd class="message"><a href="/user/profile/<?php echo htmlspecialchars($user->id) ?>/message"><?php echo Text::get('regular-send_message')?></a></dd>
        </dl>
开发者ID:kenjs,项目名称:Goteo,代码行数:30,代码来源:user.html.php

示例2: if

        <h4><?php echo Text::get('profile-keywords-header'); ?></h4>
        <p><?php echo $user->keywords; ?></p>        
    </div>
    <?php endif ?>
        
    <?php if (!empty($user->webs)): ?>
    <div class="webs">     
        <h4><?php echo Text::get('profile-webs-header'); ?></h4>
        <ul>
            <?php foreach ($user->webs as $link): ?>
            <li><a href="<?php echo htmlspecialchars($link->url) ?>" target="_blank"><?php echo htmlspecialchars($link->url) ?></a></li>
            <?php endforeach ?>
        </ul>
    </div>
    <?php endif ?>
    
    <?php if (!empty($user->location)): ?>
     <div class="location">    
        <h4><?php echo Text::get('profile-location-header'); ?></h4>
        <p><?php echo Text::GmapsLink($user->location); ?></p>
     </div>
    <?php endif ?>

    <?php if (!empty($this['projects'])): ?>
     <div class="message">
         <p><a href="/user/profile/<?php echo $user->id ?>/message"><?php echo Text::get('regular-send_message')?></a></p>
     </div>
    <?php endif ?>

</div>
开发者ID:kenjs,项目名称:Goteo,代码行数:30,代码来源:about.html.php

示例3:

    </blockquote>
    <?php 
}
?>

    <dl>

        <?php 
if (isset($user->location)) {
    ?>
        <dt class="location"><?php 
    echo Text::get('profile-location-header');
    ?>
</dt>
        <dd class="location"><?php 
    echo Text::GmapsLink($user->location);
    ?>
</dd>
        <?php 
}
?>

        <?php 
if (!empty($user->webs)) {
    ?>
        <dt class="links"><?php 
    echo Text::get('profile-webs-header');
    ?>
</dt>
        <dd class="links">
            <ul>
开发者ID:isbkch,项目名称:Goteo,代码行数:31,代码来源:user.html.php


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