* Update translation text domain * Escape everything that should be escaped. * Add nonce checks where needed. * Sanitize all inputs. * Apply Code style changes across the codebase. * Correct many deprecation notices. * Optimize load order of many filters. * Add Proper Build script * Use emojii flags * Fix i18n deprecation notice for translating too early * Put all scripts in footer and load async
105 lines
4.0 KiB
PHP
105 lines
4.0 KiB
PHP
<?php
|
|
/** global $plugins */
|
|
?>
|
|
|
|
<ul data-columns="1" class='items wu--mx-1 wu-overflow-hidden wu-multiselect-content wu-static wu-my-2'>
|
|
|
|
<?php foreach ($plugins as $plugin_path => $plugin_data) : ?>
|
|
|
|
<li class="item wu-box-border wu-m-0">
|
|
|
|
<div class="wu-m-2 wu-bg-gray-100 wu-p-4 wu-border-gray-300 wu-border-solid wu-border wu-rounded">
|
|
|
|
<div class="wu-items-center wu-justify-between">
|
|
|
|
<div class="wu-block sm:wu-flex wu-items-center">
|
|
|
|
<div class="wu-flex-1 wu-flex wu-flex-col wu-justify-between">
|
|
|
|
<div>
|
|
|
|
<span class="wu-font-bold wu-block wu-text-xs wu-uppercase wu-text-gray-700">
|
|
|
|
<?php echo esc_html($plugin_data['Name']); ?>
|
|
|
|
<?php if (is_plugin_active_for_network($plugin_path)) : ?>
|
|
|
|
<span class="wu-text-xs wu-normal-case wu-font-normal wu-ml-2 wu-text-green-600">
|
|
<?php esc_html_e('Network Active', 'wp-multisite-waas'); ?>
|
|
</span>
|
|
|
|
<?php endif; ?>
|
|
|
|
</span>
|
|
|
|
<span class="wu-my-2 wu-block">
|
|
|
|
<?php echo wp_strip_all_tags($plugin_data['Description']); ?>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="wu-block wu-mt-4">
|
|
|
|
<span class="wu-text-xs wu-text-gray-700 wu-my-1 wu-mr-4 wu-block">
|
|
<?php printf(esc_html__('Version %s', 'wp-multisite-waas'), esc_html($plugin_data['Version'])); ?>
|
|
</span>
|
|
|
|
<span class="wu-text-xs wu-text-gray-700 wu-my-1 wu-mr-4 wu-block">
|
|
<?php printf(esc_html__('by %s', 'wp-multisite-waas'), wp_strip_all_tags($plugin_data['Author'])); ?>
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="sm:wu-ml-4 sm:wu-w-1/3 wu-mt-4 sm:wu-mt-0">
|
|
|
|
<h3 class="wu-mb-1 wu-text-2xs wu-uppercase wu-text-gray-600">
|
|
|
|
<?php esc_html_e('Visibility', 'wp-multisite-waas'); ?>
|
|
|
|
</h3>
|
|
|
|
<select name="modules[plugins][limit][<?php echo esc_attr($plugin_path); ?>][visibility]" class="wu-w-full">
|
|
<option <?php selected('visible' === $object->get_limitations()->plugins->{$plugin_path}->visibility); ?> value="visible"><?php esc_html_e('Visible', 'wp-multisite-waas'); ?></option>
|
|
<option <?php selected('hidden' === $object->get_limitations()->plugins->{$plugin_path}->visibility); ?> value="hidden"><?php esc_html_e('Hidden', 'wp-multisite-waas'); ?></option>
|
|
</select>
|
|
|
|
<h3 class="wu-my-1 wu-mt-4 wu-text-2xs wu-uppercase wu-text-gray-600">
|
|
|
|
<?php esc_html_e('Behavior', 'wp-multisite-waas'); ?>
|
|
|
|
</h3>
|
|
|
|
<select name="modules[plugins][limit][<?php echo esc_attr($plugin_path); ?>][behavior]" class="wu-w-full">
|
|
<option <?php selected('default' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="default"><?php esc_html_e('Default', 'wp-multisite-waas'); ?></option>
|
|
<option <?php disabled(is_plugin_active_for_network($plugin_path)); ?> <?php selected('force_active' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_active"><?php esc_html_e('Force Activate', 'wp-multisite-waas'); ?></option>
|
|
<option <?php disabled(is_plugin_active_for_network($plugin_path)); ?> <?php selected('force_inactive' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_inactive"><?php esc_html_e('Force Inactivate', 'wp-multisite-waas'); ?></option>
|
|
<option <?php selected('force_active_locked' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_active_locked"><?php esc_html_e('Force Activate & Lock', 'wp-multisite-waas'); ?></option>
|
|
<option <?php selected('force_inactive_locked' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_inactive_locked"><?php esc_html_e('Force Inactivate & Lock', 'wp-multisite-waas'); ?></option>
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php if ('product' !== $object->model && $object->get_limitations(false)->plugins->exists($plugin_path)) : ?>
|
|
|
|
<p class="wu-m-0 wu-mt-4 wu-p-2 wu-bg-blue-100 wu-text-blue-600 wu-rounded">
|
|
<?php esc_html_e('This value is being applied only to this entity. Changes made to the membership or product permissions will not affect this particular value.', 'wp-multisite-waas'); ?>
|
|
</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|