Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-page-builder/Model/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/module-page-builder/Model/ConfigInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\PageBuilder\Model;

/**
 * Content Type ConfigInterface
 *
 * @api
 */
interface ConfigInterface
{
    /**
     * Gets all the menu sections
     *
     * @return array
     */
    public function getMenuSections() : array;

    /**
     * Gets all the content types
     *
     * @return array
     */
    public function getContentTypes() : array;

    /**
     * Get if PageBuilder is enabled
     *
     * @return bool
     */
    public function isEnabled() : bool;
}