| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.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 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/glaza/backend/ |
Upload File : |
<?php
//include the TGM_Plugin_Activation class
require get_parent_theme_file_path( '/backend/class-tgm-plugin-activation.php' );
add_action( 'tgmpa_register', 'glaza_register_required_plugins' );
if ( ! function_exists( 'glaza_register_required_plugins' ) ) {
function glaza_register_required_plugins() {
$plugins = array(
array(
'name' => esc_html__( 'Glaza Core', 'glaza' ),
'slug' => 'glaza-core',
'source' => get_template_directory() . '/plugins/glaza-core.zip',
'required' => true,
'version' => '2.0',
'force_activation' => false,
'force_deactivation' => false,
'external_url' => '',
'is_callable' => '',
),
array(
'name' => esc_html__( 'SiteOrigin Page Builder', 'glaza' ),
'slug' => 'siteorigin-panels',
'required' => true,
),
array(
'name' => esc_html__( 'Glaza Import', 'glaza' ),
'slug' => 'glaza-import',
'source' => get_template_directory() . '/plugins/glaza-import.zip',
'required' => true,
'version' => '2.0',
'force_activation' => false,
'force_deactivation' => false,
'external_url' => '',
'is_callable' => '',
),
array(
'name' => 'Envato Market',
'slug' => 'envato-market',
'source' => get_template_directory() . '/plugins/envato-market.zip',
'required' => true,
'force_activation' => false,
'force_deactivation' => false,
'external_url' => '',
),
array(
'name' => esc_html__( 'WooCommerce', 'glaza' ),
'slug' => 'woocommerce',
'required' => false,
),
array(
'name' => esc_html__( 'YITH WooCommerce Wishlist', 'glaza' ),
'slug' => 'yith-woocommerce-wishlist',
'required' => false,
),
array(
'name' => esc_html__( 'Breadcrumb NavXT', 'glaza' ),
'slug' => 'breadcrumb-navxt',
'required' => false,
),
array(
'name' => 'MailChimp for WordPress',
'slug' => 'mailchimp-for-wp',
'required' => false,
),
array(
'name' => 'oAuth Twitter Feed for Developers',
'slug' => 'oauth-twitter-feed-for-developers',
'required' => true,
)
);
$glaza_config = array(
'id' => 'glaza',
'default_path' => '',
'menu' => 'glaza-plugins',
'parent_slug' => 'themes.php',
'capability' => 'edit_theme_options',
'has_notices' => true,
'dismissable' => true,
'dismiss_msg' => '',
'is_automatic' => false,
'message' => '',
'strings' => array(
'page_title' => esc_html__( 'Install Required Plugins', 'glaza' ),
'menu_title' => esc_html__( 'Install Plugins', 'glaza' ),
'installing' => esc_html__( 'Installing Plugin: %s', 'glaza' ),
'oops' => esc_html__( 'Something went wrong with the plugin API.', 'glaza' ),
'notice_can_install_required' => _n_noop( 'Glaza the following plugin: %1$s.', 'Glaza requires the following plugins: %1$s.', 'glaza' ),
'notice_can_install_recommended' => _n_noop( 'Glaza recommends the following plugin: %1$s.', 'Glaza recommends the following plugins: %1$s.', 'glaza' ),
'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'glaza' ),
'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'glaza' ),
'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'glaza' ),
'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'glaza' ),
'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with Glaza: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with Glaza: %1$s.', 'glaza' ),
'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'glaza' ),
'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'glaza' ),
'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'glaza' ),
'return' => esc_html__( 'Return to Required Plugins Installer', 'glaza' ),
'plugin_activated' => esc_html__( 'Plugin activated successfully.', 'glaza' ),
'complete' => esc_html__( 'All plugins installed and activated successfully. %s', 'glaza' ),
'nag_type' => 'updated'
)
);
tgmpa( $plugins, $glaza_config );
}
}