PluginProbe
s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls & Member Access Subscriptions / 260927
s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls & Member Access Subscriptions v260927
260927 260917 260913 260909 260829 260814 260805 110710 110731 110812 110815 110912 110913 110915 110926 110927 111002 111003 111011 111017 111029 111105 111206 111216 111220 All 190 releases
s2member / src / includes / templates / cfg-files / s2o-mu-plugins.php

s2o-mu-plugins.php in s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls & Member Access Subscriptions 260927, at src/includes/templates/cfg-files/s2o-mu-plugins.php

38 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // @codingStandardsIgnoreFile
3 if(!defined('_WS_PLUGIN__S2MEMBER_ONLY'))
4 exit('Do not access this file directly.');
5 ?>
6
7 // s2Member-only mode. Only load (o)nly/(a)ll files.
8
9 if(is_file(WPMU_PLUGIN_DIR.'/s2member-o-hacks.php'))
10 include_once WPMU_PLUGIN_DIR.'/s2member-o-hacks.php';
11
12 else if(is_file(WPMU_PLUGIN_DIR.'/s2-o-hacks.php'))
13 include_once WPMU_PLUGIN_DIR.'/s2-o-hacks.php';
14
15 // --------------------------------------------------
16
17 if(is_file(WPMU_PLUGIN_DIR.'/s2member-a-hacks.php'))
18 include_once WPMU_PLUGIN_DIR.'/s2member-a-hacks.php';
19
20 else if(is_file(WPMU_PLUGIN_DIR.'/s2-a-hacks.php'))
21 include_once WPMU_PLUGIN_DIR.'/s2-a-hacks.php';
22
23 // --------------------------------------------------
24
25 if(is_file(WPMU_PLUGIN_DIR.'/s2member-o.php'))
26 include_once WPMU_PLUGIN_DIR.'/s2member-o.php';
27
28 else if(is_file(WPMU_PLUGIN_DIR.'/s2-o.php'))
29 include_once WPMU_PLUGIN_DIR.'/s2-o.php';
30
31 // --------------------------------------------------
32
33 if(is_file(WPMU_PLUGIN_DIR.'/s2member-a.php'))
34 include_once WPMU_PLUGIN_DIR.'/s2member-a.php';
35
36 else if(is_file(WPMU_PLUGIN_DIR.'/s2-a.php'))
37 include_once WPMU_PLUGIN_DIR.'/s2-a.php';
38