wikimedia/mediawiki-extensions-Wikibase

View on GitHub
lib/includes/Formatters/EntityIdLinkFormatter.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Wikibase\Lib\Formatters;

use Wikibase\DataModel\Entity\EntityId;

/**
 * Formats entity IDs by generating a wiki link to the corresponding page title
 * with the id serialization as text.
 *
 * @license GPL-2.0-or-later
 * @author Daniel Kinzler
 */
class EntityIdLinkFormatter extends EntityIdTitleFormatter {

    /**
     * @see EntityIdFormatter::formatEntityId
     *
     * @param EntityId $entityId
     *
     * @return string Wikitext
     */
    public function formatEntityId( EntityId $entityId ) {
        $title = parent::formatEntityId( $entityId );

        return "[[$title|" . wfEscapeWikiText( $entityId->getSerialization() ) . "]]";
    }

}