Elementor\Editor::enqueue_styles PHP Метод

enqueue_styles() публичный Метод

public enqueue_styles ( )
    public function enqueue_styles()
    {
        $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
        $direction_suffix = is_rtl() ? '-rtl' : '';
        wp_register_style('font-awesome', ELEMENTOR_ASSETS_URL . 'lib/font-awesome/css/font-awesome' . $suffix . '.css', [], '4.7.0');
        wp_register_style('select2', ELEMENTOR_ASSETS_URL . 'lib/select2/css/select2' . $suffix . '.css', [], '4.0.2');
        wp_register_style('elementor-icons', ELEMENTOR_ASSETS_URL . 'lib/eicons/css/elementor-icons' . $suffix . '.css', [], Plugin::instance()->get_version());
        wp_register_style('google-font-roboto', 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700', [], Plugin::instance()->get_version());
        wp_register_style('jquery-simple-dtpicker', ELEMENTOR_ASSETS_URL . 'lib/jquery-simple-dtpicker/jquery.simple-dtpicker' . $suffix . '.css', [], '1.12.0');
        wp_register_style('elementor-editor', ELEMENTOR_ASSETS_URL . 'css/editor' . $direction_suffix . $suffix . '.css', ['font-awesome', 'select2', 'elementor-icons', 'wp-auth-check', 'google-font-roboto', 'jquery-simple-dtpicker'], Plugin::instance()->get_version());
        wp_enqueue_style('elementor-editor');
    }