target->getIndexer($this->configuration['type'])->get($this->configuration['id']); if (isset($this->configuration['where'])) { $where = $this->configuration['where']; // If the first character of the filter is an exclamation point, negate it. return ($where{0} == '!' ? $objects->not(subStr($where, 1)) : $objects->filter($where)); } else { return $objects; } } }