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


PHP print_project_access_levels_option_list函数代码示例

本文整理汇总了PHP中print_project_access_levels_option_list函数的典型用法代码示例。如果您正苦于以下问题:PHP print_project_access_levels_option_list函数的具体用法?PHP print_project_access_levels_option_list怎么用?PHP print_project_access_levels_option_list使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: print_project_user_list_option_list2

						<?php 
    print_project_user_list_option_list2($t_user['id']);
    ?>
					</select>
				</span>
				<span class="label-style"></span>
			</div>
			<div class="field-container">
				<label for="add-user-project-access"><span><?php 
    echo lang_get('access_level_label');
    ?>
</span></label>
				<span class="select">
					<select id="add-user-project-access" name="access_level">
						<?php 
    print_project_access_levels_option_list((int) config_get('default_new_account_access_level'));
    ?>
					</select>
				</span>
				<span class="label-style"></span>
			</div>
			<span class="submit-button"><input type="submit" class="button" value="<?php 
    echo lang_get('add_user_button');
    ?>
" /></span>
		</fieldset>
	</form>
</div><?php 
}
# End of PROJECT ACCESS conditional section
define('ACCOUNT_PREFS_INC_ALLOW', true);
开发者ID:derrickweaver,项目名称:mantisbt,代码行数:31,代码来源:manage_user_edit_page.php

示例2: print_project_user_list_option_list

				</th>
				<td class="category">&nbsp;  </td>
			</tr>
			<tr class="row-1" valign="top">
				<td>
					<select name="user_id[]" multiple="multiple" size="10">
						<?php 
    print_project_user_list_option_list($f_project_id);
    ?>
					</select>
				</td>
				<td>
					<select name="access_level">
						<?php 
    # only access levels that are less than or equal current user access level for current project
    print_project_access_levels_option_list(config_get('default_new_account_access_level'), $f_project_id);
    ?>
					</select>
				</td>
				<td>
					<input type="submit" class="button" value="<?php 
    echo lang_get('add_user_button');
    ?>
" />
				</td>
			</tr>
		</form>
		<!-- Copy Users Form -->
		<form method="post" action="manage_proj_user_copy.php">
			<?php 
    echo form_security_field('manage_proj_user_copy');
开发者ID:kaos,项目名称:mantisbt,代码行数:31,代码来源:manage_proj_edit_page.php

示例3: helper_alternate_class

</tr>

<tr <?php 
echo helper_alternate_class();
?>
>
	<td class="left">
	<?php 
echo plugin_lang_get('form_assign_group_threshold');
?>
<br/>
	</td>
	<td class="left">
		<select name="assign_group_threshold"> 
		<?php 
print_project_access_levels_option_list(plugin_config_get('assign_group_threshold', ''));
?>
		</select>
	</td>
</tr>

<tr <?php 
echo helper_alternate_class();
?>
>
	<td class="left">
	<?php 
echo plugin_lang_get('form_nested_groups');
?>
<br/>
	</td>
开发者ID:svgaman,项目名称:ManageUsergroups,代码行数:31,代码来源:manage_usergroups.php


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