NewsNewsFeaturesDownloadsDevelopmentSupportForumDocumentsAbout Us

actioninfo.class.php

查看本檔案說明文件.
00001 <?php
00002 
00003     include_once( PLOG_CLASS_PATH."class/object/object.class.php" );
00004 
00012     class ActionInfo extends Object 
00013     {
00014 
00030         function ActionInfo( $actionParamName, $actionParamValue )
00031         {
00032             $this->Object();
00033         
00034             $this->_actionParamName  = $actionParamName;
00035             $this->_actionParamValue = $actionParamValue;
00036         }
00037 
00043         function getActionParamName()
00044         {
00045             return $this->_actionParamName;
00046         }
00047 
00053         function getActionParamValue()
00054         {
00055             return $this->_actionParamValue;
00056         }
00057     }
00058 ?>