__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Nextend\SmartSlider3\Application\Admin\Layout;
use Nextend\Framework\View\AbstractLayout;
use Nextend\SmartSlider3\Application\Admin\Layout\Block\Core\AdminEditor\BlockAdminEditor;
use Nextend\SmartSlider3\Application\Admin\Layout\Block\Core\BlockBreadCrumb\BlockBreadCrumb;
use Nextend\SmartSlider3\Application\Admin\Layout\Block\Slide\EditorOverlay\BlockEditorOverlay;
use Nextend\SmartSlider3\Application\Admin\Layout\Helper\Breadcrumb;
use Nextend\SmartSlider3\Application\Admin\TraitAdminUrl;
class LayoutEditor extends AbstractLayout {
use TraitAdminUrl;
/**
* @var BlockEditorOverlay
*/
protected $editorOverlay;
/**
* @var BlockBreadCrumb
*/
protected $blockBreadCrumb;
public function render() {
$admin = new BlockAdminEditor($this);
$admin->setLayout($this);
foreach ($this->state as $name => $value) {
$admin->setAttribute('data-' . $name, $value);
}
$admin->setEditorOverlay($this->editorOverlay);
$admin->display();
}
/**
* @param $label
* @param $icon
* @param string $url
*
* @return Breadcrumb
*/
public function addBreadcrumb($label, $icon, $url = '#') {
return $this->blockBreadCrumb->addBreadcrumb($label, $icon, $url);
}
/**
* @param BlockEditorOverlay $editorOverlay
*/
public function setEditorOverlay($editorOverlay) {
$this->editorOverlay = $editorOverlay;
$this->blockBreadCrumb = $editorOverlay->getBlockBreadCrumb();
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Block | Folder | 0775 |
|
|
| Helper | Folder | 0775 |
|
|
| AbstractLayoutMenu.php | File | 2.13 KB | 0664 |
|
| LayoutDefault.php | File | 1007 B | 0664 |
|
| LayoutDefaultSidebar.php | File | 1.16 KB | 0664 |
|
| LayoutEditor.php | File | 1.55 KB | 0664 |
|
| LayoutEmpty.php | File | 390 B | 0664 |
|
| LayoutError.php | File | 796 B | 0664 |
|
| LayoutIframe.php | File | 881 B | 0664 |
|