https://bugzilla.wikimedia.org/show_bug.cgi?id=32235
--- Comment #3 from Daniel Friesen <[email protected]> 2011-11-08 17:34:24 UTC --- The stuff on [[mw:Manual:Footer]] is obviously an example of how to do it, adapt the technique to whatever you need out of it. Vector gives each group a separate list, if you want multiple lines you can add new groups to the first level of the array. And instead of using $sk->footerLink if you want something other than a link you can just use a string of html. $tpl->set( 'runby', 'That text about who the wiki is run by.' ); $tpl->set( 'contactus', $sk->footerLink( 'contactus', 'contactuspage' ) ); $tpl->data['footerlinks'] = array( 'lastmod' => array( 'lastmod' ), 'copyright' => array( 'copyright' ), 'runby' => array( 'runby' ), 'places' => array( 'contactus' ) + $tpl->data['footerlinks']['places'], ); -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
