/**
  * Checks whether a page has a page type that can be indexed.
  * Currently standard pages and mount pages can be indexed.
  *
  * @param array $record A page record
  * @return boolean TRUE if the page can be indexed according to its page type, FALSE otherwise
  */
 protected function isIndexablePageType(array $record)
 {
     return tx_solr_Util::isAllowedPageType($record);
 }