. */ /** * @brief Contains the notification Object (herits of the BaseObject class) * * * @file * @author Laurent Giovannoni * @date $date$ * @version $Revision$ * @ingroup template */ // Loads the required class try { require_once("core/class/BaseObject.php"); } catch (Exception $e){ functions::xecho($e->getMessage()).' // '; } /** * @brief lc_policies Object, herits of the BaseObject class * * @ingroup template */ class notifications extends BaseObject { /** *Print a viewable string to render the object. * @return string Rendering of the object */ public function __toString() { return $this->notification_sid; } }