ID; } } return $ids; } public function activateState($state) { // We always just set the $_GET variable rather than store in Session - this always works, has highest priority // in Subsite::currentSubsiteID() and doesn't persist unlike Subsite::changeSubsite $_GET['SubsiteID'] = $state; Permission::flush_permission_cache(); } public function alterDefinition($base, $index) { $self = get_class($this); $index->filterFields['_subsite'] = array( 'name' => '_subsite', 'field' => '_subsite', 'fullfield' => '_subsite', 'base' => $base, 'origin' => $base, 'type' => 'Int', 'lookup_chain' => array(array('call' => 'variant', 'variant' => $self, 'method' => 'currentState')) ); } public function alterQuery($query, $index) { $subsite = Subsite::currentSubsiteID(); $query->filter('_subsite', array($subsite, SearchQuery::$missing)); } public static $subsites = null; /** * We need _really_ complicated logic to find just the changed subsites (because we use versions there's no explicit * deletes, just new versions with different members) so just always use all of them */ public function extractManipulationWriteState(&$writes) { $self = get_class($this); foreach ($writes as $key => $write) { if (!$this->appliesTo($write['class'], true)) { continue; } if (self::$subsites === null) { $query = new SQLQuery('"ID"', '"Subsite"'); self::$subsites = array_merge(array('0'), $query->execute()->column()); } $next = array(); foreach ($write['statefulids'] as $i => $statefulid) { foreach (self::$subsites as $subsiteID) { $next[] = array('id' => $statefulid['id'], 'state' => array_merge($statefulid['state'], array($self => (string)$subsiteID))); } } $writes[$key]['statefulids'] = $next; } } }