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


PHP Configuration::getImagePath方法代码示例

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


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

示例1:

			</div>
			<div id="et2" class="tabPopup">Employer registration</div>
		</div>
		<div id="er1" class="registrationPopup"
			content-url="/main/employer/login?formId=4"></div>
		<div id="er2" class="registrationPopup"
			content-url="/employer/registration?formId=4"></div>
	</div>
	<div id="holder" class="indexTpl holder_main">
		<table width="100%" cellpadding="0" cellspacing="0">
			<tr>
				<td>
					<div class="logo">
						<a href="/" title="Logo"><img
							src="<?php 
echo Configuration::getImagePath() . "logo.jpg";
?>
"
							alt="Logo" title="Logo" width="159" />
						</a>
					</div></td>
				<td align="center"></td>
				<td><div class="top-r-buts">
						<div class="sw-top-but candSw">
							<a href="/cm/candidates/join_now">Job Seeker</a>
						</div>
						<div class="sw-top-but_act emplSw">
							<a href="/cm/clients/advertise_jobs">Employer</a>&nbsp;&nbsp;
						</div>
					</div>
				</td>
开发者ID:rawntech-rohan,项目名称:Project-CJ,代码行数:31,代码来源:header.php

示例2:

echo Configuration::getImagePath();
?>
title7.gif" alt="" width="160" height="26" />
				<ul>
					<li><a href="#">Maecenas hendrerit</a></li>
					<li><a href="#">Massa ac laoreet iaculipede</a></li>
					<li><a href="#">Convallis nonummy tellus</a></li>
					<li><a href="#">In tincidunt mauris</a></li>
					<li><a href="#">Maecenas hendrerit</a></li>
					<li><a href="#">Convallis nonummy tellus</a></li>
					<li><a href="#">In tincidunt mauris</a></li>
				</ul>
			</div>
			<div>
				<img src="<?php 
echo Configuration::getImagePath();
?>
title8.gif" alt="" width="160" height="26" />
				<ul>
					<li><a href="#">Maecenas hendrerit</a></li>
					<li><a href="#">Massa ac laoreet iaculipede</a></li>
					<li><a href="#">Convallis nonummy tellus</a></li>
					<li><a href="#">In tincidunt mauris</a></li>
					<li><a href="#">Maecenas hendrerit</a></li>
					<li><a href="#">Convallis nonummy tellus</a></li>
					<li><a href="#">In tincidunt mauris</a></li>
				</ul>
			</div>
		</div>
	</div>
开发者ID:rawntech-rohan,项目名称:Project-CJ,代码行数:30,代码来源:header.php

示例3:

<table cellspacing="10">
	<tr>
		<td width="70%" valign="top">
		<?php 
echo Form::quickSearch();
?>
		<img src="<?php 
echo Configuration::getImagePath() . "bigpicture.jpg";
?>
" width="650">
		<h1>Most Recent Job Posts</h1>
		
			<div class="container">
			<?php 
echo JobLayout::formatList($records);
?>
			<?php 
echo "<center>" . JobLayout::getViewOtherJobsButton() . "</center>";
?>
			</div>
			
		</td>
		<td valign="top">
		<h1>Featured Company</h1>
		
		<div class="container">
		<?php 
echo CompaniesLayout::featureCompany($featured_company);
?>
		</div>
		
开发者ID:rawntech-rohan,项目名称:Project-CJ,代码行数:30,代码来源:index.php

示例4:

<center>
	<table id="form-table">
		<tr>
			<td><b>Site is currently down for maintenance</b></td>
		</tr>
		<tr>
			<td><img src="<?php 
echo Configuration::getImagePath() . "site_maintenance.jpg";
?>
"></td>
			
		</tr>
	</table>
</center>
开发者ID:rawntech-rohan,项目名称:Project-CJ,代码行数:14,代码来源:siteMaintenance.php


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