/**
  * Returns true if this object has people subscribed to it
  *
  * @param void
  * @return boolean
  */
 function hasSubscribers()
 {
     return (bool) Subscriptions::countByParent($this);
 }