mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
17 lines
274 B
PHP
17 lines
274 B
PHP
<?php
|
|
namespace PortableInfobox\Parser;
|
|
|
|
class SimpleParser implements ExternalParser {
|
|
public function parseRecursive( $text ) {
|
|
return $text;
|
|
}
|
|
|
|
public function replaceVariables( $text ) {
|
|
return $text;
|
|
}
|
|
|
|
public function addImage( $title ) {
|
|
//do nothing
|
|
}
|
|
}
|