0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
4.1.5b-1
/
standard
/
htdocs
/
inc
/
items
/
views
/
[
Home
]
File: _itemtype.form.php
<?php /** * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2009 by Francois PLANQUE - {@link http://fplanque.net/} * Parts of this file are copyright (c)2009 by The Evo Factory - {@link http://www.evofactory.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: * The Evo Factory grants Francois PLANQUE the right to license * The Evo Factory's contributions to this file and the b2evolution project * under any OSI approved OSS license (http://www.opensource.org/licenses/). * }} * * @package evocore * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author efy-sergey: Evo Factory / Sergey. * @author fplanque: Francois PLANQUE. * * @version $Id: _itemtype.form.php 9 2011-10-24 22:32:00Z fplanque $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); load_class( 'items/model/_itemtype.class.php', 'ItemType' ); /** * @var Itemtype */ global $edited_Itemtype; // Determine if we are creating or updating... global $action; $creating = is_create_action( $action ); $Form = new Form( NULL, 'itemtype_checkchanges', 'post', 'compact' ); $Form->global_icon( T_('Delete this item type!'), 'delete', regenerate_url( 'action', 'action=delete' ) ); $Form->global_icon( T_('Cancel editing!'), 'close', regenerate_url( 'action' ) ); $Form->begin_form( 'fform', $creating ? T_('New item type') : T_('Item type') ); $Form->add_crumb( 'itemtype' ); $Form->hiddens_by_key( get_memorized( 'action'.( $creating ? ',ptyp_ID' : '' ) ) ); // (this allows to come back to the right list order & page) if( $creating ) { $Form->text_input( 'new_ptyp_ID', '', 8, T_('ID'), '', array( 'maxlength'=> 10, 'required'=>true ) ); } else { $Form->hidden( 'ptyp_ID', $edited_Itemtype->ID ); } $Form->text_input( 'ptyp_name', $edited_Itemtype->name, 50, T_('Name'), '', array( 'maxlength'=> 255, 'required'=>true ) ); if( $creating ) { $Form->end_form( array( array( 'submit', 'actionArray[create]', T_('Record'), 'SaveButton' ), array( 'submit', 'actionArray[create_new]', T_('Record, then Create New'), 'SaveButton' ), array( 'submit', 'actionArray[create_copy]', T_('Record, then Create Similar'), 'SaveButton' ), array( 'reset', '', T_('Reset'), 'ResetButton' ) ) ); } else { $Form->end_form( array( array( 'submit', 'actionArray[update]', T_('Update'), 'SaveButton' ), array( 'reset', '', T_('Reset'), 'ResetButton' ) ) ); } /** * $Log: _itemtype.form.php,v $ */ ?>