mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 20:53:16 +00:00
21 lines
350 B
PHP
21 lines
350 B
PHP
<?php
|
|
namespace Wikia\PortableInfobox\Parser;
|
|
|
|
class SimpleParser implements ExternalParser {
|
|
public function parse( $text ) {
|
|
return $text;
|
|
}
|
|
|
|
public function parseRecursive( $text ) {
|
|
return $this->parse( $text );
|
|
}
|
|
|
|
public function replaceVariables( $text ) {
|
|
return $text;
|
|
}
|
|
|
|
public function addImage( $title ) {
|
|
//do nothing
|
|
}
|
|
}
|