本文整理汇总了PHP中UserForm::country_select方法的典型用法代码示例。如果您正苦于以下问题:PHP UserForm::country_select方法的具体用法?PHP UserForm::country_select怎么用?PHP UserForm::country_select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserForm
的用法示例。
在下文中一共展示了UserForm::country_select方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _e
</label>
<div class="controls">
<?php
UserForm::phone_land_text(osc_user());
?>
</div>
</div>
<div class="form-group">
<label class="control-label" for="country">
<?php
_e('Stream', OSCLASSWIZARDS_THEME_FOLDER);
?>
</label>
<div class="controls">
<?php
UserForm::country_select(osc_get_countries(), osc_user());
?>
</div>
</div>
<div class="form-group">
<label class="control-label" for="region">
<?php
_e('University', OSCLASSWIZARDS_THEME_FOLDER);
?>
</label>
<div class="controls">
<?php
UserForm::region_select(osc_get_regions(), osc_user());
?>
</div>
</div>
示例2: _e
_e('Additional information');
?>
</legend>
<?php
UserForm::multilanguage_info($locales, $user);
?>
</fieldset>
</div>
<div style="float: left; width: 50%;">
<fieldset>
<legend><?php
_e('Country');
?>
</legend>
<?php
UserForm::country_select($countries, $user);
?>
</fieldset>
<fieldset>
<legend><?php
_e('Region');
?>
</legend>
<?php
UserForm::region_select($regions, $user);
?>
</fieldset>
<fieldset>
<legend><?php
_e('City');
?>