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


PHP Display::get_numeric_options方法代码示例

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


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

示例1: get_lang

    <tr>
        <td width="40%" align="center">
            <b><?php 
echo get_lang('UserGroupList');
?>
</b>
            <br/><br/>
             <?php 
echo get_lang('FirstLetter');
?>
 :
             <select name="first_letter_user_group" onchange="javascript:document.formulaire.form_sent.value='2'; document.formulaire.submit();">
                <option value="">--</option>
                  <?php 
echo Display::get_alphabet_options($firstLetterUserGroup);
echo Display::get_numeric_options(0, 9, $firstLetterUserGroup);
?>
            </select>
        </td>
        <td width="20%">&nbsp;</td>
        <td width="40%" align="center">
            <b><?php 
echo get_lang('URLList');
?>
 :</b>
        </td>
   </tr>
   <tr>
        <td width="40%" align="center">
        <select name="user_group_list[]" multiple="multiple" size="20" style="width:400px;">
		<?php 
开发者ID:KRCM13,项目名称:chamilo-lms,代码行数:31,代码来源:access_url_add_usergroup_to_url.php

示例2: get_lang

 :</b></td>
</tr>

<?php 
if ($add_type == 'multiple') {
    ?>
<tr><td width="45%" align="center">
 <?php 
    echo get_lang('FirstLetterCourse');
    ?>
 :
     <select name="firstLetterCourse" onchange = "xajax_search_courses(this.value,'multiple')">
      <option value="%">--</option>
      <?php 
    echo Display::get_alphabet_options();
    echo Display::get_numeric_options(0, 9, '');
    ?>
     </select>
</td>
<td>&nbsp;</td></tr>
<?php 
}
?>
<tr>
  <td width="45%" align="center">
<?php 
if (!($add_type == 'multiple')) {
    ?>
	<input type="text" id="course_to_add" onkeyup="xajax_search_courses(this.value,'single')" />
	<div id="ajax_list_courses_single"></div>
	<?php 
开发者ID:ilosada,项目名称:chamilo-lms-icpna,代码行数:31,代码来源:add_courses_to_session.php

示例3: get_lang

   <tr>
    <td width="40%" align="center">
     <b><?php 
echo get_lang('CourseList');
?>
</b>
     <br/><br/>
     <?php 
echo get_lang('FirstLetterCourse');
?>
 :
     <select name="first_letter_course" onchange="javascript:document.formulaire.form_sent.value='2'; document.formulaire.submit();">
      <option value="">--</option>
      <?php 
echo Display::get_alphabet_options($first_letter_course);
echo Display::get_numeric_options(0, 9, $first_letter_course);
?>
     </select>
    </td>
        <td width="20%">&nbsp;</td>
    <td width="40%" align="center">
     <b><?php 
echo get_lang('URLList');
?>
 :</b>
    </td>
   </tr>
   <tr>
    <td width="40%" align="center">
     <select name="course_list[]" multiple="multiple" size="20" style="width:400px;">
		<?php 
开发者ID:omaoibrahim,项目名称:chamilo-lms,代码行数:31,代码来源:access_url_add_courses_to_url.php


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