douserregister.class.php
来自「一个用PHP编写的」· PHP 代码 · 共 31 行
PHP
31 行
<?php lt_include( PLOG_CLASS_PATH."class/summary/action/registeraction.class.php" ); lt_include( PLOG_CLASS_PATH."class/summary/view/summaryusercreationview.class.php" ); /** * shows a form so that users can register */ class doUserRegister extends RegisterAction { function perform() { $this->_view = new SummaryUserCreationView(); $this->setCommonData(); // clean the session data SessionManager::setSessionValue( "blogName", "" ); SessionManager::setSessionValue( "blogCategoryId", "" ); SessionManager::setSessionValue( "blogLocale", "" ); SessionManager::setSessionValue( "blogSubDomain", "" ); SessionManager::setSessionValue( "blogMainDomain", "" ); SessionManager::setSessionValue( "userName", "" ); SessionManager::setSessionValue( "userPassword", "" ); SessionManager::setSessionValue( "userEmail", "" ); SessionManager::setSessionValue( "userFullName", "" ); return( true ); } } ?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?