Commit realizado el 12:13:52 08-04-2024

This commit is contained in:
Pagina Web Monito
2024-04-08 12:13:55 -04:00
commit 0c33094de9
7815 changed files with 1365694 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/**
* Dynamic_Assets feature class.
*
* @package Divi
* @subpackage Builder
* @since 4.10.0
*/
/**
* Handles Dynamic_Assets feature.
*
* @since 4.10.0
*/
class ET_Builder_Dynamic_Assets_Feature extends ET_Builder_Global_Feature_Base {
/**
* Hold the class instance.
*
* @var null
*/
private static $_instance = null;
const CACHE_META_KEY = '_et_builder_da_feature_cache';
/**
* Initialize ET_Builder_Dynamic_Assets_Feature class.
*/
public static function instance() {
if ( ! self::$_instance ) {
self::$_instance = new self();
}
return self::$_instance;
}
}