<?php
defined('C5_EXECUTE') or die("Access Denied.");
class Concrete5_Model_PagePermissionAccess extends PermissionAccess {

	public static function usePermissionCollectionIDForIdentifier() {
		// we do this because these five items are known to be OK for caching permissions against
		// page IDs (well file_uploader is unrelated but we still need to check for it or it will trip this check.)
		// if these are the only things included in your site then you should be able to use permissionsCollectionID for
		// checking permissions against, which will dramatically improve performance. 
		// If you have any custom access entities though you won't be able to use this.
		// Obviously a better way of doing this would be to retrieve all access entity types, run through each and see whether
		// they support it but this is better for performance.
		try {
			$db = Loader::db();
			$q = "select pal.paID from PermissionAccessList pal inner join PermissionAccessEntities pae on pal.peID = pae.peID inner join PermissionAccessEntityTypes paet on pae.petID = paet.petID  where paet.petHandle not in ('group', 'user', 'group_set', 'group_combination', 'file_uploader')";
			$paID = $db->GetOne($q);
			if ($paID) {
				return false;
			} else {
				return true;
			}
		} catch(Exception $e) {
			return false;
		}
	}

}