本文整理汇总了PHP中print_account_menu函数的典型用法代码示例。如果您正苦于以下问题:PHP print_account_menu函数的具体用法?PHP print_account_menu怎么用?PHP print_account_menu使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了print_account_menu函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: gpc_get_bool
$t_show_all = gpc_get_bool('show_all', false);
# start the page
html_page_top(lang_get('my_sponsorship'));
$t_project = helper_get_current_project();
?>
<br />
<table class="width100" cellspacing="1">
<tr>
<td class="form-title">
<?php
echo lang_get('my_sponsorship');
?>
</td>
<td class="right">
<?php
print_account_menu('account_sponsor_page.php');
?>
</td>
</tr>
</table>
<?php
# get issues user has sponsored
$t_user = auth_get_current_user_id();
$t_resolved = config_get('bug_resolved_status_threshold');
$t_payment = config_get('payment_enable', 0);
$t_project_clause = helper_project_specific_where($t_project);
$t_query = 'SELECT b.id as bug, s.id as sponsor, s.paid, b.project_id, b.fixed_in_version, b.status
FROM {bug} b, {sponsorship} s
WHERE s.user_id=' . db_param() . ' AND s.bug_id = b.id ' . ($t_show_all ? '' : 'AND ( b.status < ' . db_param() . ' OR s.paid < ' . SPONSORSHIP_PAID . ')') . '
AND ' . $t_project_clause . '
ORDER BY s.paid ASC, b.project_id ASC, b.fixed_in_version ASC, b.status ASC, b.id DESC';
示例2: edit_account_prefs
/**
* Display html form to edit account preferences
*
* @param integer $p_user_id A valid user identifier.
* @param boolean $p_error_if_protected Whether to error if the account is protected.
* @param boolean $p_accounts_menu Display account preferences menu.
* @param string $p_redirect_url Redirect URI.
* @return void
*/
function edit_account_prefs($p_user_id = null, $p_error_if_protected = true, $p_accounts_menu = true, $p_redirect_url = '')
{
if (null === $p_user_id) {
$p_user_id = auth_get_current_user_id();
}
$t_redirect_url = $p_redirect_url;
if (is_blank($t_redirect_url)) {
$t_redirect_url = 'account_prefs_page.php';
}
# protected account check
if (user_is_protected($p_user_id)) {
if ($p_error_if_protected) {
trigger_error(ERROR_PROTECTED_ACCOUNT, ERROR);
} else {
return;
}
}
$t_pref = user_pref_get($p_user_id);
# Account Preferences Form BEGIN
?>
<div id="account-prefs-update-div" class="form-container">
<form id="account-prefs-update-form" method="post" action="account_prefs_update.php">
<fieldset>
<legend><span><?php
echo lang_get('default_account_preferences_title');
?>
</span></legend>
<?php
echo form_security_field('account_prefs_update');
?>
<input type="hidden" name="user_id" value="<?php
echo $p_user_id;
?>
" />
<input type="hidden" name="redirect_url" value="<?php
echo $t_redirect_url;
?>
" />
<?php
if ($p_accounts_menu) {
print_account_menu('account_prefs_page.php');
}
?>
<div class="field-container">
<label for="default-project-id"><span><?php
echo lang_get('default_project');
?>
</span></label>
<span class="select">
<select id="default-project-id" name="default_project">
<?php
# Count number of available projects
$t_projects = current_user_get_accessible_projects();
$t_num_proj = count($t_projects);
if ($t_num_proj == 1) {
$t_num_proj += count(current_user_get_accessible_subprojects($t_projects[0]));
}
# Don't display "All projects" in selection list if there is only 1
print_project_option_list((int) $t_pref->default_project, $t_num_proj != 1);
?>
</select>
</span>
<span class="label-style"></span>
</div>
<div class="field-container">
<label for="refresh-delay"><span><?php
echo lang_get('refresh_delay');
?>
</span></label>
<span class="input"><input id="refresh-delay" type="text" name="refresh_delay" size="4" maxlength="4" value="<?php
echo $t_pref->refresh_delay;
?>
" /> <?php
echo lang_get('minutes');
?>
</span>
<span class="label-style"></span>
</div>
<div class="field-container">
<label for="redirect-delay"><span><?php
echo lang_get('redirect_delay');
?>
</span></label>
<span class="input"><input id="redirect-delay" type="text" name="redirect_delay" size="4" maxlength="3" value="<?php
echo $t_pref->redirect_delay;
?>
" /> <?php
echo lang_get('seconds');
?>
</span>
//.........这里部分代码省略.........
示例3: edit_account_prefs
function edit_account_prefs($p_user_id = null, $p_error_if_protected = true, $p_accounts_menu = true, $p_redirect_url = '')
{
if (null === $p_user_id) {
$p_user_id = auth_get_current_user_id();
}
$t_redirect_url = $p_redirect_url;
if (is_blank($t_redirect_url)) {
$t_redirect_url = 'account_prefs_page.php';
}
# protected account check
if (user_is_protected($p_user_id)) {
if ($p_error_if_protected) {
trigger_error(ERROR_PROTECTED_ACCOUNT, ERROR);
} else {
return;
}
}
if (!user_pref_exists($p_user_id)) {
user_pref_set_default($p_user_id);
}
# prefix data with u_
$t_pref = user_pref_get($p_user_id);
# Account Preferences Form BEGIN
?>
<br />
<div align="center">
<form method="post" action="account_prefs_update.php">
<input type="hidden" name="user_id" value="<?php
echo $p_user_id;
?>
" />
<input type="hidden" name="redirect_url" value="<?php
echo $t_redirect_url;
?>
" />
<table class="width75" cellspacing="1">
<tr>
<td class="form-title">
<?php
echo lang_get('default_account_preferences_title');
?>
</td>
<td class="right">
<?php
if ($p_accounts_menu) {
print_account_menu('account_prefs_page.php');
}
?>
</td>
</tr>
<tr class="row-1">
<td class="category" width="50%">
<?php
echo lang_get('default_project');
?>
</td>
<td width="50%">
<select name="default_project">
<?php
print_project_option_list($t_pref->default_project);
?>
</select>
</td>
</tr>
<tr class="row-2">
<td class="category">
<?php
echo lang_get('advanced_report');
?>
</td>
<td>
<input type="checkbox" name="advanced_report" <?php
check_checked($t_pref->advanced_report, ON);
?>
/>
</td>
</tr>
<tr class="row-1">
<td class="category">
<?php
echo lang_get('advanced_view');
?>
</td>
<td>
<input type="checkbox" name="advanced_view" <?php
check_checked($t_pref->advanced_view, ON);
?>
/>
</td>
</tr>
<tr class="row-2">
<td class="category">
<?php
echo lang_get('advanced_update');
?>
</td>
<td>
<input type="checkbox" name="advanced_update" <?php
check_checked($t_pref->advanced_update, ON);
?>
//.........这里部分代码省略.........
示例4: lang_get
<input type="hidden" name="action" value="add">
<table class="width75" cellspacing="1">
<tr>
<td class="form-title">
<input type="hidden" name="user_id" value="<?php
echo $t_user_id;
?>
" />
<?php
echo lang_get('add_profile_title');
?>
</td>
<td class="right">
<?php
if (!$g_global_profiles) {
print_account_menu('account_prof_menu_page.php');
}
?>
</td>
</tr>
<tr class="row-1">
<td class="category" width="25%">
<span class="required">*</span><?php
echo lang_get('platform');
?>
</td>
<td width="75%">
<input type="text" name="platform" size="32" maxlength="32" />
</td>
</tr>
<tr class="row-2">
示例5: helper_get_columns_to_view
$t_columns = helper_get_columns_to_view(COLUMNS_TARGET_PRINT_PAGE, false, $t_user_id);
$t_print_issues = implode(', ', $t_columns);
$t_columns = helper_get_columns_to_view(COLUMNS_TARGET_EXCEL_PAGE, false, $t_user_id);
$t_excel = implode(', ', $t_columns);
?>
<div id="manage-columns-div" class="form-container">
<form id="manage-columns-form" method="post" action="manage_config_columns_set.php">
<fieldset class="has-required">
<legend><span><?php
echo lang_get('manage_columns_config');
?>
</span></legend>
<?php
if ($t_account_page) {
print_account_menu('account_manage_columns_page.php');
}
?>
<?php
echo form_security_field('manage_config_columns_set');
?>
<input type="hidden" name="project_id" value="<?php
echo $t_project_id;
?>
" />
<input type="hidden" name="form_page" value="<?php
echo $t_account_page ? 'account' : 'manage';
?>
" />
<div class="field-container">
示例6: lang_get
<input type="hidden" name="action" value="update" />
<table class="width75" cellspacing="1">
<tr>
<td class="form-title">
<input type="hidden" name="profile_id" value="<?php
echo $v_id;
?>
" />
<?php
echo lang_get('edit_profile_title');
?>
</td>
<td class="right">
<?php
if (!profile_is_global($f_profile_id)) {
print_account_menu();
}
?>
</td>
</tr>
<tr class="row-1">
<th class="category" width="25%">
<span class="required">*</span><?php
echo lang_get('platform');
?>
</th>
<td width="75%">
<input type="text" name="platform" size="32" maxlength="32" value="<?php
echo string_attribute($v_platform);
?>
" />
示例7: require_api
require_api('html_api.php');
auth_ensure_user_authenticated();
auth_reauthenticate();
current_user_ensure_unprotected();
html_page_top(lang_get('api_tokens_link'));
?>
<div id="api-token-create-div" class="form-container">
<form id="account-create-api-token-form" method="post" action="api_token_create.php">
<fieldset>
<legend><span><?php
echo lang_get('api_token_create_form_title');
?>
</span></legend>
<?php
print_account_menu('api_tokens_page.php');
?>
<?php
echo form_security_field('create_api_token_form');
?>
<div class="field-container">
<label for="token_name"><span><?php
echo lang_get('api_token_name');
?>
</span></label>
<span class="input"><input id="token_name" type="text" name="token_name" size="64" maxlength="<?php
echo DB_FIELD_SIZE_API_TOKEN_NAME;
?>
" /></span>
<span class="label-style"></span>
示例8: edit_account_prefs
function edit_account_prefs($p_user_id = null, $p_error_if_protected = true, $p_accounts_menu = true, $p_redirect_url = '')
{
if (null === $p_user_id) {
$p_user_id = auth_get_current_user_id();
}
$t_redirect_url = $p_redirect_url;
if (is_blank($t_redirect_url)) {
$t_redirect_url = 'account_prefs_page.php';
}
# protected account check
if (user_is_protected($p_user_id)) {
if ($p_error_if_protected) {
trigger_error(ERROR_PROTECTED_ACCOUNT, ERROR);
} else {
return;
}
}
# prefix data with u_
$t_pref = user_pref_get($p_user_id);
# Account Preferences Form BEGIN
?>
<br />
<div align="center">
<form method="post" action="account_prefs_update.php">
<?php
echo form_security_field('account_prefs_update');
?>
<input type="hidden" name="user_id" value="<?php
echo $p_user_id;
?>
" />
<input type="hidden" name="redirect_url" value="<?php
echo $t_redirect_url;
?>
" />
<table class="width75" cellspacing="1">
<tr>
<td class="form-title">
<?php
echo lang_get('default_account_preferences_title');
?>
</td>
<td class="right">
<?php
if ($p_accounts_menu) {
print_account_menu('account_prefs_page.php');
}
?>
</td>
</tr>
<tr <?php
echo helper_alternate_class();
?>
>
<td class="category" width="50%">
<?php
echo lang_get('default_project');
?>
</td>
<td width="50%">
<select name="default_project">
<?php
# Count number of available projects
$t_projects = current_user_get_accessible_projects();
$t_num_proj = count($t_projects);
if ($t_num_proj == 1) {
$t_num_proj += count(current_user_get_accessible_subprojects($t_projects[0]));
}
# Don't display "All projects" in selection list if there is only 1
print_project_option_list($t_pref->default_project, $t_num_proj != 1);
?>
</select>
</td>
</tr>
<tr <?php
echo helper_alternate_class();
?>
>
<td class="category">
<?php
echo lang_get('refresh_delay');
?>
</td>
<td>
<input type="text" name="refresh_delay" size="4" maxlength="4" value="<?php
echo $t_pref->refresh_delay;
?>
" /> <?php
echo lang_get('minutes');
?>
</td>
</tr>
<tr <?php
echo helper_alternate_class();
?>
>
<td class="category">
<?php
echo lang_get('redirect_delay');
?>
//.........这里部分代码省略.........