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

34 lines
406 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;
}
}