0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mantis
/
1.2.7-0
/
standard
/
htdocs
/
[
Home
]
File: news_menu_page.php
<?php # MantisBT - a php based bugtracking system # MantisBT is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # MantisBT is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with MantisBT. If not, see <http://www.gnu.org/licenses/>. /** * @package MantisBT * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * MantisBT Core API's */ require_once( 'core.php' ); news_ensure_enabled(); access_ensure_project_level( config_get( 'manage_news_threshold' ) ); html_page_top( lang_get( 'edit_news_link' ) ); ?> <br /> <div align="center"> <form method="post" action="news_add.php"> <?php echo form_security_field( 'news_add' ); ?> <table class="width75" cellspacing="1"> <tr> <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 width="75%"> <input type="text" name="headline" size="64" 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" width="25%"> <?php echo lang_get( 'view_status' ) ?> </td> <td width="75%"> <select name="view_state"> <?php print_enum_string_option_list( 'view_state' ) ?> </select> </td> </tr> <tr> <td> <span class="required">* <?php echo lang_get( 'required' ) ?></span> </td> <td class="center"> <input type="submit" class="button" value="<?php echo lang_get( 'post_news_button' ) ?>" /> </td> </tr> </table> </form> </div> <?php # Add News Form END # Edit/Delete News Form BEGIN if ( news_get_count( helper_get_current_project(), current_user_is_administrator() ) > 0 ) { ?> <br /> <div align="center"> <form method="post" action="news_edit_page.php"> <?php echo form_security_field( 'news_delete' ); ?> <table class="width75" cellspacing="1"> <tr> <td class="form-title" colspan="2"> <?php echo lang_get( 'edit_or_delete_news_title' ) ?> </td> </tr> <tr class="row-1"> <td class="center" colspan="2"> <input type="radio" name="action" value="edit" checked="checked" /> <?php echo lang_get( 'edit_post' ) ?> <input type="radio" name="action" value="delete" /> <?php echo lang_get( 'delete_post' ) ?> </td> </tr> <tr class="row-2"> <td class="category" width="25%"> <?php echo lang_get( 'select_post' ) ?> </td> <td width="75%"> <select name="news_id"> <?php print_news_item_option_list() ?> </select> </td> </tr> <tr> <td class="center" colspan="2"> <input type="submit" class="button" value="<?php echo lang_get( 'submit_button' ) ?>" /> </td> </tr> </table> </form> </div> <?php } # Edit/Delete News Form END html_page_bottom();