I'm developing a MediaWiki skin, and one of the elements I would like to use is the article URL-encoded title as the element ID or Class for styling purposes. I need help implementing this example:

This example

有帮助吗?

解决方案

Assuming that you are within the execute function of your skin, you ca access the title object like this:

$title = $this->data['skin']->getTitle();

Then you can get the URL enocoded title like this:

$URLEncodedTitle = $title->getPartialURL();


If you are in the initPage function, use

$title = $this->getTitle();
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top