PortableInfobox/includes/services/Parser/Nodes/NodeImage.php
2021-09-09 22:03:06 -06:00

26 lines
324 B
PHP

<?php
namespace PortableInfobox\Parser\Nodes;
class NodeImage extends NodeMedia {
/*
* @return string
*/
public function getType() {
return 'media';
}
/*
* @return bool
*/
protected function allowImage() {
return true;
}
/*
* @return bool
*/
protected function allowAudio() {
return false;
}
}