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


PHP Installer::printValue方法代码示例

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


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

示例1: in_array

						<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="" />
			<?php Installer::printNavButton(1) ?>
			<?php Installer::printNavButton(2) ?>
			<?php Installer::printNavButton(3) ?>
			<?php Installer::printNavButton(4, true) ?>
			<input type="submit" id="step_04_next" class="finish" name="" value="" />
		</div>
	</form>
开发者ID:RogWilco,项目名称:Bedrock-Framework,代码行数:31,代码来源:step_04.php

示例2:

					$('#03_database_username').val('');
					$('#03_database_password').val('');
				break;

				case 'mysql_5':
					$('#03_database_address').removeAttr('disabled');
					$('#03_database_name').removeAttr('disabled');
					$('#03_database_prefix').removeAttr('disabled');
					$('#03_database_username').removeAttr('disabled');
					$('#03_database_password').removeAttr('disabled');

					$('#03_database_address').val('<?php Installer::printValue('database_address') ?>');
					$('#03_database_name').val('<?php Installer::printValue('database_name') ?>');
					$('#03_database_prefix').val('<?php Installer::printValue('database_prefix') ?>');
					$('#03_database_username').val('<?php Installer::printValue('database_username') ?>');
					$('#03_database_password').val('<?php Installer::printValue('database_password') ?>');
					break;
			}
		});
	});

	//-->
</script>

<div id="main">
	<div id="logo"></div>
	<h2>Step 3: Database Settings</h2>
	<form id="form" method="post" action="">
		<div id="content">
			<p></p>
			<table>
开发者ID:RogWilco,项目名称:Bedrock-Framework,代码行数:31,代码来源:step_03.php

示例3:

				installation. The application's namespace should be formatted
				like any PHP class/namespace and should not contain spaces or
				special characters.
			</p>
			<table>
				<tr>
					<th><label for="01_app_name">Name:</label></th>
					<td><input type="text" id="01_app_name" name="app_name" value="<?php Installer::printValue('app_name') ?>" /></td>
				</tr>
				<tr>
					<th><label for="01_app_version">Version:</label></th>
					<td><input type="text" id="01_app_version" name="app_version" value="<?php Installer::printValue('app_version') ?>" /></td>
				</tr>
				<tr>
					<th><label for="01_app_namespace">Namespace:</label></th>
					<td><input type="text" id="01_app_namespace" name="app_namespace" value="<?php Installer::printValue('app_namespace') ?>" /></td>
				</tr>
			</table>
		</div>
		<div id="nav">
			<input type="hidden" id="step" name="step" value="1" />
			<input type="hidden" id="goto" name="goto" value="2" />
			<input type="button" id="goto_start" class="back" name="" value="" />
			<?php Installer::printNavButton(1, true) ?>
			<?php Installer::printNavButton(2) ?>
			<?php Installer::printNavButton(3) ?>
			<?php Installer::printNavButton(4) ?>
			<input type="submit" id="step_01_next" class="next" name="" value="" />
		</div>
	</form>
</div>
开发者ID:RogWilco,项目名称:Bedrock-Framework,代码行数:31,代码来源:step_01.php

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