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


PHP printGalleryIndexURL函數代碼示例

本文整理匯總了PHP中printGalleryIndexURL函數的典型用法代碼示例。如果您正苦於以下問題:PHP printGalleryIndexURL函數的具體用法?PHP printGalleryIndexURL怎麽用?PHP printGalleryIndexURL使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了printGalleryIndexURL函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

    } else {
        $albumlist = $_zp_current_search->getAlbumList();
        if (is_array($albumlist)) {
            $album_list = array('albums' => $albumlist, 'pages' => '0', 'news' => '0');
            printSearchForm(NULL, 'search', NULL, gettext('Search album'), NULL, NULL, $album_list);
        } else {
            printSearchForm("", "search", "", gettext("Search gallery"));
        }
    }
}
?>
			</div>

			<div id="breadcrumb">
				<h2><?php 
printGalleryIndexURL(' » ');
printSearchBreadcrumb(" » ");
?>
				</h2>
			</div>

			<div id="content">
				<div id="content-left">
					<?php 
$searchwords = getSearchWords();
$searchdate = getSearchDate();
if (!empty($searchdate)) {
    if (!empty($searchwords)) {
        $searchwords .= ": ";
    }
    $searchwords .= $searchdate;
開發者ID:jmruas,項目名稱:zenphoto,代碼行數:31,代碼來源:search.php

示例2: pathurlencode

" type="text/css" />
			<link rel="stylesheet" href="<?php 
    echo pathurlencode(dirname(dirname($zenCSS)));
    ?>
/common.css" type="text/css" />
		</head>
		<body>
			<?php 
    zp_apply_filter('theme_body_open');
    ?>
			<div id="main">
				<div id="gallerytitle">
					<h2>
						<?php 
    printHomeLink('', ' | ');
    printGalleryIndexURL(' | ', getGalleryTitle());
    ?>
						<em><?php 
    echo gettext('Contact us');
    ?>
</em>
					</h2>
				</div>
				<h3><?php 
    echo gettext('Contact us.');
    ?>
</h3>
				<?php 
    printContactForm();
    ?>
			</div>
開發者ID:jmruas,項目名稱:zenphoto,代碼行數:31,代碼來源:contact.php

示例3: array

					<?php 
if (getOption('Allow_search')) {
    $album_list = array('albums' => '1', 'pages' => '0', 'news' => '0');
    printSearchForm(NULL, 'search', $_zp_themeroot . '/images/search.png', gettext('Search albums'), NULL, NULL, $album_list);
}
printLogo();
?>
				</div>
			</div> <!-- gallerytitle -->

			<!-- Crumb Trail Navigation -->
			<div id="wrapnav">
				<div id="navbar">
					<span><?php 
printHomeLink('', ' | ');
printGalleryIndexURL(' | ');
?>
</span>
				</div>
			</div> <!-- wrapnav -->
		</div> <!-- header -->
		<!-- Random Image -->
		<?php 
printHeadingImage(getRandomImages(getThemeOption('effervescence_daily_album_image')));
?>

		<!-- Wrap Main Body -->
		<div id="content">
			<div id="main">

				<!-- Album List -->
開發者ID:rauldobrota,項目名稱:zenphoto,代碼行數:31,代碼來源:gallery.php

示例4: html_encode

echo html_encode(getGalleryIndexURL());
?>
" title="<?php 
echo gettext('Gallery Index');
?>
"><?php 
echo html_encode(getGalleryTitle());
?>
</a>
				</h1>
			</div>

			<div id="content">
				<div id="breadcrumb">
					<h2><?php 
printGalleryIndexURL();
?>
</h2>
				</div>

				<div id="content-error">

					<div class="errorbox">
						<?php 
print404status(isset($album) ? $album : NULL, isset($image) ? $image : NULL, $obj);
?>
					</div>

				</div>

開發者ID:jmruas,項目名稱:zenphoto,代碼行數:29,代碼來源:404.php


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