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


PHP Globals::getCouncilHREF方法代碼示例

本文整理匯總了PHP中Globals::getCouncilHREF方法的典型用法代碼示例。如果您正苦於以下問題:PHP Globals::getCouncilHREF方法的具體用法?PHP Globals::getCouncilHREF怎麽用?PHP Globals::getCouncilHREF使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Globals的用法示例。


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

示例1: switch

    ?>
</span>
												<br />
												<a class="nav" href="<?php 
    echo $PlayerNameLink;
    ?>
"><?php 
    echo $ThisPlayer->getDisplayName();
    ?>
</a>
											</div>
										</td>
										<td>
											<div class="topcenterOne noWrap">
												Race: <a href="<?php 
    echo Globals::getCouncilHREF($ThisPlayer->getRaceID());
    ?>
"><?php 
    echo $ThisPlayer->getColouredRaceName($ThisPlayer->getRaceID());
    ?>
</a><br />
												
												Turns : <span id="turns">
													<span class="<?php 
    switch ($ThisPlayer->getTurnsLevel()) {
        case 'NONE':
        case 'LOW':
            echo 'red';
            break;
        case 'MEDIUM':
            echo 'yellow';
開發者ID:smrealms,項目名稱:smrv2.0,代碼行數:31,代碼來源:skeleton.php

示例2: foreach

	Below you may decide to declare War or make Peace with other races within the Universe.<br />Remember that Peace votes are subject to veto by corresponding Racial President.<br />Choose wisely, for the fate of your race may lie with your decision.
</div><br /><br />

<table class="standard center" width="50%">
	<tr>
		<th>Race</th>
		<th>Treaty</th>
	</tr><?php 
foreach ($VoteRaceHrefs as $RaceID => $FormHref) {
    ?>
		<tr>
			<td align="center"><img src="<?php 
    echo Globals::getRaceHeadImage($RaceID);
    ?>
" width="60" height="64" /><br /><a href="<?php 
    echo Globals::getCouncilHREF($RaceID);
    ?>
"><?php 
    echo $ThisPlayer->getColouredRaceName($RaceID);
    ?>
</a></td>
			<td align="center">
				<form method="POST" action="<?php 
    echo $FormHref;
    ?>
">
					<input type="submit" name="action" value="Peace" id="InputFields" />
					&nbsp;
					<input type="submit" name="action" value="War" id="InputFields" />
				</form>
			</td>
開發者ID:smrealms,項目名稱:smrv2.0,代碼行數:31,代碼來源:council_embassy.php


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