[pLog-svn] r4771 - plog/branches/lifetype-1.2/class/action

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sun Feb 18 15:49:51 EST 2007


Author: oscar
Date: 2007-02-18 15:49:51 -0500 (Sun, 18 Feb 2007)
New Revision: 4771

Modified:
   plog/branches/lifetype-1.2/class/action/action.class.php
Log:
Removed some unused code.

Modified: plog/branches/lifetype-1.2/class/action/action.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/action.class.php	2007-02-18 20:47:31 UTC (rev 4770)
+++ plog/branches/lifetype-1.2/class/action/action.class.php	2007-02-18 20:49:51 UTC (rev 4771)
@@ -272,42 +272,7 @@
 			return true;
 		}
 		
-		/**
-		 * after executing the current action we will not show the results but 
-		 * transfer the execution flow to another action. In other words, the Controller
-		 * will detect that the processing is being passed to another Action class and
-		 * instead of calling Action::getView() right after Action::perform() it will
-		 * call the perform() method of the next action in the flow. It is only possible
-		 * to specify one action to forward to at a time, but this feature can be used
-		 * as many times as needed.
-		 *
-		 * @param actionKey The key of the action to which we're forwarding the process flow. This
-		 * is <b>not</b> the class name of the action but the <b>key</b> name to which the
-		 * action class has been assigned.
-		 * @return Always true
-		 */
-		 function setForwardAction( $nextActionKey )
-		 {		 
-			Controller::setForwardAction( $nextActionKey, $this );
-			
-			return true;
-		 }
-		 
 		 /**
-		  * sets a parameter in the session... or in other words, make it available
-		  * for the next coming action.
-		  *
-		  * @param param
-		  * @param value
-		  * @return Always true
-		  * @private
-		  */
-		 function setForwardActionParameter( $param, $value )
-		 {
-			return true;
-		 }
-		 
-		 /**
 		  * This method can be used to trigger validation errors even if they did not really happen, or
 		  * to disable errors if they happened.
 		  *



More information about the pLog-svn mailing list