admin() public method

public admin ( ) : string
return string
Beispiel #1
0
 /**
  * @see Document\Tag\TagInterface::admin
  * @return string
  */
 public function admin()
 {
     $html = parent::admin();
     // get frontendcode for preview
     // put the video code inside the generic code
     $html = str_replace("</div>", $this->frontend() . "</div>", $html);
     return $html;
 }