Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/module-theme/Block/Adminhtml/System/Design/Theme/Edit/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Theme\Block\Adminhtml\System\Design\Theme\Edit;

/**
 * Theme editor tab container
 *
 * @api
 * @since 100.0.2
 */
class Tabs extends \Magento\Backend\Block\Widget\Tabs
{
    /**
     * Initialize tabs and define tabs block settings
     *
     * @return void
     */
    public function _construct()
    {
        parent::_construct();
        $this->setId('theme_tabs');
        $this->setDestElementId('edit_form');
        $this->setTitle(__('Theme'));
    }
}