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

31 lines
378 B
PHP
Raw Normal View History

2018-08-12 10:00:05 +00:00
<?php
2022-03-11 20:35:51 +00:00
2018-08-12 10:00:05 +00:00
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
}