Lines Matching defs:pageId
48 public function __construct($messageId, $pageId) {
58 public function __construct($pageId) {
59 parent::__construct('war_norights', $pageId);
68 public function __construct($pageId, $lockedBy) {
69 parent::__construct('war_pagelock', $pageId, $lockedBy);
795 abstract public function markMatch($pageId, $offset);
814 public function markMatch($pageId, $offset) {
815 if (!array_key_exists($pageId, $this->pages) || !array_key_exists($pageId, $this->cache)) {
819 $matches = $this->pages[$pageId]->getMatches();
820 $cache = $this->cache[$pageId]->getMatches();
827 $this->pages[$pageId]->markMatch($offset);
855 public function markMatch($pageId, $offset) {
856 if (array_key_exists($pageId, $this->pages)) {
857 $this->pages[$pageId]->markMatch($offset);
867 public function markMatch($pageId, $offset) {
868 if (!array_key_exists($pageId, $this->pages)) {
872 if (array_key_exists($offset, $this->pages[$pageId]->getMatches())) {
873 $this->pages[$pageId]->markMatch($offset);
881 foreach ($this->pages[$pageId]->getMatches() as $match) {
903 $this->pages[$pageId]->markMatch($minOffset);
1021 foreach ($index as $pageId) {
1022 $page = new BatcheditPage(trim($pageId));
1076 list($pageId, $offset) = explode('#', $matchId);
1078 $policy->markMatch($pageId, $offset);
1167 $index = array_filter($index, function ($pageId) use ($positiveFilter, $negativeFilter) {
1171 $matched = preg_match($positiveFilter, $pageId) == 1;
1175 $matched = preg_match($negativeFilter, $pageId) == 0;