Linux webm002.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
enable-media-replace
/
classes
/
external
/
/home/ariannadhf/www/wp-content/plugins/enable-media-replace/classes/external/siteorigin.php
<?php namespace EnableMediaReplace\Externals; class SiteOrigin { protected static $instance; public function __construct() { if (defined('SITEORIGIN_PANELS_VERSION')) { add_filter('emr/replacer/option_fields', array($this, 'addOption')); } } public static function getInstance() { if (is_null(self::$instance)) { self::$instance = new SiteOrigin(); } return self::$instance; } public function addOption($options) { $options[] = 'widget_siteorigin-panels-builder'; return $options; } } // class