PluginProbe ʕ •ᴥ•ʔ
Really Simple Security – Simple and Performant Security (formerly Really Simple SSL) / 9.5.7
Really Simple Security – Simple and Performant Security (formerly Really Simple SSL) v9.5.7
9.5.11 9.5.10.1 9.5.10 trunk 9.4.0 9.4.1 9.4.2 9.4.3 9.5.0 9.5.0.1 9.5.0.2 9.5.1 9.5.2 9.5.2.2 9.5.2.3 9.5.3 9.5.3.1 9.5.3.2 9.5.4 9.5.5 9.5.6 9.5.7 9.5.8 9.5.9
really-simple-ssl / core / config / related.php
really-simple-ssl / core / config Last commit date
env.php 3 months ago related.php 7 months ago uri.php 7 months ago
related.php
50 lines
1 <?php if (!defined('ABSPATH')) {
2 exit;
3 }
4
5 /**
6 * The related config can only be used AFTER or ON the 'init' hook.
7 *
8 * Config documentation:
9 * pre_checked: The plugin will be pre checked for installation in the onboarding
10 */
11 return [
12 'plugins' => [
13 'complianz-gdpr' => [
14 'slug' => 'complianz-gdpr',
15 'options_prefix' => 'cmplz',
16 'activation_slug' => 'complianz-gdpr/complianz-gpdr.php',
17 'constant_free' => 'cmplz_version',
18 'constant_premium' => 'cmplz_premium',
19 'create' => admin_url('admin.php?page=complianz'),
20 'wordpress_url' => 'https://wordpress.org/plugins/complianz-gdpr/',
21 'upgrade_url' => 'https://complianz.io?src=rsssl-plugin',
22 'title' => 'Complianz - ' . (did_action('init') ? esc_html__('Consent Management as it should be', 'really-simple-ssl') : 'Consent Management as it should be'),
23 'color' => '#009fff',
24 "pre_checked" => true,
25 ],
26 'complianz-terms-conditions' => [
27 'slug' => 'complianz-terms-conditions',
28 'options_prefix' => 'cmplz_tc',
29 'activation_slug' => 'complianz-terms-conditions/complianz-terms-conditions.php',
30 'constant_free' => 'cmplz_tc_version',
31 'create' => admin_url('admin.php?page=terms-conditions'),
32 'wordpress_url' => 'https://wordpress.org/plugins/complianz-terms-conditions/',
33 'upgrade_url' => 'https://complianz.io?src=rsssl-plugin',
34 'title' => 'Complianz - ' . (did_action('init') ? esc_html__('Terms & Conditions', 'really-simple-ssl') : 'Terms & Conditions'),
35 'color' => '#000000',
36 "pre_checked" => true,
37 ],
38 'simplybook' => [
39 'slug' => 'simplybook',
40 'options_prefix' => 'simplybook',
41 'activation_slug' => 'simplybook/simplybook.php',
42 'create' => admin_url('admin.php?page=simplybook-integration'),
43 'wordpress_url' => 'https://wordpress.org/plugins/simplybook/',
44 'upgrade_url' => 'https://simplybook.me/en/pricing',
45 'title' => 'SimplyBook.me - ' . (did_action('init') ? esc_html__('Online Booking System', 'really-simple-ssl') : 'Online Booking System'),
46 'color' => '#06ADEF',
47 "pre_checked" => false,
48 ],
49 ],
50 ];