mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-12-20 20:12:35 +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;
|
||
|
}
|
||
|
}
|