NewsFeaturesDownloadsDevelopmentSupportAbout Us

lifetype/branches/lifetype-1.0.6/class/action/admin/adminblogcustomfieldsaction.class.php

Go to the documentation of this file.
00001 <?php
00002 
00003         include_once( PLOG_CLASS_PATH."class/action/admin/blogowneradminaction.class.php" );
00004     include_once( PLOG_CLASS_PATH."class/view/admin/admincustomfieldslistview.class.php" );
00005         include_once( PLOG_CLASS_PATH."class/dao/customfields/customfields.class.php" );
00006 
00013     class AdminBlogCustomFieldsAction extends BlogOwnerAdminAction 
00014         {
00015 
00016         function AdminBlogCustomFieldsAction( $actionInfo, $request )
00017         {
00018                 $this->BlogOwnerAdminAction( $actionInfo, $request );
00019         }
00020 
00024         function perform()
00025         {
00026                         // the view will do everything for us anyway... :)
00027                         $this->_view = new AdminCustomFieldsListView( $this->_blogInfo );
00028                         $this->setCommonData();
00029         }
00030     }
00031 ?>