PortableInfobox/includes/services/Parser/Nodes/NodeImage.php
2022-03-11 13:35:51 -07:00

27 lines
325 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;
}
}