UserRequestClass.php 420 Bytes
<?php 
/**
 * @class UserRequestClass
 * @brief Implementation of a RequestAbstractClass for a user request
 * @details
 */
class UserRequestClass extends RequestAbstractClass
{
	/*
	 * @brief Init a user request
	*/
	public function init()
	{
		//For the moment, nothing to do
		return TRUE;
	}
	
	/*
	 * @brief Run a user request
	 */
	public function run()
	{
		//For the moment, nothing to do
		return TRUE;
	}
}
?>