Admineditarticlecategoryaction.class.php:
<?php
include_once( PLOG_CLASS_PATH."class/action/admin/adminaction.class.php" );
include_once( PLOG_CLASS_PATH."class/view/admin/admintemplatedview.class.php" );
include_once( PLOG_CLASS_PATH."class/view/admin/adminarticlecategorieslistview.class.php" );
include_once( PLOG_CLASS_PATH."class/dao/articlecategories.class.php" );
include_once( PLOG_CLASS_PATH."class/data/validator/stringvalidator.class.php" );
include_once( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php" );
include_once( 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 AdminEditArticleCategoryAction 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 AdminEditArticleCategoryAction( $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 AdminArticleCategoriesListView( $this->_blogInfo );
$errorView->setErrorMessage( $this->_locale->tr("error_incorrect_category_id"));
$this->setValidationErrorView( $errorView );
}
/**
* Carries out the specified action
*/
function perform()
{
// fetch the category
$this->_categoryId = $this->_request->getValue( "categoryId" );
$categories = new ArticleCategories();
$category = $categories->getCategory( $this->_categoryId, $this->_blogInfo->getId());
// show an error if we couldn't fetch the category
if( !$category ) {
$this->_view = new AdminArticleCategoriesListView( $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, "editarticlecategory" );
$this->_view->setValue( "category", $category );
$this->_view->setValue( "categoryName", $category->getName());
$this->_view->setValue( "categoryDescription", $category->getDescription());
$this->_view->setValue( "categoryInMainPage", $category->isInMainPage());
$this->_view->setValue( "categoryId", $category->getId());
$this->setCommonData();
// better to return true if everything fine
return true;
}
}
?>
Other Blog Scripts: