| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| require_once( 'core.php' ); |
| |
| $t_core_path = config_get( 'core_path' ); |
| |
| require_once( $t_core_path.'news_api.php' ); |
| require_once( $t_core_path.'string_api.php' ); |
| |
| $f_news_id = gpc_get_int( 'news_id' ); |
| $f_action = gpc_get_string( 'action', '' ); |
| |
| |
| if ( 'delete' == $f_action ) { |
| require_once( 'news_delete.php' ); |
| exit; |
| } |
| |
| |
| $row = news_get_row( $f_news_id ); |
| if ( $row ) { |
| extract( $row, EXTR_PREFIX_ALL, 'v' ); |
| } |
| |
| access_ensure_project_level( config_get( 'manage_news_threshold' ), $v_project_id ); |
| |
| $v_headline = string_attribute( $v_headline ); |
| $v_body = string_textarea( $v_body ); |
| |
| html_page_top1( lang_get( 'edit_news_title' ) ); |
| |
| html_page_top2(); |
| |
| ?> |
| <br /> |
| <div class="quick-summary"> |
| <?php print_bracket_link( 'news_menu_page.php', lang_get( 'go_back' ) ) ?> |
| </div> |
| |
| <?php |
| |
| <div id="news_form_3"> |
| |
| <form method="post" action="news_update.php"> |
| |
| <input type="hidden" name="news_id" value="<?php echo $v_id ?>" /> |
| |
| <?php echo form_security_field( 'news_update' ); ?> |
| |
| <table class="border_black"> |
| |
| <tr class="title"> |
| <td class="form-title" colspan="2"><?php print lang_get('edit_news_title') ?></td> |
| </tr> |
| |
| <tr class="row-1"> |
| <td class="category"> |
| |
| <span class="required">*</span><?php echo lang_get( 'headline' ) ?>: |
| |
| </td> |
| |
| <td> |
| |
| <input type="text" name="headline" size="60" maxlength="64" value="<?php echo $v_headline ?>" /> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-2"> |
| <td class="category"> |
| |
| <span class="required">*</span><?php echo lang_get( 'body' ) ?>: |
| |
| </td> |
| |
| <td> |
| |
| <textarea name="body" cols="60" rows="8"><?php echo $v_body ?></textarea> |
| |
| </td> |
| </tr> |
| |
| <tr class="row-1"> |
| <td class="category"> |
| |
| <?php echo lang_get( 'post_to' ) ?>: |
| |
| </td> |
| |
| <td> |
| |
| <select name="project_id"> |
| |
| <?php |
| |
| $t_sitewide = false; |
| |
| if ( access_has_project_level( ADMINISTRATOR ) ) { |
| $t_sitewide = true; |
| } |
| |
| print_project_option_list( $v_project_id, $t_sitewide ); |
| |
| ?> |
| |
| </select> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-2"> |
| <td class="category"> |
| |
| <?php echo lang_get( 'announcement' ) ?>:<br /> |
| |
| <span class="small"><?php echo lang_get( 'stays_on_top' ) ?></span> |
| |
| </td> |
| |
| <td> |
| |
| <input type="checkbox" name="announcement" <?php check_checked( $v_announcement, 1 ); ?> /> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-1"> |
| <td class="category"> |
| |
| <?php echo lang_get( 'view_status' ) ?>: |
| |
| </td> |
| |
| <td> |
| |
| <select name="view_state"> |
| |
| <?php print_enum_string_option_list( 'view_state', $v_view_state ) ?> |
| |
| </select> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-2"> |
| <td class="buttons"> |
| |
| <span class="required">* <?php echo lang_get( 'required' ) ?></span> |
| |
| </td> |
| |
| <td class="buttons"> |
| |
| <input type="submit" class="button" value="<?php echo lang_get( 'update_news_button' ) ?>" /> |
| |
| </td> |
| |
| </tr> |
| |
| </table> |
| |
| </form> |
| |
| </div> |
| |
| <?php |
| |
| <?php html_page_bottom1( __FILE__ ) ?> |