. */ /** * @brief Contains the Action Object (herits of the BaseObject class) * * * @file * @author Claire Figueras * @date $date$ * @version $Revision$ * @ingroup core */ // Loads the required class try { require_once('core/class/BaseObject.php'); } catch (Exception $e) { echo $e->getMessage() . ' // '; } /** * @brief Action Object, herits of the BaseObject class * * @ingroup core */ class Action extends BaseObject { /** * Returns the string representing the Action object * * @return string The action label (label_action) */ public function __toString() { return $this->label_action ; } }