PATH:
home
/
lab2454c
/
healthvalidate.com
/
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'; /** * Class TagTab */ class TagTab extends BaseTab { /** * @var string */ protected $html; /** * TagTab constructor. * * @param string $code * @param string $html * @param string $title */ public function __construct($code = '', $html = '', $title = 'TAG') { parent::__construct($title, $code); $this->html = $html; } public function getTabContent() { // TODO: add getFormattedHtml() function to SamplePageUtils return ' <div class="url-content ml-3 tab-pane fade" role="tabpanel" aria-labelledby="url-tab" >' . getFormattedHtml($this->html) . '</div> </div> </div>'; } }
[-] CodeTab.php
[edit]
[-] BaseTab.php
[edit]
[+]
..
[-] TagTab.php
[edit]
[-] TransformationTab.php
[edit]