Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/cartinsight.co/wp-content/plugins/colibri-page-builder/src/Customizer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/cartinsight.co/wp-content/plugins/colibri-page-builder/src/Customizer/ThemeSupport.php
<?php

namespace ColibriWP\PageBuilder\Customizer;

class ThemeSupport {
	private static $defaultSupport = array();

	private static $defaultsReady = false;

	private static function setDefault() {

		if ( self::$defaultsReady ) {
			return;
		}

		self::$defaultsReady = true;

		$companion            = \ColibriWP\PageBuilder\PageBuilder::instance();
		self::$defaultSupport = array(
			'custom-background' => array(
				'default-color'      => "#F5FAFD",
				'default-repeat'     => 'no-repeat',
				'default-position-x' => 'center',
				'default-attachment' => 'fixed',
			),
		);
	}

	public static function load() {
		self::setDefault();

		$supports = apply_filters( 'colibri_pagebuilder/theme_support', static::$defaultSupport );

		foreach ( $supports as $key => $value ) {
			add_theme_support( $key, $value );
		}
	}
}

Spamworldpro Mini