public function testInitCustomNamespace() { $test = array('wgLanguageCode' => 'en'); NamespaceManager::initCustomNamespace($test); $this->assertNotEmpty($test); $this->assertEquals(100, $test['smwgNamespaceIndex']); }
/** * @since 2.5 */ public function outputConfigurationList() { $this->outputFormatter->setPageTitle($this->getMessage('smw-smwadmin-settings-title')); $this->outputFormatter->addParentLink(); $this->outputFormatter->addHtml(Html::rawElement('p', array(), $this->getMessage('smw-sp-admin-settings-docu', Message::PARSE))); $this->outputFormatter->addHtml('<pre>' . $this->outputFormatter->encodeAsJson(ApplicationFactory::getInstance()->getSettings()->getOptions()) . '</pre>'); $this->outputFormatter->addHtml('<pre>' . $this->outputFormatter->encodeAsJson(array('canonicalNames' => NamespaceManager::getCanonicalNames())) . '</pre>'); }
public function testCanonicalNames() { $this->mwHooksHandler->deregisterListedHooks(); $count = 0; $index = NamespaceManager::buildNamespaceIndex(Settings::newFromGlobals()->get('smwgNamespaceIndex')); $names = NamespaceManager::getCanonicalNames(); $this->assertInternalType('array', $names); $this->assertInternalType('array', $index); foreach ($index as $ns => $idx) { $mwNamespace = MWNamespace::getCanonicalName($idx); if ($mwNamespace && isset($names[$idx])) { $this->assertEquals($mwNamespace, $names[$idx]); $count++; } } $this->assertCount($count, $names, "Asserts that expected amount of cannonical names have been verified"); }
// Load global constants require_once __DIR__ . '/includes/Defines.php'; // Temporary measure to ease Composer/MW 1.22 migration require_once __DIR__ . '/includes/NamespaceManager.php'; // Load global functions require_once __DIR__ . '/includes/GlobalFunctions.php'; // Load default settings require_once __DIR__ . '/SemanticMediaWiki.settings.php'; // Because of MW 1.19 we need to register message files here $GLOBALS['wgMessagesDirs']['SemanticMediaWiki'] = $GLOBALS['smwgIP'] . 'i18n'; $GLOBALS['wgExtensionMessagesFiles']['SemanticMediaWiki'] = $GLOBALS['smwgIP'] . 'languages/SMW_Messages.php'; $GLOBALS['wgExtensionMessagesFiles']['SemanticMediaWikiAlias'] = $GLOBALS['smwgIP'] . 'languages/SMW_Aliases.php'; $GLOBALS['wgExtensionMessagesFiles']['SemanticMediaWikiMagic'] = $GLOBALS['smwgIP'] . 'languages/SMW_Magic.php'; /** * Setup and initialization * * @note $wgExtensionFunctions variable is an array that stores * functions to be called after most of MediaWiki initialization * has finalized * * @see https://www.mediawiki.org/wiki/Manual:$wgExtensionFunctions * * @since 1.9 */ $GLOBALS['wgExtensionFunctions'][] = function () { $applicationFactory = ApplicationFactory::getInstance(); $namespace = new NamespaceManager($GLOBALS, __DIR__); $namespace->run(); $setup = new Setup($applicationFactory, $GLOBALS, __DIR__); $setup->run(); };
/** * Setup and initialization * * @note $wgExtensionFunctions variable is an array that stores * functions to be called after most of MediaWiki initialization * has finalized * * @see https://www.mediawiki.org/wiki/Manual:$wgExtensionFunctions * * @since 1.9 */ public static function onExtensionFunction() { // 3.x reverse the order to ensure that smwgMainCacheType is used // as main and smwgCacheType being deprecated with 3.x $GLOBALS['smwgMainCacheType'] = $GLOBALS['smwgCacheType']; $applicationFactory = ApplicationFactory::getInstance(); $namespace = new NamespaceManager($GLOBALS); $namespace->init(); $setup = new Setup($applicationFactory, $GLOBALS, __DIR__); $setup->run(); }
private function addCallbackHandlers($basePath, $globalVars) { $eventHandler = EventHandler::getInstance(); $applicationFactory = ApplicationFactory::getInstance(); $propertyHierarchyLookup = new PropertyHierarchyLookup($applicationFactory->getStore(), $applicationFactory->newCacheFactory()->newFixedInMemoryCache(500)); $propertyHierarchyLookup->setSubcategoryDepth($applicationFactory->getSettings()->get('smwgQSubcategoryDepth')); $propertyHierarchyLookup->setSubpropertyDepth($applicationFactory->getSettings()->get('smwgQSubpropertyDepth')); /** * Hook: ParserAfterTidy to add some final processing to the fully-rendered page output * * @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserAfterTidy */ $this->handlers['ParserAfterTidy'] = function (&$parser, &$text) { $parserAfterTidy = new ParserAfterTidy($parser, $text); return $parserAfterTidy->process(); }; /** * Hook: Called by BaseTemplate when building the toolbox array and * returning it for the skin to output. * * @see https://www.mediawiki.org/wiki/Manual:Hooks/BaseTemplateToolbox */ $this->handlers['BaseTemplateToolbox'] = function ($skinTemplate, &$toolbox) { $baseTemplateToolbox = new BaseTemplateToolbox($skinTemplate, $toolbox); return $baseTemplateToolbox->process(); }; /** * Hook: Allows extensions to add text after the page content and article * metadata. * * @see https://www.mediawiki.org/wiki/Manual:Hooks/SkinAfterContent */ $this->handlers['SkinAfterContent'] = function (&$data, $skin = null) { $skinAfterContent = new SkinAfterContent($data, $skin); return $skinAfterContent->process(); }; /** * Hook: Called after parse, before the HTML is added to the output * * @see https://www.mediawiki.org/wiki/Manual:Hooks/OutputPageParserOutput */ $this->handlers['OutputPageParserOutput'] = function (&$outputPage, $parserOutput) { $outputPageParserOutput = new OutputPageParserOutput($outputPage, $parserOutput); return $outputPageParserOutput->process(); }; /** * Hook: Add changes to the output page, e.g. adding of CSS or JavaScript * * @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforePageDisplay */ $this->handlers['BeforePageDisplay'] = function (&$outputPage, &$skin) { $beforePageDisplay = new BeforePageDisplay($outputPage, $skin); return $beforePageDisplay->process(); }; /** * Hook: InternalParseBeforeLinks is used to process the expanded wiki * code after <nowiki>, HTML-comments, and templates have been treated. * * @see https://www.mediawiki.org/wiki/Manual:Hooks/InternalParseBeforeLinks */ $this->handlers['InternalParseBeforeLinks'] = function (&$parser, &$text) { $internalParseBeforeLinks = new InternalParseBeforeLinks($parser, $text); return $internalParseBeforeLinks->process(); }; /** * Hook: NewRevisionFromEditComplete called when a revision was inserted * due to an edit * * @see https://www.mediawiki.org/wiki/Manual:Hooks/NewRevisionFromEditComplete */ $this->handlers['NewRevisionFromEditComplete'] = function ($wikiPage, $revision, $baseId, $user) { $newRevisionFromEditComplete = new NewRevisionFromEditComplete($wikiPage, $revision, $baseId, $user); return $newRevisionFromEditComplete->process(); }; /** * Hook: TitleMoveComplete occurs whenever a request to move an article * is completed * * @see https://www.mediawiki.org/wiki/Manual:Hooks/TitleMoveComplete */ $this->handlers['TitleMoveComplete'] = function (&$oldTitle, &$newTitle, &$user, $oldId, $newId) { $titleMoveComplete = new TitleMoveComplete($oldTitle, $newTitle, $user, $oldId, $newId); return $titleMoveComplete->process(); }; /** * Hook: ArticlePurge executes before running "&action=purge" * * @see https://www.mediawiki.org/wiki/Manual:Hooks/ArticlePurge */ $this->handlers['ArticlePurge'] = function (&$wikiPage) { $articlePurge = new ArticlePurge(); return $articlePurge->process($wikiPage); }; /** * Hook: ArticleDelete occurs whenever the software receives a request * to delete an article * * @see https://www.mediawiki.org/wiki/Manual:Hooks/ArticleDelete */ $this->handlers['ArticleDelete'] = function (&$wikiPage, &$user, &$reason, &$error) { $articleDelete = new ArticleDelete($wikiPage, $user, $reason, $error); return $articleDelete->process(); }; /** * Hook: LinksUpdateConstructed called at the end of LinksUpdate() construction * * @see https://www.mediawiki.org/wiki/Manual:Hooks/LinksUpdateConstructed */ $this->handlers['LinksUpdateConstructed'] = function ($linksUpdate) { $linksUpdateConstructed = new LinksUpdateConstructed($linksUpdate); return $linksUpdateConstructed->process(); }; /** * Hook: Add extra statistic at the end of Special:Statistics * * @see https://www.mediawiki.org/wiki/Manual:Hooks/SpecialStatsAddExtra */ $this->handlers['SpecialStatsAddExtra'] = function (&$extraStats) use($globalVars) { $specialStatsAddExtra = new SpecialStatsAddExtra($extraStats, $globalVars['wgVersion'], $globalVars['wgLang']); return $specialStatsAddExtra->process(); }; /** * Hook: For extensions adding their own namespaces or altering the defaults * * @Bug 34383 * @see https://www.mediawiki.org/wiki/Manual:Hooks/CanonicalNamespaces */ $this->handlers['CanonicalNamespaces'] = function (&$list) { $list = $list + NamespaceManager::getCanonicalNames(); return true; }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/FileUpload * * @since 1.9.1 */ $this->handlers['FileUpload'] = function ($file, $reupload) { $fileUpload = new FileUpload($file, $reupload); return $fileUpload->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ResourceLoaderGetConfigVars */ $this->handlers['ResourceLoaderGetConfigVars'] = function (&$vars) { $resourceLoaderGetConfigVars = new ResourceLoaderGetConfigVars($vars); return $resourceLoaderGetConfigVars->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/GetPreferences */ $this->handlers['GetPreferences'] = function ($user, &$preferences) { $getPreferences = new GetPreferences($user, $preferences); return $getPreferences->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/SkinTemplateNavigation */ $this->handlers['SkinTemplateNavigation'] = function (&$skinTemplate, &$links) { $skinTemplateNavigation = new SkinTemplateNavigation($skinTemplate, $links); return $skinTemplateNavigation->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/LoadExtensionSchemaUpdates */ $this->handlers['LoadExtensionSchemaUpdates'] = function ($databaseUpdater) { $extensionSchemaUpdates = new ExtensionSchemaUpdates($databaseUpdater); return $extensionSchemaUpdates->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ResourceLoaderTestModules */ $this->handlers['ResourceLoaderTestModules'] = function (&$testModules, &$resourceLoader) use($basePath, $globalVars) { $resourceLoaderTestModules = new ResourceLoaderTestModules($resourceLoader, $testModules, $basePath, $globalVars['IP']); return $resourceLoaderTestModules->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ExtensionTypes */ $this->handlers['ExtensionTypes'] = function (&$extTypes) { $extensionTypes = new ExtensionTypes($extTypes); return $extensionTypes->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/TitleIsAlwaysKnown */ $this->handlers['TitleIsAlwaysKnown'] = function ($title, &$result) { $titleIsAlwaysKnown = new TitleIsAlwaysKnown($title, $result); return $titleIsAlwaysKnown->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforeDisplayNoArticleText */ $this->handlers['BeforeDisplayNoArticleText'] = function ($article) { $beforeDisplayNoArticleText = new BeforeDisplayNoArticleText($article); return $beforeDisplayNoArticleText->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ArticleFromTitle */ $this->handlers['ArticleFromTitle'] = function (&$title, &$article) { $articleFromTitle = new ArticleFromTitle($title, $article); return $articleFromTitle->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/TitleIsMovable */ $this->handlers['TitleIsMovable'] = function ($title, &$isMovable) { $titleIsMovable = new TitleIsMovable($title, $isMovable); return $titleIsMovable->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/EditPage::showEditForm:initial */ $this->handlers['EditPage::showEditForm:initial'] = function ($editPage, $output = null) use($applicationFactory) { // 1.19 hook interface is missing the output object if (!$output instanceof \OutputPage) { $output = $GLOBALS['wgOut']; } $htmlFormRenderer = $applicationFactory->newMwCollaboratorFactory()->newHtmlFormRenderer($editPage->getTitle(), $output->getLanguage()); $editPageForm = new EditPageForm($editPage, $htmlFormRenderer); return $editPageForm->process(); }; $this->handlers['SMW::Store::dropTables'] = function ($verbose) use($eventHandler) { $eventHandler->getEventDispatcher()->dispatch('blobstore.drop'); return true; }; $this->handlers['SMW::SQLStore::AfterDataUpdateComplete'] = function ($store, $semanticData, $compositePropertyTableDiffIterator) use($applicationFactory) { $embeddedQueryDependencyLinksStore = new EmbeddedQueryDependencyLinksStore($store); $embeddedQueryDependencyLinksStore->setEnabledState($applicationFactory->getSettings()->get('smwgEnabledQueryDependencyLinksStore')); $embeddedQueryDependencyLinksStore->pruneOutdatedTargetLinks($compositePropertyTableDiffIterator); $httpRequestFactory = new HttpRequestFactory(); $deferredRequestDispatchManager = new DeferredRequestDispatchManager($httpRequestFactory->newSocketRequest()); $deferredRequestDispatchManager->setEnabledHttpDeferredJobRequestState($applicationFactory->getSettings()->get('smwgEnabledHttpDeferredJobRequest')); $deferredRequestDispatchManager->dispatchJobRequestFor('SMW\\ParserCachePurgeJob', $semanticData->getSubject()->getTitle(), $embeddedQueryDependencyLinksStore->buildParserCachePurgeJobParametersFrom($compositePropertyTableDiffIterator)); return true; }; $this->handlers['SMW::Store::AfterQueryResultLookupComplete'] = function ($store, &$result) use($applicationFactory, $propertyHierarchyLookup) { $embeddedQueryDependencyListResolver = new EmbeddedQueryDependencyListResolver($store, $propertyHierarchyLookup); $embeddedQueryDependencyListResolver->setQueryResult($result); $embeddedQueryDependencyListResolver->setPropertyDependencyDetectionBlacklist($applicationFactory->getSettings()->get('smwgPropertyDependencyDetectionBlacklist')); $embeddedQueryDependencyLinksStore = new EmbeddedQueryDependencyLinksStore($store); $embeddedQueryDependencyLinksStore->setEnabledState($applicationFactory->getSettings()->get('smwgEnabledQueryDependencyLinksStore')); $embeddedQueryDependencyLinksStore->addDependencyList($embeddedQueryDependencyListResolver); return true; }; $this->registerParserFunctionHooks($applicationFactory); }
/** * Function to switch on Semantic MediaWiki. This function must be called in * LocalSettings.php after including SMW_Settings.php. It is used to ensure * that required parameters for SMW are really provided explicitly. For * readability, this is the only global function that does not adhere to the * naming conventions. * * This function also sets up all autoloading, such that all SMW classes are * available as early on. Moreover, jobs and special pages are registered. * * @param mixed $namespace * @param boolean $complete * * @return true * * @codeCoverageIgnore */ function enableSemantics($namespace = null, $complete = false) { global $smwgNamespace; // $GLOBALS ought to be injected from the top-level but that would require // to change the interface which would bring no benefits for the end user // as enableSemantics() is only targeted to be included in LocalSettings NamespaceManager::initCustomNamespace($GLOBALS); if (!$complete && $smwgNamespace !== '') { // The dot tells that the domain is not complete. It will be completed // in the Export since we do not want to create a title object here when // it is not needed in many cases. $smwgNamespace = '.' . $namespace; } else { $smwgNamespace = $namespace; } return true; }
private function getListOfFunctionHookDefinitions() { $functionHookDefinition = array(); $globalVars = $this->globalVars; $basePath = $this->directory; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserFirstCallInit */ $listOfParserFunctions = $this->getListOfParserFunctionDefinitions(); $functionHookDefinition['ParserFirstCallInit'] = function (Parser &$parser) use($listOfParserFunctions) { foreach ($listOfParserFunctions as $parserFunctionName => $parserDefinition) { $parserflag = $parserFunctionName === 'declare' ? SFH_OBJECT_ARGS : 0; $parser->setFunctionHook($parserFunctionName, $parserDefinition, $parserflag); } return true; }; /** * Hook: ParserAfterTidy to add some final processing to the fully-rendered page output * * @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserAfterTidy */ $functionHookDefinition['ParserAfterTidy'] = function (&$parser, &$text) { $parserAfterTidy = new ParserAfterTidy($parser, $text); return $parserAfterTidy->process(); }; /** * Hook: Called by BaseTemplate when building the toolbox array and * returning it for the skin to output. * * @see https://www.mediawiki.org/wiki/Manual:Hooks/BaseTemplateToolbox */ $functionHookDefinition['BaseTemplateToolbox'] = function ($skinTemplate, &$toolbox) { $baseTemplateToolbox = new BaseTemplateToolbox($skinTemplate, $toolbox); return $baseTemplateToolbox->process(); }; /** * Hook: Allows extensions to add text after the page content and article * metadata. * * @see https://www.mediawiki.org/wiki/Manual:Hooks/SkinAfterContent */ $functionHookDefinition['SkinAfterContent'] = function (&$data, $skin = null) { $skinAfterContent = new SkinAfterContent($data, $skin); return $skinAfterContent->process(); }; /** * Hook: Called after parse, before the HTML is added to the output * * @see https://www.mediawiki.org/wiki/Manual:Hooks/OutputPageParserOutput */ $functionHookDefinition['OutputPageParserOutput'] = function (&$outputPage, $parserOutput) { $outputPageParserOutput = new OutputPageParserOutput($outputPage, $parserOutput); return $outputPageParserOutput->process(); }; /** * Hook: Add changes to the output page, e.g. adding of CSS or JavaScript * * @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforePageDisplay */ $functionHookDefinition['BeforePageDisplay'] = function (&$outputPage, &$skin) { $beforePageDisplay = new BeforePageDisplay($outputPage, $skin); return $beforePageDisplay->process(); }; /** * Hook: InternalParseBeforeLinks is used to process the expanded wiki * code after <nowiki>, HTML-comments, and templates have been treated. * * @see https://www.mediawiki.org/wiki/Manual:Hooks/InternalParseBeforeLinks */ $functionHookDefinition['InternalParseBeforeLinks'] = function (&$parser, &$text) { $internalParseBeforeLinks = new InternalParseBeforeLinks($parser, $text); return $internalParseBeforeLinks->process(); }; /** * Hook: NewRevisionFromEditComplete called when a revision was inserted * due to an edit * * @see https://www.mediawiki.org/wiki/Manual:Hooks/NewRevisionFromEditComplete */ $functionHookDefinition['NewRevisionFromEditComplete'] = function ($wikiPage, $revision, $baseId, $user) { $newRevisionFromEditComplete = new NewRevisionFromEditComplete($wikiPage, $revision, $baseId, $user); return $newRevisionFromEditComplete->process(); }; /** * Hook: TitleMoveComplete occurs whenever a request to move an article * is completed * * @see https://www.mediawiki.org/wiki/Manual:Hooks/TitleMoveComplete */ $functionHookDefinition['TitleMoveComplete'] = function (&$oldTitle, &$newTitle, &$user, $oldId, $newId) { $titleMoveComplete = new TitleMoveComplete($oldTitle, $newTitle, $user, $oldId, $newId); return $titleMoveComplete->process(); }; /** * Hook: ArticlePurge executes before running "&action=purge" * * @see https://www.mediawiki.org/wiki/Manual:Hooks/ArticlePurge */ $functionHookDefinition['ArticlePurge'] = function (&$wikiPage) { $articlePurge = new ArticlePurge($wikiPage); return $articlePurge->process(); }; /** * Hook: ArticleDelete occurs whenever the software receives a request * to delete an article * * @see https://www.mediawiki.org/wiki/Manual:Hooks/ArticleDelete */ $functionHookDefinition['ArticleDelete'] = function (&$wikiPage, &$user, &$reason, &$error) { $articleDelete = new ArticleDelete($wikiPage, $user, $reason, $error); return $articleDelete->process(); }; /** * Hook: LinksUpdateConstructed called at the end of LinksUpdate() construction * * @see https://www.mediawiki.org/wiki/Manual:Hooks/LinksUpdateConstructed */ $functionHookDefinition['LinksUpdateConstructed'] = function ($linksUpdate) { $linksUpdateConstructed = new LinksUpdateConstructed($linksUpdate); return $linksUpdateConstructed->process(); }; /** * Hook: Add extra statistic at the end of Special:Statistics * * @see https://www.mediawiki.org/wiki/Manual:Hooks/SpecialStatsAddExtra */ $functionHookDefinition['SpecialStatsAddExtra'] = function (&$extraStats) use($globalVars) { $specialStatsAddExtra = new SpecialStatsAddExtra($extraStats, $globalVars['wgVersion'], $globalVars['wgLang']); return $specialStatsAddExtra->process(); }; /** * Hook: For extensions adding their own namespaces or altering the defaults * * @Bug 34383 * @see https://www.mediawiki.org/wiki/Manual:Hooks/CanonicalNamespaces */ $functionHookDefinition['CanonicalNamespaces'] = function (&$list) { $list = $list + NamespaceManager::getCanonicalNames(); return true; }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/FileUpload * * @since 1.9.1 */ $functionHookDefinition['FileUpload'] = function ($file, $reupload) { $fileUpload = new FileUpload($file, $reupload); return $fileUpload->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ResourceLoaderGetConfigVars */ $functionHookDefinition['ResourceLoaderGetConfigVars'] = function (&$vars) { $resourceLoaderGetConfigVars = new ResourceLoaderGetConfigVars($vars); return $resourceLoaderGetConfigVars->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/GetPreferences */ $functionHookDefinition['GetPreferences'] = function ($user, &$preferences) { $getPreferences = new GetPreferences($user, $preferences); return $getPreferences->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/SkinTemplateNavigation */ $functionHookDefinition['SkinTemplateNavigation'] = function (&$skinTemplate, &$links) { $skinTemplateNavigation = new SkinTemplateNavigation($skinTemplate, $links); return $skinTemplateNavigation->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/LoadExtensionSchemaUpdates */ $functionHookDefinition['LoadExtensionSchemaUpdates'] = function ($databaseUpdater) { $extensionSchemaUpdates = new ExtensionSchemaUpdates($databaseUpdater); return $extensionSchemaUpdates->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ResourceLoaderTestModules */ $functionHookDefinition['ResourceLoaderTestModules'] = function (&$testModules, &$resourceLoader) use($basePath, $globalVars) { $installPath = $globalVars['IP']; $resourceLoaderTestModules = new ResourceLoaderTestModules($resourceLoader, $testModules, $basePath, $installPath); return $resourceLoaderTestModules->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ExtensionTypes */ $functionHookDefinition['ExtensionTypes'] = function (&$extTypes) { $extensionTypes = new ExtensionTypes($extTypes); return $extensionTypes->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/TitleIsAlwaysKnown */ $functionHookDefinition['TitleIsAlwaysKnown'] = function ($title, &$result) { $titleIsAlwaysKnown = new TitleIsAlwaysKnown($title, $result); return $titleIsAlwaysKnown->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforeDisplayNoArticleText */ $functionHookDefinition['BeforeDisplayNoArticleText'] = function ($article) { $beforeDisplayNoArticleText = new BeforeDisplayNoArticleText($article); return $beforeDisplayNoArticleText->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/ArticleFromTitle */ $functionHookDefinition['ArticleFromTitle'] = function (&$title, &$article) { $articleFromTitle = new ArticleFromTitle($title, $article); return $articleFromTitle->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/TitleIsMovable */ $functionHookDefinition['TitleIsMovable'] = function ($title, &$isMovable) { $titleIsMovable = new TitleIsMovable($title, $isMovable); return $titleIsMovable->process(); }; /** * @see https://www.mediawiki.org/wiki/Manual:Hooks/EditPage::showEditForm:initial */ $functionHookDefinition['EditPage::showEditForm:initial'] = function ($editPage, $output) { $mwCollaboratorFactory = ApplicationFactory::getInstance()->newMwCollaboratorFactory(); $htmlFormRenderer = $mwCollaboratorFactory->newHtmlFormRenderer($editPage->getTitle(), $output->getLanguage()); $editPageForm = new EditPageForm($editPage, $htmlFormRenderer); return $editPageForm->process(); }; return $functionHookDefinition; }
/** * @since 1.9 */ public function testInitCustomNamespace() { $test = array(); NamespaceManager::initCustomNamespace($test); $this->assertNotEmpty($test); $this->assertEquals(100, $test['smwgNamespaceIndex'], 'Asserts that smwgNamespaceIndex is being set to a default index'); }
/** * Function to switch on Semantic MediaWiki. This function must be called in * LocalSettings.php after including SMW_Settings.php. It is used to ensure * that required parameters for SMW are really provided explicitly. For * readability, this is the only global function that does not adhere to the * naming conventions. * * This function also sets up all autoloading, such that all SMW classes are * available as early on. Moreover, jobs and special pages are registered. * * @param mixed $namespace * @param boolean $complete * * @return true * * @codeCoverageIgnore */ function enableSemantics($namespace = null, $complete = false) { global $smwgNamespace; // Apparently this is required (1.28+) as the earliest possible execution // point in order for settings that refer to the SMW_NS_PROPERTY namespace // to be available in LocalSettings NamespaceManager::initCustomNamespace($GLOBALS); if (!$complete && $smwgNamespace !== '') { // The dot tells that the domain is not complete. It will be completed // in the Export since we do not want to create a title object here when // it is not needed in many cases. $smwgNamespace = '.' . $namespace; } else { $smwgNamespace = $namespace; } $GLOBALS['smwgSemanticsEnabled'] = true; return true; }
/** * @since 2.5 * * @param integer $index * * @return string */ public function getCanonicalNamespaceTextById($index) { $canonicalNames = NamespaceManager::getCanonicalNames(); if (isset($canonicalNames[$index])) { return $canonicalNames[$index]; } return \MWNamespace::getCanonicalName($index); }