PortableInfobox/includes/services/Parser/Nodes/NodeVideo.php

30 lines
377 B
PHP
Raw Normal View History

2018-08-12 10:00:05 +00:00
<?php
namespace PortableInfobox\Parser\Nodes;
class NodeVideo extends NodeMedia {
public function getType() {
return 'media';
}
2018-08-12 10:00:05 +00:00
/*
* @return bool
*/
protected function allowImage() {
return false;
}
/*
* @return bool
*/
protected function allowVideo() {
return true;
}
/*
* @return bool
*/
protected function allowAudio() {
return false;
}
2018-08-16 09:25:53 +00:00
}