mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 12:35:31 +00:00
29 lines
750 B
PHP
29 lines
750 B
PHP
<?php
|
|
namespace Wikia\PortableInfobox\Parser\Nodes;
|
|
|
|
use Wikia\PortableInfobox\Helpers\ImageFilenameSanitizer;
|
|
|
|
class NodeImage extends Node {
|
|
const ALT_TAG_NAME = 'alt';
|
|
|
|
public function getData() {
|
|
return [
|
|
'value' => $this->resolveImageUrl( $this->getValueWithDefault( $this->xmlNode ) ),
|
|
'alt' => $this->getValueWithDefault( $this->xmlNode->{self::ALT_TAG_NAME} )
|
|
];
|
|
}
|
|
|
|
public function resolveImageUrl( $filename ) {
|
|
global $wgContLang;
|
|
$title = \Title::newFromText(
|
|
ImageFilenameSanitizer::getInstance()->sanitizeImageFileName( $filename, $wgContLang ),
|
|
NS_FILE
|
|
);
|
|
if ( $title && $title->exists() ) {
|
|
return \WikiaFileHelper::getFileFromTitle( $title )->getUrlGenerator()->url();
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
}
|