| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/web/wp-content/themes/kalium/includes/admin-templates/about/ |
Upload File : |
<?php
/**
* Kalium WordPress Theme
*
* Plugins install page.
*
* @var bool $is_theme_registered
*
* @author Laborator
* @link https://kaliumtheme.com
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
?>
<div class="row align-items-end">
<div class="col col-7 col-md-12">
<div class="about-kalium__heading no-top-margin">
<h2>Plugins</h2>
<p>All premium plugins bundled with Kalium include free updates but require theme registration. You can
install, update and activate plugins from this page.</p>
</div>
</div>
<div class="col col-5 c text-align-right">
<div class="about-kalium__plugins-filter button-group">
<a href="#all" data-filter="all" class="button button-primary">All</a>
<a href="#required" data-filter="required" class="button">Required</a>
<a href="#premium" data-filter="premium" class="button">Premium</a>
<a href="#recommended" data-filter="recommended" class="button">Recommended</a>
<a href="#optional" data-filter="optional" class="button">Optional</a>
</div>
</div>
</div>
<?php
// Multisite warning for non network administrators
if ( is_multisite() && ! current_user_can( 'install_plugins' ) ) :
?>
<div class="about-kalium__plugins-multisite-notice">
<strong>Warning:</strong>
<?php
echo kalium_conditional(
current_user_can( 'activate_plugins' ),
'Only network administrators can install and update plugins.',
'Only network administrators can install, update and activate plugins.'
);
?>
</div>
<?php
// Theme register notice
elseif ( ! $is_theme_registered ) : ?>
<div class="about-kalium__plugins-register-notice">
<strong>Note:</strong>
To install any of the premium plugins you must
<a href="<?php echo esc_url( Kalium_About::get_tab_link( 'theme-registration' ) ); ?>">register the theme
»</a>
</div>
<?php
endif;
/**
* List theme plugins.
*/
kalium()->theme_plugins->list_theme_plugins();