⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admineditglobalarticlecategoryaction.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php	  /**       * GLobal artical Category files added by Ameng(Ameng.vVlogger.com) 2005-06-20       * version 1.0        * Changed from original article category.       */		lt_include( PLOG_CLASS_PATH."class/action/admin/adminaction.class.php" );        lt_include( PLOG_CLASS_PATH."class/view/admin/admintemplatedview.class.php" );        lt_include( PLOG_CLASS_PATH."class/view/admin/adminglobalarticlecategorieslistview.class.php" );        lt_include( PLOG_CLASS_PATH."class/dao/globalarticlecategories.class.php" );		lt_include( PLOG_CLASS_PATH."class/data/validator/stringvalidator.class.php" );		lt_include( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php" );		lt_include( PLOG_CLASS_PATH."class/data/validator/emptyvalidator.class.php" );    /**     * \ingroup Action     * @private     *     * Action that shows a form to change the settings of the article category     */    class AdminEditGlobalArticleCategoryAction extends AdminAction 	{    	var $_categoryId;    	/**         * Constructor. If nothing else, it also has to call the constructor of the parent         * class, BlogAction with the same parameters         */        function AdminEditGlobalArticleCategoryAction( $actionInfo, $request )        {        	$this->AdminAction( $actionInfo, $request );						// stuff for the data validation			$this->registerFieldValidator( "categoryId", new IntegerValidator());			$this->_form->registerField( "categoryName" );			$this->_form->registerField( "categoryDescription" );			$errorView = new AdminGlobalArticleCategoriesListView( $this->_blogInfo );			$errorView->setErrorMessage( $this->_locale->tr("error_incorrect_category_id"));			$this->setValidationErrorView( $errorView );						$this->requireAdminPermission( "update_global_category" );			        }        /**         * Carries out the specified action         */        function perform()        {        	// fetch the category			$this->_categoryId = $this->_request->getValue( "categoryId" );            $categories = new GlobalArticleCategories();            $category   = $categories->getGlobalArticleCategory( $this->_categoryId);            // show an error if we couldn't fetch the category            if( !$category ) {            	$this->_view = new AdminGlobalArticleCategoriesListView( $this->_blogInfo );                $this->_view->setErrorMessage( $this->_locale->tr("error_fetching_category") );				$this->_view->setError( true );                $this->setCommonData();                return false;            }						$this->notifyEvent( EVENT_CATEGORY_LOADED, Array( "category" => &$category ));			            // otherwise show the form to edit its fields        	$this->_view = new AdminTemplatedView( $this->_blogInfo, "editglobalarticlecategory" );            $this->_view->setValue( "category", $category );			$this->_view->setValue( "categoryName", $category->getName());			$this->_view->setValue( "categoryDescription", $category->getDescription());			$this->_view->setValue( "categoryId", $category->getId());            $this->setCommonData();            // better to return true if everything fine           return true;        }    }?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -