whoami7 - Manager
:
/
home
/
analuakl
/
bents.in
/
wp-content
/
themes
/
medizin
/
framework
/
Upload File:
files >> /home/analuakl/bents.in/wp-content/themes/medizin/framework/class-plugins.php
<?php defined( 'ABSPATH' ) || exit; /** * Plugin installation and activation for WordPress themes */ if ( ! class_exists( 'Medizin_Register_Plugins' ) ) { class Medizin_Register_Plugins { protected static $instance = null; public static function instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } function initialize() { add_filter( 'insight_core_tgm_plugins', array( $this, 'register_required_plugins' ) ); } public function register_required_plugins( $plugins ) { /* * Array of plugin arrays. Required keys are name and slug. * If the source is NOT from the .org repo, then source is also required. */ $new_plugins = array( array( 'name' => esc_html__( 'Insight Core', 'medizin' ), 'slug' => 'insight-core', 'source' => 'https://www.dropbox.com/s/kmbboxpbrwg74rm/insight-core-1.6.6.zip?dl=1', 'version' => '1.6.6', 'required' => true, ), array( 'name' => esc_html__( 'Elementor', 'medizin' ), 'slug' => 'elementor', 'required' => true, ), array( 'name' => esc_html__( 'Elementor Pro', 'medizin' ), 'slug' => 'elementor-pro', 'source' => 'https://www.dropbox.com/s/60nrl84la6o7pn3/elementor-pro-2.9.4.zip?dl=1', 'version' => '2.9.3', 'required' => true, ), array( 'name' => esc_html__( 'Revolution Slider', 'medizin' ), 'slug' => 'revslider', 'source' => 'https://www.dropbox.com/s/1n6x7hssehsryne/revslider-6.2.4.zip?dl=1', 'version' => '6.2.4', ), array( 'name' => esc_html__( 'Contact Form 7', 'medizin' ), 'slug' => 'contact-form-7', ), array( 'name' => esc_html__( 'MailChimp for WordPress', 'medizin' ), 'slug' => 'mailchimp-for-wp', ), array( 'name' => esc_html__( 'WooCommerce', 'medizin' ), 'slug' => 'woocommerce', ), array( 'name' => esc_html__( 'Insight Swatches', 'medizin' ), 'slug' => 'insight-swatches', 'source' => 'https://www.dropbox.com/s/3mkswh3so7syfg3/insight-swatches-1.1.0.zip?dl=1', 'version' => '1.1.0', ), array( 'name' => esc_html__( 'WooCommerce Brands Pro', 'medizin' ), 'slug' => 'woo-brand', 'source' => 'https://www.dropbox.com/s/obio2qagdmliaeb/woo-brands-4.4.5.zip?dl=1', 'version' => '4.4.5', ), array( 'name' => esc_html__( 'WPC Smart Compare for WooCommerce', 'medizin' ), 'slug' => 'woo-smart-compare', ), array( 'name' => esc_html__( 'WPC Smart Wishlist for WooCommerce', 'medizin' ), 'slug' => 'woo-smart-wishlist', ), array( 'name' => esc_html__( 'WP-PostViews', 'medizin' ), 'slug' => 'wp-postviews', ), ); $plugins = array_merge( $plugins, $new_plugins ); return $plugins; } } Medizin_Register_Plugins::instance()->initialize(); }
Copyright ©2021 || Defacer Indonesia