/**
  * checkes, whether more than $count group views are existant.
  *
  * @param int $count count
  *
  * @return bool
  *
  * @author Sebastian Diel <*****@*****.**>
  * @since 15.02.2011
  */
 public function hasMoreGroupHolderViewsThan($count)
 {
     $hasMoreGroupHolderViewsThan = false;
     if (!$this->owner->getUseOnlyDefaultGroupHolderViewInherited()) {
         $hasMoreGroupHolderViewsThan = count(SilvercartGroupViewHandler::getGroupHolderViews()) > $count;
     }
     return $hasMoreGroupHolderViewsThan;
 }