PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
cloudinary
/
cloudinary_php
/
samples
/
SamplePage
/
Sample
/
Tabs
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Samples; require_once __DIR__ . '/../../SamplePageUtils.php'; use Cloudinary\Asset\Image; use Cloudinary\Asset\Video; use Cloudinary\Transformation\Transformation; /** * Class TransformationTab */ class TransformationTab extends BaseTab { /** * @var string */ protected $publicId; /** * @var Transformation */ protected $transformation; /** * @var string */ protected $type; /** * SampleTransformationTab constructor. * @param $transformation * @param $code * @param $publicId * @param string $title * @param string $type */ public function __construct($transformation, $code, $publicId, $title = 'URL', $type = 'image') { parent::__construct($title); $this->transformation = $transformation; $this->publicId = $publicId; $this->text = $code; $this->type = $type; } public function getTabContent() { $url = $this->calculateUrl(); return ' <div class="url-content ml-3 tab-pane fade" role="tabpanel" aria-labelledby="url-tab" > <a href="' . $url . '">' . getFormattedUrl( $url, $this->transformation ) . '</a> </div> </div> </div>'; } private function calculateUrl() { $tag = $this->type === 'video' ? Video::upload($this->publicId) : Image::upload($this->publicId); return $tag->toUrl($this->transformation); } }
[-] CodeTab.php
[edit]
[-] BaseTab.php
[edit]
[+]
..
[-] TagTab.php
[edit]
[-] TransformationTab.php
[edit]