mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 12:35:31 +00:00
40 lines
916 B
PHP
40 lines
916 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() {
|
|
global $wgContLang;
|
|
|
|
$title = \Title::newFromText(
|
|
ImageFilenameSanitizer::getInstance()->sanitizeImageFileName(
|
|
$this->getRawValueWithDefault( $this->xmlNode ),
|
|
$wgContLang
|
|
),
|
|
NS_FILE
|
|
);
|
|
|
|
|
|
return [
|
|
'url' => $this->resolveImageUrl( $title ),
|
|
'name' => ( $title ) ? $title->getDBkey() : '',
|
|
'alt' => $this->getValueWithDefault( $this->xmlNode->{self::ALT_TAG_NAME} )
|
|
];
|
|
}
|
|
|
|
public function isEmpty( $data ) {
|
|
return !( isset( $data[ 'url' ] ) ) || empty( $data[ 'url' ] );
|
|
}
|
|
|
|
public function resolveImageUrl( $title ) {
|
|
if ( $title && $title->exists() ) {
|
|
return \WikiaFileHelper::getFileFromTitle( $title )->getUrlGenerator()->url();
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
}
|