将链接连接到图像

时间:2015-11-05 13:26:56

标签: php html joomla mediawiki

我将MediaWiki与Joomla结合使用。由于我想在某些链接中添加图标,我需要将它们连接起来。我知道这可以通过将img标记放在标记内来实现。

但是问题在于,某些链接是由一个名为makeListItem的函数生成的,MediaWiki使用的函数不仅仅是这些链接。现在我的问题是,我可以以某种方式将img连接到a而不将其放在标签内吗?

这会调用函数来创建元素:

<?php $this->renderNavigation( 'PERSONAL' ); ?>

实际功能(缩短):

foreach ( $personalTools as $key => $item ) {
    ?>
    <div class="searchbox" style="clear:both;">
    <img src="<?php echo $icon[$key] ?>" alt="p-Icons" class="iconnav"/>
    <?php
    echo $this->makeListItem( $key, $item );
    ?>
    </div>
<?php
}
?>

图像的src是在foreach上方声明的数组中定义的。

提前致谢

1 个答案:

答案 0 :(得分:1)

您必须修改makeListItem()函数(BaseTemplate类)。

function makeListItem( $key, $item, $options = array() ) {
    if ( isset( $item['links'] ) ) {
        $links = array();
        foreach ( $item['links'] as $linkKey => $link ) {
            $links[] = $this->makeLink( $linkKey, $link, $options );
        }
        $html = implode( ' ', $links );
    } else {
        $link = $item;
        // These keys are used by makeListItem and shouldn't be passed on to the link
        foreach ( array( 'id', 'class', 'active', 'tag', 'itemtitle' ) as $k ) {
            unset( $link[$k] );
        }
        if ( isset( $item['id'] ) && !isset( $item['single-id'] ) ) {
            // The id goes on the <li> not on the <a> for single links
            // but makeSidebarLink still needs to know what id to use when
            // generating tooltips and accesskeys.
            $link['single-id'] = $item['id'];
        }
        $html = $this->makeLink( $key, $link, $options );
    }
    $attrs = array();
    foreach ( array( 'id', 'class' ) as $attr ) {
        if ( isset( $item[$attr] ) ) {
            $attrs[$attr] = $item[$attr];
        }
    }
    if ( isset( $item['active'] ) && $item['active'] ) {
        if ( !isset( $attrs['class'] ) ) {
            $attrs['class'] = '';
        }
        $attrs['class'] .= ' active';
        $attrs['class'] = trim( $attrs['class'] );
    }
    if ( isset( $item['itemtitle'] ) ) {
        $attrs['title'] = $item['itemtitle'];
    }
    return Html::rawElement( isset( $options['tag'] ) ? $options['tag'] : 'li', $attrs, $html );
}