You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
397 B
PHTML
27 lines
397 B
PHTML
7 months ago
|
<?php
|
||
|
/**
|
||
|
* Abstract Class for Mask Style.
|
||
|
*
|
||
|
* @package Divi
|
||
|
* @sub-package Builder
|
||
|
* @since 4.15.0
|
||
|
*/
|
||
|
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
die( 'Direct access forbidden.' );
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* ET_Builder_Background_Mask_Style_Base.
|
||
|
*
|
||
|
* @since 4.15.0
|
||
|
*/
|
||
|
abstract class ET_Builder_Background_Mask_Style_Base {
|
||
|
/**
|
||
|
* Configuration.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
abstract public function settings();
|
||
|
}
|