PluginProbe
Metricool – Social media and site statistics / trunk
Metricool – Social media and site statistics vtrunk
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / config / plugins.php

plugins.php in Metricool – Social media and site statistics trunk, at config/plugins.php

53 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (!defined('ABSPATH')) {
4 exit;
5 }
6
7 // The plugnis config can only be used AFTER or ON the 'init' hook.
8 return [
9 'really-simple-ssl' => [
10 'slug' => 'really-simple-ssl',
11 'options_prefix' => 'rsssl',
12 'activation_slug' => 'really-simple-ssl/rlrsssl-really-simple-ssl.php',
13 'constant_free' => 'rsssl_version',
14 'constant_premium' => 'rsssl_pro',
15 'url' => 'https://wordpress.org/plugins/really-simple-ssl/',
16 'upgrade_url' => 'https://really-simple-ssl.com/pro?src=metricool-plugin',
17 'title' => "Really Simple Security - " . __("Lightweight plugin. Heavyweight security features.", "metricool"),
18 'color' => '#f4bf3e',
19 ],
20 'simplybook' => [
21 'slug' => 'simplybook',
22 'options_prefix' => 'simplybook',
23 'activation_slug' => 'simplybook/simplybook.php',
24 'create' => admin_url('admin.php?page=simplybook-integration'),
25 'url' => 'https://wordpress.org/plugins/simplybook/',
26 'title' => 'SimplyBook.me - ' . __('Online Booking System', 'metricool'),
27 'color' => '#06ADEF',
28 ],
29 'complianz-gdpr' => [
30 'slug' => 'complianz-gdpr',
31 'options_prefix' => 'cmplz',
32 'activation_slug' => 'complianz-gdpr/complianz-gpdr.php',
33 'constant_free' => 'cmplz_version',
34 'constant_premium' => 'cmplz_premium',
35 'create' => admin_url('admin.php?page=complianz'),
36 'url' => 'https://wordpress.org/plugins/complianz-gdpr/',
37 'upgrade_url' => 'https://complianz.io?src=metricool-plugin',
38 'title' => 'Complianz - ' . __('Consent Management as it should be', 'metricool'),
39 'color' => '#009fff',
40 ],
41 'complianz-terms-conditions' => [
42 'slug' => 'complianz-terms-conditions',
43 'options_prefix' => 'cmplz_tc',
44 'activation_slug' => 'complianz-terms-conditions/complianz-terms-conditions.php',
45 'constant_free' => 'cmplz_tc_version',
46 'create' => admin_url('admin.php?page=terms-conditions'),
47 'url' => 'https://wordpress.org/plugins/complianz-terms-conditions/',
48 'upgrade_url' => 'https://complianz.io?metricool=cmplz-plugin',
49 'title' => 'Complianz - ' . __("Terms & Conditions", "metricool"),
50 'color' => '#000000',
51 ],
52 ];
53