function(string $id_note)
{
$success = false;
if ($this->isPublished($id_note)) {
$this->unpublish($id_note);
}
if ($this->note->get($id_note) && $this->note->deleteUrl($id_note)) {
$this->cacheDelete($id_note);
$success = true;
}
return $success;
}