/**
  * Is this item viewable? 
  * 
  * Just proxy to the content source for now. Child implementations can
  * override if needbe
  * 
  * @see sapphire/core/model/DataObject#canView($member)
  */
 public function canView($member = null)
 {
     return $this->source->canView();
 }