mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-12-20 12:10:28 +00:00
18 lines
244 B
PHP
18 lines
244 B
PHP
<?php
|
|
namespace PortableInfobox\Parser\Nodes;
|
|
|
|
class NodeImage extends NodeMedia {
|
|
/*
|
|
* @return bool
|
|
*/
|
|
protected function allowImage() {
|
|
return true;
|
|
}
|
|
|
|
/*
|
|
* @return bool
|
|
*/
|
|
protected function allowAudio() {
|
|
return false;
|
|
}
|
|
} |