GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( f6214d...bf2a11 )
by Brad
03:06
created

FooGallery_Plugin::activate()   B

Complexity

Conditions 6
Paths 5

Size

Total Lines 25
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 6
eloc 13
nc 5
nop 1
dl 0
loc 25
rs 8.439
c 0
b 0
f 0
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 19 and the first side effect is on line 16.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
/**
3
 * Plugin Name: FooGallery
4
 * Description: FooGallery is the most intuitive and extensible gallery management tool ever created for WordPress
5
 * Version:     1.3.1
6
 * Author:      FooPlugins
7
 * Plugin URI:  https://foo.gallery
8
 * Author URI:  http://fooplugins.com
9
 * Text Domain: foogallery
10
 * License:     GPL-2.0+
11
 * Domain Path: /languages
12
 */
13
14
// If this file is called directly, abort.
15
if ( ! defined( 'WPINC' ) ) {
16
	die;
17
}
18
19
define( 'FOOGALLERY_SLUG', 'foogallery' );
20
define( 'FOOGALLERY_PATH', plugin_dir_path( __FILE__ ) );
21
define( 'FOOGALLERY_URL', plugin_dir_url( __FILE__ ) );
22
define( 'FOOGALLERY_FILE', __FILE__ );
23
define( 'FOOGALLERY_VERSION', '1.3.1' );
24
25
// Create a helper function for easy SDK access.
26
function foogallery_fs() {
27
	global $foogallery_fs;
0 ignored issues
show
Compatibility Best Practice introduced by
Use of global functionality is not recommended; it makes your code harder to test, and less reusable.

Instead of relying on global state, we recommend one of these alternatives:

1. Pass all data via parameters

function myFunction($a, $b) {
    // Do something
}

2. Create a class that maintains your state

class MyClass {
    private $a;
    private $b;

    public function __construct($a, $b) {
        $this->a = $a;
        $this->b = $b;
    }

    public function myFunction() {
        // Do something
    }
}
Loading history...
28
29
	if ( ! isset( $foogallery_fs ) ) {
30
		// Include Freemius SDK.
31
		require_once dirname(__FILE__) . '/freemius/start.php';
32
33
		$foogallery_fs = fs_dynamic_init( array(
34
			'id'                => '843',
35
			'slug'              => 'foogallery',
36
			'type'              => 'plugin',
37
			'public_key'        => 'pk_d87616455a835af1d0658699d0192',
38
			'is_premium'        => false,
39
			'has_addons'        => false,
40
			'has_paid_plans'    => false,
41
			'menu'              => array(
42
				'slug'       => 'edit.php?post_type=foogallery',
43
				'first-path' => 'edit.php?post_type=foogallery&page=foogallery-help',
44
				'account'    => false,
45
				'contact'    => false,
46
				'support'    => false,
47
			),
48
		) );
49
	}
50
51
	return $foogallery_fs;
52
}
53
54
// Init Freemius.
55
foogallery_fs();
56
57
// Signal that SDK was initiated.
58
do_action( 'foogallery_fs_loaded' );
59
60
/**
61
 * FooGallery_Plugin class
62
 *
63
 * @package   FooGallery
64
 * @author    Brad Vincent <[email protected]>
65
 * @license   GPL-2.0+
66
 * @link      https://github.com/fooplugins/foogallery
67
 * @copyright 2013 FooPlugins LLC
68
 */
