18 lines
290 B
PHP
18 lines
290 B
PHP
<?php
|
|
|
|
class MediaLocalVideo extends MediaRenderer{
|
|
private $id;
|
|
|
|
public function __construct($model){
|
|
$this->id = $model->id;
|
|
}
|
|
|
|
public function asText(array $opt = array()){
|
|
return $this->id;
|
|
}
|
|
|
|
public function render(array $opt = array()){
|
|
echo $this->asText($opt);
|
|
}
|
|
}
|
|
?>
|