. */ /** * @brief Contains the session_security 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 session_security Object, herits of the BaseObject class * * @ingroup core */ class session_security extends BaseObject { /** * Returns the string representing the session_security object * * @return string The session_security label */ function __toString(){ return "Session security for (".$this->user_id.")" ; } } ?>