1<?php 2 3 4namespace ComboStrap; 5 6/** 7 * Class ThirdMediaLink 8 * @package ComboStrap 9 * Not yet implemented but used to 10 * returns a media link object and not null 11 * otherwise, we get an error 12 */ 13class ThirdMediaLink extends MediaLink 14{ 15 16 public function renderMediaTag(): string 17 { 18 $msg = "The media with the mime (" . $this->getMedia()->getPath()->getMime() . ") is not yet implemented"; 19 LogUtility::msg($msg, LogUtility::LVL_MSG_ERROR); 20 return $msg; 21 } 22 23 public function getUrl(): string{ 24 return ""; 25 } 26 27 28} 29