Drop MonitoredObject::getNotes()
This commit is contained in:
parent
cdc3d43a04
commit
f1051f0ea5
|
@ -202,9 +202,4 @@ class Host extends MonitoredObject
|
||||||
MonitoredObject::parseAttributeUrls($this->host_notes_url)
|
MonitoredObject::parseAttributeUrls($this->host_notes_url)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getNotes()
|
|
||||||
{
|
|
||||||
return $this->host_notes;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -173,13 +173,6 @@ abstract class MonitoredObject implements Filterable
|
||||||
*/
|
*/
|
||||||
abstract protected function getDataView();
|
abstract protected function getDataView();
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the notes for this monitored object
|
|
||||||
*
|
|
||||||
* @return string The notes as a string
|
|
||||||
*/
|
|
||||||
public abstract function getNotes();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all note urls configured for this monitored object
|
* Get all note urls configured for this monitored object
|
||||||
*
|
*
|
||||||
|
|
|
@ -214,9 +214,4 @@ class Service extends MonitoredObject
|
||||||
MonitoredObject::parseAttributeUrls($this->service_notes_url)
|
MonitoredObject::parseAttributeUrls($this->service_notes_url)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getNotes()
|
|
||||||
{
|
|
||||||
return $this->service_notes;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue