[ Index ] |
|
Code source de LifeType 1.2.4 |
1 <?php 2 3 lt_include( PLOG_CLASS_PATH."class/controller/controller.class.php" ); 4 5 /** 6 * \ingroup Controller 7 * 8 * Basic controller for the summary. It specifies the action map as well as as the folder 9 * where action classes for the summary can be found. 10 * 11 * @see Controller 12 */ 13 class SummaryController extends Controller 14 { 15 function SummaryController() 16 { 17 18 // action map array for the controller 19 $actions = Array( 20 "Default" => "SummaryDefaultAction", 21 "BlogList" => "BlogListAction", 22 "PostList" => "PostListAction", 23 "UserList" => "UserListAction", 24 "UserProfile" => "UserProfileAction", 25 "BlogProfile" => "BlogProfileAction", 26 "checkUserNameAjax" => "checkUserNameAjaxAction", 27 "Register" => "SummaryRegistrationAction", 28 "resetPasswordForm" => "SummaryShowResetPasswordForm", 29 "sendResetEmail" => "SummarySendResetEmail", 30 "setNewPassword" => "SummarySetNewPassword", 31 "updatePassword" => "SummaryUpdatePassword", 32 "rss" => "SummaryRssAction", 33 "summarySearch" => "SummarySearchAction", 34 "activeAccount" => "ActiveAccountAction", 35 "display" => "SummaryCustomPageAction" 36 ); 37 38 $this->Controller( $actions, "op" ); 39 $this->setActionFolderPath( PLOG_CLASS_PATH."class/summary/action/" ); 40 } 41 } 42 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 21:04:15 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |