Pregunta

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

¿Fue útil?

Solución

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();
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top