| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| require_once( 'core.php' ); |
| |
| $t_core_path = config_get( 'core_path' ); |
| |
| require_once( $t_core_path . 'ajax_api.php' ); |
| require_once( $t_core_path . 'tag_api.php' ); |
| |
| compress_enable(); |
| |
| $f_tag_id = gpc_get_int( 'tag_id' ); |
| $t_tag_row = tag_get( $f_tag_id ); |
| |
| if ( ! ( access_has_global_level( config_get( 'tag_edit_threshold' ) ) |
| || ( auth_get_current_user_id() == $t_tag_row['user_id'] ) |
| && access_has_global_level( config_get( 'tag_edit_own_threshold' ) ) ) ) |
| { |
| access_denied(); |
| } |
| |
| html_page_top1( sprintf( lang_get( 'tag_update' ), $t_tag_row['name'] ) ); |
| html_page_top2(); |
| ?> |
| |
| <br/> |
| <form method="post" action="tag_update.php"> |
| <?php echo form_security_field( 'tag_update' ) ?> |
| <table class="width100" cellspacing="1"> |
| |
| <!-- Title --> |
| <tr class="title"> |
| <td class="form-title" colspan="2"> |
| <?php echo sprintf( lang_get( 'tag_update' ), $t_tag_row['name'] ) ?> |
| <input type="hidden" name="tag_id" value="<?php echo $f_tag_id ?>"/> |
| </td> |
| <td class="right" colspan="3"> |
| <?php print_bracket_link( 'tag_view_page.php?tag_id='.$f_tag_id, lang_get( 'tag_update_return' ) ); ?> |
| </td> |
| </tr> |
| |
| <!-- Info --> |
| <tr class="row-category"> |
| <td width="15%"><?php echo lang_get( 'tag_id' ) ?></td> |
| <td width="25%"><?php echo lang_get( 'tag_name' ) ?></td> |
| <td width="20%"><?php echo lang_get( 'tag_creator' ) ?></td> |
| <td width="20%"><?php echo lang_get( 'tag_created' ) ?></td> |
| <td width="20%"><?php echo lang_get( 'tag_updated' ) ?></td> |
| </tr> |
| |
| <tr <?php echo helper_alternate_class() ?>> |
| <td><?php echo $t_tag_row['id'] ?></td> |
| <td><input type="text" <?php echo helper_get_tab_index() ?> name="name" value="<?php echo $t_tag_row['name'] ?>"/></td> |
| <td><?php |
| if ( access_has_global_level( config_get( 'tag_edit_threshold' ) ) ) { |
| if ( ON == config_get( 'use_javascript' ) ) { |
| $t_username = prepare_user_name( $t_tag_row['user_id'] ); |
| echo ajax_click_to_edit( $t_username, 'user_id', 'entrypoint=user_combobox&user_id=' . $t_tag_row['user_id'] . '&access_level=' . config_get( 'tag_create_threshold' ) ); |
| } else { |
| echo '<select ', helper_get_tab_index(), ' name="user_id">'; |
| print_user_option_list( $t_tag_row['user_id'], ALL_PROJECTS, config_get( 'tag_create_threshold' ) ); |
| echo '</select>'; |
| } |
| } else { |
| echo user_get_name($t_tag_row['user_id']); |
| } |
| ?></td> |
| <td><?php echo print_date( config_get( 'normal_date_format' ), db_unixtimestamp( $t_tag_row['date_created'] ) ) ?> </td> |
| <td><?php echo print_date( config_get( 'normal_date_format' ), db_unixtimestamp( $t_tag_row['date_updated'] ) ) ?> </td> |
| </tr> |
| |
| <!-- spacer --> |
| <tr class="spacer"> |
| <td colspan="5"></td> |
| </tr> |
| |
| <!-- Description --> |
| <tr <?php echo helper_alternate_class() ?>> |
| <td class="category"><?php echo lang_get( 'tag_description' ) ?></td> |
| <td colspan="4"> |
| <textarea name="description" <?php echo helper_get_tab_index() ?> cols="80" rows="6"><?php echo string_textarea( $t_tag_row['description'] ) ?></textarea> |
| </td> |
| </tr> |
| |
| <!-- Submit Button --> |
| <tr> |
| <td class="center" colspan="6"> |
| <input <?php echo helper_get_tab_index() ?> type="submit" class="button" value="<?php echo lang_get( 'tag_update_button' ) ?>" /> |
| </td> |
| </tr> |
| |
| </table> |
| </form> |
| |
| <?php |
| html_page_bottom1( __FILE__ ); |
| ?> |