doreadagreement.class.php

来自「一个用PHP编写的」· PHP 代码 · 共 24 行

PHP
24
字号
<?php	lt_include( PLOG_CLASS_PATH."class/summary/action/registeraction.class.php" );	lt_include( PLOG_CLASS_PATH."class/config/config.class.php" );	lt_include( PLOG_CLASS_PATH."class/summary/view/summaryusercreationview.class.php" );		/**	 * shows a form so that users can register	 */    class doReadAgreement extends RegisterAction 	{        function perform()        {    		if( $this->_config->getValue( "summary_show_agreement" ))    		    $this->_view = new SummaryView( "registerstep0" );	    	else    		    $this->_view = new SummaryUserCreationView();		                $this->setCommonData();				    return( true );        }    }	 ?>

⌨️ 快捷键说明

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