/**
  * Checks if a frontend user has access to a page
  * @return boolean
  * @access private
  * @internal
  */
 private function _check_frontend_page_access()
 {
     if ($this->_feuAccess == -1 && ($feu =& ac_utils::get_module('FrontEndUsers'))) {
         $this->_feuAccess = $this->GetProperty('hide_menu_item') == 2 && $feu->LoggedInId() ? false : ac_utils::FeuIsMemberOf($this->GetProperty('feu_access'));
     }
     return $this->_feuAccess;
 }