PortableInfobox/includes/services/Parser/Nodes/NodeAudio.php
2021-09-09 22:01:31 -06:00

33 lines
405 B
PHP

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