adminnewresourceaction.class.php
来自「一个用PHP编写的」· PHP 代码 · 共 80 行
PHP
80 行
<?php lt_include( PLOG_CLASS_PATH."class/action/admin/adminaction.class.php" ); lt_include( PLOG_CLASS_PATH."class/view/admin/adminnewresourceview.class.php" ); lt_include( PLOG_CLASS_PATH."class/view/admin/adminnewalbumview.class.php" ); lt_include( PLOG_CLASS_PATH."class/view/admin/adminerrorview.class.php" ); lt_include( PLOG_CLASS_PATH."class/view/admin/adminresourceslistview.class.php" ); lt_include( PLOG_CLASS_PATH."class/gallery/dao/galleryalbums.class.php" ); lt_include( PLOG_CLASS_PATH."class/gallery/dao/galleryresourcestorage.class.php" ); /** * \ingroup Action * @private * * Adds a new resource to an album */ class AdminNewResourceAction extends AdminAction { /** * Constructor. If nothing else, it also has to call the constructor of the parent * class, BlogAction with the same parameters */ function AdminNewResourceAction( $actionInfo, $request ) { $this->AdminAction( $actionInfo, $request ); $this->requirePermission( "add_resource" ); } function validate() { // check that all the folders are in place if( !GalleryResourceStorage::checkBaseStorageFolder()) { $this->_view = new AdminErrorView( $this->_blogInfo ); $this->_view->setMessage( $this->_locale->tr("error_gallery_folder_missing" )); $this->setCommonData(); return false; } return true; } /** * Carries out the specified action */ function perform() { // are resources enabled? $config =& Config::getConfig(); if( !$config->getValue( "resources_enabled", true )) { $this->_view = new AdminResourcesListView( $this->_blogInfo ); $this->_view->setErrorMessage( $this->_locale->tr("error_resources_disabled")); $this->setCommonData(); return false; } // check that we have at least one album where to put our pictures $albums = new GalleryAlbums(); $blogAlbums = $albums->getNestedAlbumList( $this->_blogInfo->getId()); if( count( $blogAlbums ) == 0 ) { $this->_view = new AdminNewAlbumView( $this->_blogInfo ); $this->_view->setErrorMessage( $this->_locale->tr("error_must_create_album_first")); $this->setCommonData(); return false; } // if all's fine, continue... $this->_view = new AdminNewResourceView( $this->_blogInfo ); $this->setCommonData(); $this->_view->setValue( "albums", $blogAlbums ); // better to return true if everything fine return true; } }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?