@@ 56-65 (lines=10) @@ | ||
53 | $this->indent() . '<ul class="list-inline pull-right footer-icons ' . $this->getClassString() . '" id="footer-icons" >'; |
|
54 | ||
55 | $this->indent( 1 ); |
|
56 | foreach ( $icons as $blockName => $footerIcons ) { |
|
57 | ||
58 | $ret .= $this->indent() . '<!-- ' . htmlspecialchars( $blockName ) . ' -->'; |
|
59 | ||
60 | foreach ( $footerIcons as $icon ) { |
|
61 | $ret .= $this->indent() . '<li>' . |
|
62 | $this->getSkinTemplate()->getSkin()->makeFooterIcon( $icon ) . '</li>'; |
|
63 | } |
|
64 | ||
65 | } |
|
66 | ||
67 | $ret .= $this->indent( -1 ) . '</ul>' . "\n"; |
|
68 | } |
@@ 68-78 (lines=11) @@ | ||
65 | ||
66 | $footerlinks = $this->getSkinTemplate()->getFooterLinks(); |
|
67 | $this->indent( 1 ); |
|
68 | foreach ( $footerlinks as $category => $links ) { |
|
69 | ||
70 | if ( $category !== 'places' ) { |
|
71 | ||
72 | $ret .= $this->indent() . '<!-- ' . htmlspecialchars( $category ) . ' -->'; |
|
73 | foreach ( $links as $key ) { |
|
74 | $ret .= $this->indent() . '<li>' . $this->getSkinTemplate()->get( $key ) . '</li>'; |
|
75 | } |
|
76 | ||
77 | } |
|
78 | } |
|
79 | ||
80 | $ret .= $this->indent( -1 ) . '</ul>' . "\n"; |
|
81 |