/home/vianto5/distritosatelite.mx/wp-content/plugins/elementor-pro/core
Edit: /home/vianto5/distritosatelite.mx/wp-content/plugins/elementor-pro/core/modules-manager.php (2542B)
experiments->add_feature( $experimental_data );
if ( ! Plugin::elementor()->experiments->is_feature_active( $experimental_data['name'] ) ) {
continue;
}
}
if ( $class_name::is_active() ) {
$this->modules[ $module_name ] = $class_name::instance();
}
}
}
/**
* @param string $module_name
*
* @return Module_Base|Module_Base[]
*/
public function get_modules( $module_name ) {
if ( $module_name ) {
if ( isset( $this->modules[ $module_name ] ) ) {
return $this->modules[ $module_name ];
}
return null;
}
return $this->modules;
}
}