本文整理汇总了PHP中osCommerce\OM\Core\HTML::timeZoneSelectMenu方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML::timeZoneSelectMenu方法的具体用法?PHP HTML::timeZoneSelectMenu怎么用?PHP HTML::timeZoneSelectMenu使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类osCommerce\OM\Core\HTML
的用法示例。
在下文中一共展示了HTML::timeZoneSelectMenu方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
?>
</td>
</tr>
<tr>
<td class="inputField"><?php
echo OSCOM::getDef('param_administrator_password') . '<br />' . HTML::inputField('CFG_ADMINISTRATOR_PASSWORD', null, 'class="text"');
?>
</td>
<td class="inputDescription"><?php
echo OSCOM::getDef('param_administrator_password_description');
?>
</td>
</tr>
<tr>
<td class="inputField"><?php
echo OSCOM::getDef('param_time_zone') . '<br />' . HTML::timeZoneSelectMenu('CFG_TIME_ZONE', ini_get('date.timezone') ?: null);
?>
</td>
<td class="inputDescription"><?php
echo OSCOM::getDef('param_time_zone_description');
?>
</td>
</tr>
<tr>
<td class="inputField"><?php
echo HTML::checkboxField('DB_INSERT_SAMPLE_DATA', 'true', true) . ' ' . OSCOM::getDef('param_database_import_sample_data');
?>
</td>
<td class="inputDescription"><?php
echo OSCOM::getDef('param_database_import_sample_data_description');
?>
示例2: testTimeZoneSelectMenu
public function testTimeZoneSelectMenu()
{
$result = array();
foreach (DateTime::getTimeZones() as $zone => $zones_array) {
foreach ($zones_array as $key => $value) {
$result[] = array('id' => $key, 'text' => $value, 'group' => $zone);
}
}
$this->assertEquals(HTML::selectMenu('timezone', $result, 'Europe/Berlin'), HTML::timeZoneSelectMenu('timezone', 'Europe/Berlin'));
}