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

📄 postlistaction.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php	lt_include( PLOG_CLASS_PATH."class/summary/action/summaryaction.class.php" );    lt_include( PLOG_CLASS_PATH."class/summary/view/summarypostlistview.class.php" );    lt_include( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php" );       	/**	 * shows a list with all the blogs, pager included	 */     class PostListAction extends SummaryAction     {        function PostListAction( $actionInfo, $request )        {            $this->SummaryAction( $actionInfo, $request );        }        /**         * Loads the posts and shows them.         */        function perform()        {            // get the blogCategoryId from request			$globalArticleCategoryId = $this->_request->getValue( "globalArticleCategoryId" );			$val = new IntegerValidator();			if( !$val->validate( $globalArticleCategoryId ))				$globalArticleCategoryId = ALL_GLOBAL_ARTICLE_CATEGORIES;            // this is a bit hackish but it works...            $page = View::getCurrentPageFromRequest();                        // create the view			$this->_view = new SummaryPostListView( Array( "summary" => "PostList", 													"globalArticleCategoryId" => $globalArticleCategoryId,			                                        "page" => $page, 			                                        "locale" => $this->_locale->getLocaleCode() ));						if( $this->_view->isCached()) {				// nothing to do, the view is cached				$this->setCommonData();				return true;			}						$categories = new GlobalArticleCategories();			if( $globalArticleCategoryId != ALL_GLOBAL_ARTICLE_CATEGORIES )			{				$currentGlobalArticleCategory = $categories->getGlobalArticleCategory( $globalArticleCategoryId );				$this->_view->setValue( "currentGlobalArticleCategory", $currentGlobalArticleCategory);			}						$this->_view->setValue( "globalArticleCategoryId", $globalArticleCategoryId );						$this->setCommonData();						return true;        }     }	 ?>

⌨️ 快捷键说明

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