mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-24 08:14:29 +00:00
18 lines
276 B
PHP
18 lines
276 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
|
|
}
|
|
}
|