PortableInfobox/includes/services/Parser/Nodes/NodeVideo.php
2018-08-12 12:00:05 +02:00

25 lines
325 B
PHP

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