2018-08-12 10:00:05 +00:00
|
|
|
<?php
|
|
|
|
namespace PortableInfobox\Parser\Nodes;
|
|
|
|
|
|
|
|
class NodeImage extends NodeMedia {
|
|
|
|
/*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function allowImage() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function allowAudio() {
|
|
|
|
return false;
|
|
|
|
}
|
2018-08-16 09:25:53 +00:00
|
|
|
}
|