NewsFeaturesDownloadsDevelopmentSupportAbout Us

lifetype-1.1.6/class/action/actioninfo.class.php

Go to the documentation of this file.
00001 <?php
00002 
00003         
00004 
00012     class ActionInfo  
00013     {
00014 
00030                 function ActionInfo( $actionParamName, $actionParamValue )
00031         {
00032             
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 ?>