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


PHP Installer::getValue方法代碼示例

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


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

示例1:

				</tr>
				<tr>
					<th>Database:</th>
					<td><input type="text" id="03_database_name" name="database_name" value="<?php echo Installer::getValue('database_type') != 'none' ? Installer::getValue('database_name') : '' ?>"<?php echo Installer::getValue('database_type') == 'none' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
				<tr>
					<th>Table Prefix:</th>
					<td><input type="text" id="03_database_prefix" name="database_prefix" value="<?php echo Installer::getValue('database_type') != 'none' ? Installer::getValue('database_prefix') : '' ?>"<?php echo Installer::getValue('database_type') == 'none' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
				<tr>
					<th>Username:</th>
					<td><input type="text" id="03_database_username" name="database_username" value="<?php echo Installer::getValue('database_type') != 'none' ? Installer::getValue('database_username') : '' ?>"<?php echo Installer::getValue('database_type') == 'none' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
				<tr>
					<th>Password:</th>
					<td><input type="password" id="03_database_password" name="database_password" value="<?php echo Installer::getValue('database_type') != 'none' ? Installer::getValue('database_password') : '' ?>"<?php echo Installer::getValue('database_type') == 'none' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
			</table>
		</div>
		<div id="nav">
			<input type="hidden" id="step" name="step" value="3" />
			<input type="hidden" id="goto" name="goto" value="4" />
			<input type="button" id="goto_02_back" class="back" name="" value="" />
			<?php Installer::printNavButton(1) ?>
			<?php Installer::printNavButton(2) ?>
			<?php Installer::printNavButton(3, true) ?>
			<?php Installer::printNavButton(4) ?>
			<input type="submit" id="step_03_next" class="next" name="" value="" />
		</div>
	</form>
</div>
開發者ID:RogWilco,項目名稱:Bedrock-Framework,代碼行數:31,代碼來源:step_03.php

示例2: in_array

						</select>
					</td>
				</tr>
				<tr>
					<th>Logging:</th>
					<td>
						<input type="checkbox" id="04_logto_system" name="logto[]" value="system"<?php echo in_array('system', Installer::getValue('logto')) ? ' checked="checked"' : '' ?> />
						<label for="04_logto_system">Log to System Log</label>
						<br />
						<input type="checkbox" id="04_logto_file" name="logto[]" value="file"<?php echo in_array('file', Installer::getValue('logto')) ? ' checked="checked"' : '' ?> />
						<label for="04_logto_file">Log to Text Files</label>
						<br />
						<input type="checkbox" id="04_logto_firephp" name="logto[]" value="firephp"<?php echo in_array('firephp', Installer::getValue('logto')) ? ' checked="checked"' : '' ?> />
						<label for="04_logto_firephp">Log to Firebug (via FirePHP)</label>
						<br />
						<input type="checkbox" id="04_logto_growl" name="logto[]" value="growl"<?php echo in_array('growl', Installer::getValue('logto')) ? ' checked="checked"' : '' ?> />
						<label for="04_logto_growl">Log to Growl</label>
					</td>
				</tr>
				<tr>
					<th>Growl Address:</th>
					<td>
						<input type="text" id="04_growl_address" name="growl_address" value="<?php Installer::printValue('growl_address') ?>" />
					</td>
				</tr>
			</table>
		</div>
		<div id="nav">
			<input type="hidden" id="step" name="step" value="4" />
			<input type="hidden" id="goto" name="goto" value="install" />
			<input type="button" id="goto_03_back" class="back" name="" value="" />
開發者ID:RogWilco,項目名稱:Bedrock-Framework,代碼行數:31,代碼來源:step_04.php

示例3: Root

				</tr>
				<tr>
					<th>Web Root:</th>
					<td><input type="text" id="02_root_web" name="root_web" value="<?php Installer::printValue('root_web') ?>"<?php echo Installer::getValue('root') == 'default' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
				<tr>
					<th>Application (system):</th>
					<td><input type="text" id="02_root_system" name="root_system" value="<?php Installer::printValue('root_system') ?>"<?php echo Installer::getValue('root') == 'default' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
				<tr>
					<th>Logs (log):</th>
					<td><input type="text" id="02_root_log" name="root_log" value="<?php Installer::printValue('root_log') ?>"<?php echo Installer::getValue('root') == 'default' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
				<tr>
					<th>Public Root (pub):</th>
					<td><input type="text" id="02_root_pub" name="root_pub" value="<?php Installer::printValue('root_pub') ?>"<?php echo Installer::getValue('root') == 'default' ? ' disabled="disabled"' : '' ?> /></td>
				</tr>
			</table>
		</div>
		<div id="nav">
			<input type="hidden" id="step" name="step" value="2" />
			<input type="hidden" id="goto" name="goto" value="3" />
			<input type="button" id="goto_01_back" class="back" name="" value="" />
			<?php Installer::printNavButton(1) ?>
			<?php Installer::printNavButton(2, true) ?>
			<?php Installer::printNavButton(3) ?>
			<?php Installer::printNavButton(4) ?>
			<input type="submit" id="step_02_next" class="next" name="" value="" />
		</div>
	</form>
</div>
開發者ID:RogWilco,項目名稱:Bedrock-Framework,代碼行數:31,代碼來源:step_02.php


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