Exemple #1
0
    /**
     * @param SoundCloudEntity $entity
     *
     * @return string
     */
    public function renderFullpage(AbstractMediaEntity $entity)
    {
        $url = urlencode($entity->getUrl());
        $url = <<<EOD
https://w.soundcloud.com/player/?url={$url}&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true
EOD;
        $code = <<<EOD
<iframe scrolling="no" frameborder="0" allowTransparency="true" src="{$url}" width="100%" height="166"></iframe>
EOD;
        return $code;
    }
Exemple #2
0
 public function renderFullpage(AbstractMediaEntity $entity)
 {
     /* @var PdfEntity $entity */
     return '<embed src="' . $entity->getUrl() . '" width="100%" height="600" type="application/pdf">';
 }