69
70
if ( ! class_exists( 'FooGallery_Plugin' ) ) {
71
72
	require_once( FOOGALLERY_PATH . 'includes/foopluginbase/bootstrapper.php' );
73
74
	/**
75
	 * FooGallery_Plugin class.
76
	 *
77
	 * @package FooGallery
78
	 * @author  Brad Vincent <[email protected]>
79
	 */
80
	class FooGallery_Plugin extends Foo_Plugin_Base_v2_3 {
81
82
		private static $instance;
83
84
		public static function get_instance() {
85
			if ( ! isset(self::$instance) && ! (self::$instance instanceof FooGallery_Plugin) ) {
86
				self::$instance = new FooGallery_Plugin();
87
			}
88
89
			return self::$instance;
90
		}
91
92
		/**
93
		 * Initialize the plugin by setting localization, filters, and administration functions.
94
		 */
95
		private function __construct() {
96
97
			//include everything we need!
98
			require_once( FOOGALLERY_PATH . 'includes/includes.php' );
99
100
			register_activation_hook( __FILE__, array( 'FooGallery_Plugin', 'activate' ) );
101
102
			//init FooPluginBase
103
			$this->init( FOOGALLERY_FILE, FOOGALLERY_SLUG, FOOGALLERY_VERSION, 'FooGallery' );
104
105
			//setup text domain
106
			$this->load_plugin_textdomain();
107
108
			//setup gallery post type
109
			new FooGallery_PostTypes();
110
111
			//load any extensions
112
			new FooGallery_Extensions_Loader();
113
114
			if ( is_admin() ) {
115
				new FooGallery_Admin();
116
				add_action( 'wpmu_new_blog', array( $this, 'set_default_extensions_for_multisite_network_activated' ) );
117
			} else {
118
				new FooGallery_Public();
119
			}
120
121
			new FooGallery_Thumbnails();
122
123
			new FooGallery_Polylang_Compatibility();
124
125
			new FooGallery_Attachment_Filters();
126
127
			new FooGallery_Retina();
128
129
			new FooGallery_WPThumb_Enhancements();
130
131
			new FooGallery_Animated_Gif_Support();
132
133
			new FooGallery_Cache();
134
135
			new FooGallery_Thumbnail_Dimensions();
136
137
			new FooGallery_Responsive_Lightbox_dFactory_Support();
138
139
			new FooGallery_Attachment_Custom_Class();
140
141
			$checker = new FooGallery_Version_Check();
142
			$checker->wire_up_checker();
143
		}
144
145
		/**
146
		 * Set default extensions when a new site is created in multisite and FooGallery is network activated
147
		 *
148
		 * @since 1.2.5
149
		 *
150
		 * @param int $blog_id The ID of the newly created site
151
		 */
152
		public function set_default_extensions_for_multisite_network_activated( $blog_id ) {
153
			switch_to_blog( $blog_id );
154
155
			if ( false === get_option( FOOGALLERY_EXTENSIONS_AUTO_ACTIVATED_OPTIONS_KEY, false ) ) {
156
				$api = new FooGallery_Extensions_API();
157
158
				$api->auto_activate_extensions();
159
160
				update_option( FOOGALLERY_EXTENSIONS_AUTO_ACTIVATED_OPTIONS_KEY, true );
161
			}
162
163
			restore_current_blog();
164
		}
165
166
		/**
167
		 * Fired when the plugin is activated.
168
		 *
169
		 * @since    1.0.0
170
		 *
171
		 * @param    boolean    $network_wide    True if WPMU superadmin uses
172
		 *                                       "Network Activate" action, false if
173
		 *                                       WPMU is disabled or plugin is
174
		 *                                       activated on an individual blog.
175
		 */
176
		public static function activate( $network_wide ) {
177
			if ( function_exists( 'is_multisite' ) && is_multisite() ) {
178
179
				if ( $network_wide  ) {
180
181
					// Get all blog ids
182
					$blog_ids = self::get_blog_ids();
183
					if ( is_array( $blog_ids ) ) {
184
						foreach ( $blog_ids as $blog_id ) {
185
186
							switch_to_blog( $blog_id );
187
							self::single_activate();
188
						}
189
190
						restore_current_blog();
191
					}
192
193
				} else {
194
					self::single_activate();
195
				}
196
197
			} else {
198
				self::single_activate( false );
199
			}
200
		}
201
202
		/**
203
		 * Fired for each blog when the plugin is activated.
204
		 *
205
		 * @since    1.0.0
206
		 */
207
		private static function single_activate( $multisite = true ) {
208
			if ( false === get_option( FOOGALLERY_EXTENSIONS_AUTO_ACTIVATED_OPTIONS_KEY, false ) ) {
209
				$api = new FooGallery_Extensions_API();
210
211
				$api->auto_activate_extensions();
212
213
				update_option( FOOGALLERY_EXTENSIONS_AUTO_ACTIVATED_OPTIONS_KEY, true );
214
			}
215
			if ( false === $multisite ) {
216
				//Make sure we redirect to the welcome page
217
				set_transient( FOOGALLERY_ACTIVATION_REDIRECT_TRANSIENT_KEY, true, 30 );
218
			}
219
220
			//force a version check on activation to make sure housekeeping is performed
221
			foogallery_perform_version_check();
222
		}
223
224
		/**
225
		 * Get all blog ids of blogs in the current network that are:
226
		 * - not archived
227
		 * - not spam
228
		 * - not deleted
229
		 *
230
		 * @since    1.0.0
231
		 *
232
		 * @return   array|false    The blog ids, false if no matches.
233
		 */
234
		private static function get_blog_ids() {
235
236
			if ( function_exists( 'wp_get_sites' ) ) {
237
238
				$sites = wp_get_sites();
239
				$blog_ids = array();
240
				foreach ( $sites as $site ) {
241
					$blog_ids[] = $site['blog_id'];
242
				}
243
				return $blog_ids;
244
			} else {
245
				//pre WP 3.7 - do this the old way!
246
				global $wpdb;
247
248
				// get an array of blog ids
249
				$sql = "SELECT blog_id FROM $wpdb->blogs WHERE archived = '0' AND spam = '0' AND deleted = '0'";
250
251
				return $wpdb->get_col( $sql );
252
			}
253
		}
254
	}
255
}
256
257
FooGallery_Plugin::get_instance();
258