/home/vianto5/duettowers.mx/wp-content/plugins/elementor-pro/modules/assets-manager
Edit: /home/vianto5/duettowers.mx/wp-content/plugins/elementor-pro/modules/assets-manager/module.php (1650B)
asset_managers[ $name ] = $instance;
}
public function get_assets_manager( $id = null ) {
if ( $id ) {
if ( ! isset( $this->asset_managers[ $id ] ) ) {
return null;
}
return $this->asset_managers[ $id ];
}
return $this->asset_managers;
}
public function __construct() {
parent::__construct();
$this->add_asset_manager( 'font', new AssetTypes\Fonts_Manager() );
$this->add_asset_manager( 'icon', new AssetTypes\Icons_Manager() );
$this->register_import_export();
}
private function register_import_export() {
( new Fonts_Import_Export() )->register_hooks();
( new Fonts_Import_Export_Customization() )->register_hooks();
( new Icons_Import_Export() )->register_hooks();
( new Icons_Import_Export_Customization() )->register_hooks();
}
}