0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.1.5b-1
/
standard
/
htdocs
/
inc
/
files
/
views
/
[
Home
]
File: _file_edit.form.php
<?php /** * This file implements the file editing form. * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2003-2011 by Francois Planque - {@link http://fplanque.com/} * * {@internal License choice * - If you have received this file as part of a package, please find the license.txt file in * the same folder or the closest folder above for complete license terms. * - If you have received this file individually (e-g: from http://evocms.cvs.sourceforge.net/) * then you must choose one of the following licenses before using the file: * - GNU General Public License 2 (GPL) - http://www.opensource.org/licenses/gpl-license.php * - Mozilla Public License 1.1 (MPL) - http://www.opensource.org/licenses/mozilla1.1.php * }} * * {@internal Open Source relicensing agreement: * }} * * @package admin * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author fplanque: Francois PLANQUE * * @version $Id: _file_edit.form.php 9 2011-10-24 22:32:00Z fplanque $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); /** * @var File */ global $edited_File; $Form = new Form( NULL, 'file_edit' ); $Form->global_icon( T_('Cancel editing!'), 'close', regenerate_url('fm_mode') ); $Form->begin_form( 'fform', T_('Editing:').' '.$edited_File->get_rdfs_rel_path() ); $Form->hidden_ctrl(); $Form->add_crumb( 'file' ); $Form->hidden( 'action', 'update_file' ); $Form->hiddens_by_key( get_memorized() ); $Form->switch_layout( 'none' ); echo '<div class="center">'; $Form->textarea_input( 'file_content', $edited_File->content, 25, '', array( 'class'=>'large', 'cols' => '80' ) ); $Form->buttons( array( array( 'submit', '', T_('Save!'), 'SaveButton' ), array( 'reset', '', T_('Reset'), 'ResetButton' ) ) ); echo '</div>'; $Form->switch_layout( NULL ); $Form->end_form(); /* * $Log: _file_edit.form.php,v $ */ ?>