added canView function

This commit is contained in:
rasstislav 2016-09-25 14:14:27 +02:00 committed by GitHub
parent 0986537be7
commit 7c20481f95

View File

@ -316,4 +316,9 @@ class Widget extends DataObject
$this->Name = $this->class . $this->ID;
$this->write();
}
public function canView($member = null)
{
return true;
}
}