mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-12-11 16:16:18 +00:00
25 lines
325 B
PHP
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;
|
|
}
|
|
} |