Pimcore\Model\Document\Tag\Embed::admin PHP Метод

admin() публичный Метод

См. также: Document\Tag\TagInterface::admin
public admin ( ) : string
Результат 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;
    }