๐ File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 11:50:31
๐
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
inc
/
admin
โ๏ธ
Editing: admin-require-plugins.php
<?php /** * Include the TGM_Plugin_Activation class. */ get_template_part( 'inc/admin/libs/tgmpa/class-tgm-plugin-activation' ); add_action( 'tgmpa_register', 'berich_register_required_plugins' ); function berich_register_required_plugins() { include( locate_template( 'inc/admin/demo-data/demo-config.php' ) ); $pxl_server_info = apply_filters( 'pxl_server_info', ['plugin_url' => 'https://api.casethemes.net/plugins/'] ) ; $default_path = $pxl_server_info['plugin_url']; $images = get_template_directory_uri() . '/inc/admin/assets/img/plugins'; $plugins = array( array( 'name' => esc_html__('Redux Framework', 'berich'), 'slug' => 'redux-framework', 'required' => true, 'logo' => $images . '/redux.png', 'description' => esc_html__( 'Build theme options and post, page options for WordPress Theme.', 'berich' ), ), array( 'name' => esc_html__('Elementor', 'berich'), 'slug' => 'elementor', 'required' => true, 'logo' => $images . '/elementor.png', 'description' => esc_html__( 'Introducing a WordPress website builder, with no limits of design. A website builder that delivers high-end page designs and advanced capabilities', 'berich' ), ), array( 'name' => esc_html__('Case Addons', 'berich'), 'slug' => 'case-addons', 'source' => 'case-addons.zip', 'required' => true, 'logo' => $images . '/case-addons.png', 'description' => esc_html__( 'Main process and Powerful Elements Plugin, exclusively for Berich WordPress Theme.', 'berich' ), ), array( 'name' => esc_html__('Revolution Slider', 'berich'), 'slug' => 'revslider', 'source' => 'revslider.zip', 'required' => true, 'logo' => $images . '/rev-slider.png', 'description' => esc_html__( 'Revolution Slider helps beginner-and mid-level designers WOW their clients with pro-level visuals.', 'berich' ) ), array( 'name' => esc_html__('Contact Form 7', 'berich'), 'slug' => 'contact-form-7', 'required' => true, 'logo' => $images . '/contact-f7.png', 'description' => esc_html__( 'Contact Form 7 can manage multiple contact forms, you can customize the form and the mail contents flexibly with simple markup', 'berich' ), ), array( 'name' => esc_html__('Mailchimp', 'berich'), 'slug' => "mailchimp-for-wp", 'required' => true, 'logo' => $images . '/mailchimp.png', 'description' => esc_html__( 'Allowing your visitors to subscribe to your newsletter should be easy. With this plugin, it finally is.', 'berich' ), ), array( 'name' => esc_html__('WooCommerce', 'berich'), 'slug' => "woocommerce", 'required' => true, 'logo' => $images . '/woo.png', 'description' => esc_html__( 'WooCommerce is the worldโs most popular open-source eCommerce solution.', 'berich' ), ), ); $config = array( 'default_path' => $default_path, // Default absolute path to pre-packaged plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. 'is_automatic' => true, ); tgmpa( $plugins, $config ); }
๐พ Save Changes
โ Cancel