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


PHP printHomeLink函数代码示例

本文整理汇总了PHP中printHomeLink函数的典型用法代码示例。如果您正苦于以下问题:PHP printHomeLink函数的具体用法?PHP printHomeLink怎么用?PHP printHomeLink使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: printLogo

				<div id="gallerytitle">

					<!-- Logo -->
					<div id="logo">
						<?php 
    printLogo();
    ?>
					</div> <!-- logo -->
				</div> <!-- gallerytitle -->

				<!-- Crumb Trail Navigation -->

				<div id="wrapnav">
					<div id="navbar">
						<span><?php 
    printHomeLink('', ' | ');
    ?>
							<?php 
    if (getOption('gallery_index')) {
        ?>
								<a href="<?php 
        echo html_encode(getGalleryIndexURL());
        ?>
" title="<?php 
        echo gettext('Main Index');
        ?>
"><?php 
        printGalleryTitle();
        ?>
</a>
								<?php 
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:contact.php

示例2: printHomeLink

				<div class="sidebar">
					<div id="leftsidebar">
						<?php 
include "sidebar.php";
?>
					</div>
				</div>
				<div id="center">
					<div id="squeeze">
						<div class="right-corner">
							<div class="left-corner">
								<!-- begin content -->
								<div class="main section" id="main">
									<h2 id="gallerytitle">
										<?php 
printHomeLink('', ' » ');
?>
										<a href="<?php 
echo html_encode(getGalleryIndexURL());
?>
" title="<?php 
echo gettext('Gallery Index');
?>
"><?php 
echo html_encode(getGalleryTitle());
?>
</a> »
										<?php 
echo "<em>" . gettext('Page not found') . "</em>";
?>
									</h2>
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:404.php

示例3: gettext

?>
</em></h1>
		<div class="galleries">
		<h2><?php 
echo gettext('User Registration');
?>
</h2>
		<?php 
printRegistrationForm();
?>
	</div>
</div>

<p id="path">
	<?php 
printHomeLink('', ' > ');
?>
	<a href="<?php 
echo html_encode(getGalleryIndexURL(false));
?>
" title="<?php 
echo gettext('Main Index');
?>
"><?php 
echo gettext('Home');
?>
</a> &gt;
	<?php 
echo getGalleryTitle();
?>
	<em><?php 
开发者ID:hatone,项目名称:zenphoto-1.4.1.4,代码行数:31,代码来源:register.php

示例4: printGalleryTitle

} else {
    ?>
		<h3 id="nav-logo-text" ><?php 
    printGalleryTitle();
    ?>
</h3>
		<?php 
}
?>
		<ul id="nav">
			<?php 
$hometext = gettext('Home');
if ($_zp_gallery->getWebsiteURL()) {
    ?>
			<li><?php 
    printHomeLink();
    ?>
<li>
			<?php 
    $hometext = gettext('Gallery');
}
?>
			<li <?php 
if ($_zp_gallery_page == 'index.php') {
    ?>
class="active" <?php 
}
?>
>
				<a href="<?php 
echo html_encode(getGalleryIndexURL());
开发者ID:ckfreeman,项目名称:libratus,代码行数:31,代码来源:inc-header.php

示例5: gettext

?>
</em></h1>
		<div class="galleries">
		<h2><?php 
echo gettext('Contact us.');
?>
</h2>
		<?php 
printContactForm();
?>
	</div>
</div>

<p id="path">
	<?php 
printHomeLink('', ' &gt; ');
?>
	<a href="<?php 
echo html_encode(getGalleryIndexURL(false));
?>
" title="<?php 
echo gettext('Main Index');
?>
"><?php 
echo gettext('Home');
?>
</a> &gt;
	<?php 
echo getGalleryTitle();
?>
	&gt; <em><?php 
开发者ID:hatone,项目名称:zenphoto-1.4.1.4,代码行数:31,代码来源:contact.php

示例6: printRSSHeaderLink

?>
/zen.css" type="text/css" />
  <?php 
printRSSHeaderLink('Gallery', gettext('Gallery RSS'));
$headcontent = ob_get_clean();
$dir = getcwd();
chdir("../");
require_once "interface.php";
$layout = EpicInterface::render(getBareGalleryTitle(), $headcontent);
chdir($dir);
echo $layout['header'];
?>

<h1>
  <?php 
printHomeLink('', ' :: ');
echo getGalleryTitle();
?>
</h1>


<?php 
while (next_album()) {
    ?>

  <div class="album">
    <div class="leftside"></div>
    <div class="rightside"></div>
    <a href="<?php 
    echo htmlspecialchars(getAlbumLinkURL());
    ?>
开发者ID:ItsHaden,项目名称:epicLanBootstrap,代码行数:31,代码来源:index.php


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