本文整理汇总了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>
示例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>
示例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>