PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 2.2.3.1
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v2.2.3.1
2.3.4 2.3.3 2.3.2 2.3.1 2.3.0 2.2.9 2.2.8 trunk 1.10 1.3.3 1.3.4 1.3.5 1.3.5.1 1.3.5.2 1.3.6 1.3.6.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 All 103 releases
imagify / imagify.php

imagify.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 2.2.3.1, at imagify.php

164 lines 3.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Imagify
4 * Plugin URI: https://wordpress.org/plugins/imagify/
5 * Description: Dramatically reduce image file sizes without losing quality, make your website load faster, boost your SEO and save money on your bandwidth using Imagify, the new most advanced image optimization tool.
6 * Version: 2.2.3.1
7 * Requires at least: 5.3
8 * Requires PHP: 7.3
9 * Author: Imagify Image Optimizer – Optimize Images & Convert WebP & Avif
10 * Author URI: https://imagify.io
11 * Licence: GPLv2
12 *
13 * Text Domain: imagify
14 * Domain Path: languages
15 *
16 * Copyright 2024 WP Media
17 */
18
19 defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' );
20
21 // Imagify defines.
22 define( 'IMAGIFY_VERSION', '2.2.3' );
23 define( 'IMAGIFY_SLUG', 'imagify' );
24 define( 'IMAGIFY_FILE', __FILE__ );
25 define( 'IMAGIFY_PATH', realpath( plugin_dir_path( IMAGIFY_FILE ) ) . '/' );
26 define( 'IMAGIFY_URL', plugin_dir_url( IMAGIFY_FILE ) );
27 define( 'IMAGIFY_ASSETS_IMG_URL', IMAGIFY_URL . 'assets/images/' );
28 define( 'IMAGIFY_MAX_BYTES', 5242880 );
29 define( 'IMAGIFY_INT_MAX', PHP_INT_MAX - 30 );
30 if ( ! defined( 'IMAGIFY_SITE_DOMAIN' ) ) {
31 define( 'IMAGIFY_SITE_DOMAIN', 'https://imagify.io' );
32 }
33 if ( ! defined( 'IMAGIFY_APP_DOMAIN' ) ) {
34 define( 'IMAGIFY_APP_DOMAIN', 'https://app.imagify.io' );
35 }
36 define( 'IMAGIFY_APP_API_URL', IMAGIFY_APP_DOMAIN . '/api/' );
37
38
39 // Check for WordPress and PHP version.
40 if ( imagify_pass_requirements() ) {
41 require_once IMAGIFY_PATH . 'inc/main.php';
42 }
43
44 /**
45 * Check if Imagify is activated on the network.
46 *
47 * @since 1.0
48 *
49 * return bool True if Imagify is activated on the network.
50 */
51 function imagify_is_active_for_network() {
52 static $is;
53
54 if ( isset( $is ) ) {
55 return $is;
56 }
57
58 if ( ! is_multisite() ) {
59 $is = false;
60 return $is;
61 }
62
63 if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
64 require_once ABSPATH . 'wp-admin/includes/plugin.php';
65 }
66
67 $is = is_plugin_active_for_network( plugin_basename( IMAGIFY_FILE ) );
68
69 return $is;
70 }
71
72 /**
73 * Check for WordPress and PHP version.
74 *
75 * @since 1.9
76 * @author Grégory Viguier
77 *
78 * @return bool True if WP and PHP versions are OK.
79 */
80 function imagify_pass_requirements() {
81 static $check;
82
83 if ( isset( $check ) ) {
84 return $check;
85 }
86
87 require_once IMAGIFY_PATH . 'inc/classes/class-imagify-requirements-check.php';
88
89 $requirement_checks = new Imagify_Requirements_Check(
90 array(
91 'plugin_name' => 'Imagify',
92 'plugin_file' => IMAGIFY_FILE,
93 'plugin_version' => IMAGIFY_VERSION,
94 'wp_version' => '5.3',
95 'php_version' => '7.0',
96 )
97 );
98
99 $check = $requirement_checks->check();
100
101 return $check;
102 }
103
104 /**
105 * Load plugin translations.
106 *
107 * @since 1.9
108 * @author Grégory Viguier
109 */
110 function imagify_load_translations() {
111 static $done = false;
112
113 if ( $done ) {
114 return;
115 }
116
117 $done = true;
118
119 load_plugin_textdomain( 'imagify', false, dirname( plugin_basename( IMAGIFY_FILE ) ) . '/languages/' );
120 }
121
122 /**
123 * Set a transient on plugin activation, it will be used later to trigger activation hooks after the plugin is loaded.
124 * The transient contains the ID of the user that activated the plugin.
125 *
126 * @since 1.9
127 * @see Imagify_Plugin->maybe_activate()
128 * @author Grégory Viguier
129 */
130 function imagify_set_activation() {
131 if ( ! imagify_pass_requirements() ) {
132 return;
133 }
134
135 if ( imagify_is_active_for_network() ) {
136 set_site_transient( 'imagify_activation', get_current_user_id(), 30 );
137 } else {
138 set_transient( 'imagify_activation', get_current_user_id(), 30 );
139 }
140 }
141 register_activation_hook( IMAGIFY_FILE, 'imagify_set_activation' );
142
143 /**
144 * Trigger a hook on plugin deactivation.
145 *
146 * @since 1.9
147 * @author Grégory Viguier
148 */
149 function imagify_deactivation() {
150 if ( ! imagify_pass_requirements() ) {
151 return;
152 }
153
154 /**
155 * Imagify deactivation.
156 *
157 * @since 1.9
158 * @author Grégory Viguier
159 */
160 do_action( 'imagify_deactivation' );
161 }
162 register_deactivation_hook( IMAGIFY_FILE, 'imagify_deactivation' );
163
164