Home
last modified time | relevance | path

Searched refs:changeTagDefStore (Results 1 – 25 of 37) sorted by relevance

12

/dports/www/mediawiki137/mediawiki-1.37.1/includes/api/
H A DApiQueryDeletedRevisions.php47 private $changeTagDefStore; variable in ApiQueryDeletedRevisions
59 * @param NameTableStore $changeTagDefStore
70 NameTableStore $changeTagDefStore, argument
85 $this->changeTagDefStore = $changeTagDefStore;
134 $this->addWhereFld( 'ct_tag_id', $this->changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryRevisions.php46 private $changeTagDefStore; variable in ApiQueryRevisions
58 * @param NameTableStore $changeTagDefStore
69 NameTableStore $changeTagDefStore, argument
84 $this->changeTagDefStore = $changeTagDefStore;
200 $this->addWhereFld( 'ct_tag_id', $this->changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryLogEvents.php38 private $changeTagDefStore;
44 * @param NameTableStore $changeTagDefStore
50 NameTableStore $changeTagDefStore
54 $this->changeTagDefStore = $changeTagDefStore;
129 $this->addWhereFld( 'ct_tag_id', $this->changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryAllDeletedRevisions.php46 private $changeTagDefStore;
58 * @param NameTableStore $changeTagDefStore
69 NameTableStore $changeTagDefStore,
84 $this->changeTagDefStore = $changeTagDefStore;
184 $this->addWhereFld( 'ct_tag_id', $this->changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryDeletedrevs.php48 private $changeTagDefStore; variable in ApiQueryDeletedrevs
58 * @param NameTableStore $changeTagDefStore
66 NameTableStore $changeTagDefStore, argument
72 $this->changeTagDefStore = $changeTagDefStore;
160 $this->addWhereFld( 'ct_tag_id', $this->changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryRecentChanges.php41 private $changeTagDefStore; variable in ApiQueryRecentChanges
53 * @param NameTableStore $changeTagDefStore
61 NameTableStore $changeTagDefStore, argument
67 $this->changeTagDefStore = $changeTagDefStore;
320 $this->addWhereFld( 'ct_tag_id', $this->changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryUserContribs.php53 private $changeTagDefStore; variable in ApiQueryUserContribs
65 * @param NameTableStore $changeTagDefStore
75 NameTableStore $changeTagDefStore, argument
83 $this->changeTagDefStore = $changeTagDefStore;
485 $this->addWhereFld( 'ct_tag_id', $this->changeTagDefStore->getId( $this->params['tag'] ) );
/dports/www/mediawiki135/mediawiki-1.35.5/includes/changetags/
H A DChangeTags.php398 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
402 $changeTagMapping[$tag] = $changeTagDefStore->acquireId( $tag );
445 'ct_tag_id' => $changeTagDefStore->getId( $tag ),
502 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
504 $tags[] = $changeTagDefStore->getName( (int)$tagId );
854 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
857 $filterTagIds[] = $changeTagDefStore->getId( $filterTagName );
/dports/www/mediawiki135/mediawiki-1.35.5/includes/Rest/Handler/
H A DPageHistoryHandler.php37 private $changeTagDefStore; variable in MediaWiki\\Rest\\Handler\\PageHistoryHandler
68 $this->changeTagDefStore = $nameTableStoreFactory->getChangeTagDef();
113 $tagIds[] = $this->changeTagDefStore->getId( $tagName );
H A DPageHistoryCountHandler.php52 private $changeTagDefStore; variable in MediaWiki\\Rest\\Handler\\PageHistoryCountHandler
90 $this->changeTagDefStore = $nameTableStoreFactory->getChangeTagDef();
536 $tagIds[] = $this->changeTagDefStore->getId( $tagName );
/dports/www/mediawiki137/mediawiki-1.37.1/includes/Rest/Handler/
H A DPageHistoryHandler.php37 private $changeTagDefStore; variable in MediaWiki\\Rest\\Handler\\PageHistoryHandler
75 $this->changeTagDefStore = $nameTableStoreFactory->getChangeTagDef();
121 $tagIds[] = $this->changeTagDefStore->getId( $tagName );
H A DPageHistoryCountHandler.php51 private $changeTagDefStore; variable in MediaWiki\\Rest\\Handler\\PageHistoryCountHandler
96 $this->changeTagDefStore = $nameTableStoreFactory->getChangeTagDef();
539 $tagIds[] = $this->changeTagDefStore->getId( $tagName );
/dports/www/mediawiki136/mediawiki-1.36.3/includes/Rest/Handler/
H A DPageHistoryHandler.php35 private $changeTagDefStore; variable in MediaWiki\\Rest\\Handler\\PageHistoryHandler
63 $this->changeTagDefStore = $nameTableStoreFactory->getChangeTagDef();
105 $tagIds[] = $this->changeTagDefStore->getId( $tagName );
H A DPageHistoryCountHandler.php49 private $changeTagDefStore; variable in MediaWiki\\Rest\\Handler\\PageHistoryCountHandler
84 $this->changeTagDefStore = $nameTableStoreFactory->getChangeTagDef();
527 $tagIds[] = $this->changeTagDefStore->getId( $tagName );
/dports/www/mediawiki137/mediawiki-1.37.1/includes/changetags/
H A DChangeTags.php455 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
459 $changeTagMapping[$tag] = $changeTagDefStore->acquireId( $tag );
502 'ct_tag_id' => $changeTagDefStore->getId( $tag ),
569 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
571 $tagName = $changeTagDefStore->getName( (int)$row->ct_tag_id );
951 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
954 $filterTagIds[] = $changeTagDefStore->getId( $filterTagName );
/dports/www/mediawiki136/mediawiki-1.36.3/includes/changetags/
H A DChangeTags.php437 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
441 $changeTagMapping[$tag] = $changeTagDefStore->acquireId( $tag );
484 'ct_tag_id' => $changeTagDefStore->getId( $tag ),
545 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
547 $tagName = $changeTagDefStore->getName( (int)$row->ct_tag_id );
918 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
921 $filterTagIds[] = $changeTagDefStore->getId( $filterTagName );
/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/integration/includes/page/
H A DDeletePageTest.php200 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
201 $expectedTags = array_map( [ $changeTagDefStore, 'acquireId' ], $tags );
/dports/www/mediawiki135/mediawiki-1.35.5/includes/api/
H A DApiQueryDeletedRevisions.php87 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
89 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryAllDeletedRevisions.php135 $changeTagDefStore = $services->getChangeTagDefStore();
137 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryDeletedrevs.php128 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
130 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
/dports/www/mediawiki136/mediawiki-1.36.3/includes/api/
H A DApiQueryDeletedRevisions.php91 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
93 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryRevisions.php196 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
198 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
H A DApiQueryAllDeletedRevisions.php139 $changeTagDefStore = $services->getChangeTagDefStore();
141 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
/dports/www/mediawiki137/mediawiki-1.37.1/includes/specials/
H A DSpecialUndelete.php88 private $changeTagDefStore; variable in SpecialUndelete
113 * @param NameTableStore $changeTagDefStore
126 NameTableStore $changeTagDefStore, argument
139 $this->changeTagDefStore = $changeTagDefStore;
763 $tags[] = $this->changeTagDefStore->getName( (int)$tagId );
/dports/www/mediawiki136/mediawiki-1.36.3/includes/specials/
H A DSpecialUndelete.php88 private $changeTagDefStore; variable in SpecialUndelete
113 * @param NameTableStore $changeTagDefStore
126 NameTableStore $changeTagDefStore, argument
139 $this->changeTagDefStore = $changeTagDefStore;
771 $tags[] = $this->changeTagDefStore->getName( (int)$tagId );

12