0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
2.4.1-2
/
standard
/
htdocs
/
inc
/
chapters
/
views
/
[
Home
]
File: _chapter.form.php
<?php /** * This file implements the Chapter form * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2003-2008 by Francois PLANQUE - {@link http://fplanque.net/} * * {@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 * }} * * @package admin * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author fplanque: Francois PLANQUE. * * @version $Id: _chapter.form.php,v 1.3 2008/01/21 09:35:26 fplanque Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); /** * @var Chapter */ global $edited_GenericCategory; /** * @var Chapter */ $edited_Chapter = & $edited_GenericCategory; /** * @var GenericCategoryCache */ global $GenericCategoryCache; global $Settings, $action, $subset_ID; // Determine if we are creating or updating... $creating = is_create_action( $action ); $Form = & new Form( NULL, 'form' ); $Form->global_icon( T_('Cancel editing!'), 'close', regenerate_url( 'action' ) ); $Form->begin_form( 'fform', $creating ? T_('New category') : T_('Category') ); $Form->hidden( 'action', $creating ? 'create' : 'update' ); $Form->hiddens_by_key( get_memorized( 'action' ) ); $Form->begin_fieldset( T_('Properties') ); // We're essentially double checking here... $edited_Blog = & $edited_Chapter->get_Blog(); $move = ''; if( $Settings->get('allow_moving_chapters') ) { // If moving cats between blogs is allowed: $move = ' '.action_icon( T_('Move to a different blog...'), 'file_move', regenerate_url( 'action,cat_ID', 'cat_ID='.$edited_Chapter->ID.'&action=move' ), T_('Move') ); } $Form->info( T_('Blog'), $edited_Blog->dget('name').$move ); $Form->select_input_options( $edited_Chapter->dbprefix.'parent_ID', $GenericCategoryCache->recurse_select( $edited_Chapter->parent_ID, $subset_ID, true, NULL, 0, array($edited_Chapter->ID) ), T_('Parent category') ); $Form->text_input( $edited_Chapter->dbprefix.'name', $edited_Chapter->name, 40, T_('Name'), '', array( 'required' => true, 'maxlength' => 255 ) ); $Form->text_input( $edited_Chapter->dbprefix.'urlname', $edited_Chapter->urlname, 40, T_('URL name'), T_('Used for clean URLs. Must be unique.'), array( 'required' => true, 'maxlength' => 255 ) ); $Form->end_fieldset(); if( $creating ) { $Form->end_form( array( array( 'submit', 'submit', T_('Record'), 'SaveButton' ), array( 'reset', '', T_('Reset'), 'ResetButton' ) ) ); } else { $Form->end_form( array( array( 'submit', 'submit', T_('Update'), 'SaveButton' ), array( 'reset', '', T_('Reset'), 'ResetButton' ) ) ); } ?>