id = $id; $this->message = $message; $this->title = $title; $this->severity = $severity; } public function get_id() { return $this->id; } public function get_title() { return $this->title ? call_user_func( $this->title ) : ''; } public function get_message() { return call_user_func( $this->message ); } public function get_severity() { return $this->severity; } public function get_meta() { return array(); } public function show_for_context( ITSEC_Admin_Notice_Context $context ) { return true; } public function get_actions() { return array(); } }