I would like to insert a second defined article by name into the a skin. I can't find any hints on the web. Can anybody help me?
Brion Vibber <brion <at> pobox.com> writes:
Heinz wrote:
I would like to insert a second defined article by name into the a skin. I can't find any hints on the web. Can anybody help me?
Sorry, I'm not quite sure what you're trying to do. Can you explain it?
I want to replace the navigation-menu by a fixed article (e.g. mywiki:menu). Therefor i just would like to replace the navigation part ("<?php foreach($this->data['navigation_urls'] ... " by a function, which inserts the article called "mywiki:menu". This would make the changing of the navigation-menue much more easier.
I want to replace the navigation-menu by a fixed article (e.g. mywiki:menu). Therefor i just would like to replace the navigation part ("<?php foreach($this->data['navigation_urls'] ... " by a function, which inserts the article called "mywiki:menu". This would make the changing of the navigation-menue much more easier.
Take a look at the CVS history, It used to be like that between the 1.4 handling and the current system but I replaced it with the current format because the former was too slow, however if you don't need the speed you might want to backport it.
Ævar Arnfjörð Bjarmason <avarab <at> gmail.com> writes:
Take a look at the CVS history, It used to be like that between the 1.4 handling and the current system but I replaced it with the current format because the former was too slow, however if you don't need the speed you might want to backport it.
Thanks a lot
I use this solution. The only disadvantage is, that it works only in skin/MonoNook.php
from http://de.wikipedia.org/wiki/Benutzer:Arcy#MediaWiki_anpassen_(1.4.4)
in my Wiki ----------
a new page called MediaWiki:MenuNavigation
In Monobook.php --------------- <h5><?php $this->msg('navigation') ?></h5> <div class="pBody"> <?php $this->msgWiki( 'MenuNavigation' ) ?> </div>
wikitech-l@lists.wikimedia.org