| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| require_once( 'core.php' ); |
| |
| access_ensure_project_level( config_get( 'manage_news_threshold' ) ); |
| |
| html_page_top1( lang_get( 'edit_news_link' ) ); |
| |
| html_page_top2(); |
| ?> |
| |
| <br /> |
| |
| <?php |
| |
| <div id="news_form_1"> |
| |
| <form method="post" action="news_add.php"> |
| |
| <?php echo form_security_field( 'news_add' ); ?> |
| |
| <table class="border_black"> |
| <tr class="title"> |
| <td class="form-title" colspan="2"><?php echo lang_get( 'add_news_title' ) ?></td> |
| </tr> |
| |
| <tr class="row-1"> |
| |
| <td class="category" width="25%"> |
| |
| <span class="required">*</span><?php echo lang_get( 'headline' ) ?>: |
| |
| </td> |
| |
| <td> |
| |
| <input type="text" name="headline" size="60" maxlength="64" /> |
| </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"></textarea> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-1"> |
| |
| <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" /> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-2"> |
| |
| <td class="category"> |
| |
| <?php echo lang_get( 'view_status' ) ?>: |
| |
| </td> |
| |
| <td> |
| |
| <select name="view_state"> |
| |
| <?php print_enum_string_option_list( 'view_state' ) ?> |
| |
| </select> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-1"> |
| |
| <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( 'post_news_button' ) ?>" /> |
| |
| </td> |
| |
| </tr> |
| |
| </form> |
| |
| </table> |
| |
| </div> |
| |
| <?php |
| |
| <br /> |
| |
| <?php |
| |
| <div id="news_form_2"> |
| |
| <form method="post" action="news_edit_page.php"> |
| |
| <?php echo form_security_field( 'news_delete' ); ?> |
| |
| <table class="border_black"> |
| |
| <tr class="title"> |
| <td class="form-title" colspan="2"><?php echo lang_get( 'edit_or_delete_news_title' ) ?></td> |
| </tr> |
| |
| <tr class="row-1"> |
| |
| <td colspan="2"> |
| |
| <label title="<?php echo lang_get( 'edit_post' ); ?>"><input type="radio" name="action" value="edit" checked="checked" /> <?php echo lang_get( 'edit_post' ) ?> </label> |
| <label title="<?php echo lang_get( 'delete_post' ) ?>"><input type="radio" name="action" value="delete" /> <?php echo lang_get( 'delete_post' ) ?></label> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-2"> |
| |
| <td class="category"> |
| |
| <?php echo lang_get( 'select_post' ) ?>: |
| |
| </td> |
| |
| <td> |
| |
| <select name="news_id"> |
| |
| <?php print_news_item_option_list() ?> |
| |
| </select> |
| |
| </td> |
| |
| </tr> |
| |
| <tr class="row-1"> |
| |
| <td class="buttons"></td> |
| |
| <td class="buttons"> |
| |
| <input type="submit" class="button" value="<?php echo lang_get( 'submit_button' ) ?>" /> |
| |
| </td> |
| |
| </tr> |
| |
| </table> |
| |
| </form> |
| |
| </div> |
| |
| <div class="pageline2"><hr style="display:none;"></div> |
| |
| <?php |
| |
| <?php html_page_bottom1( __FILE__ ) ?> |