PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 2.2.7
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v2.2.7
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.7, at imagify.php

155 lines 3.8 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.7
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' ) || exit;
20
21 // Imagify defines.
22 define( 'IMAGIFY_VERSION', '2.2.7' );
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 [
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 */
109 function imagify_load_translations() {
110 load_plugin_textdomain( 'imagify', false, dirname( plugin_basename( IMAGIFY_FILE ) ) . '/languages/' );
111 }
112 add_action( 'init', 'imagify_load_translations' );
113
114 /**
115 * Set a transient on plugin activation, it will be used later to trigger activation hooks after the plugin is loaded.
116 * The transient contains the ID of the user that activated the plugin.
117 *
118 * @since 1.9
119 * @see Imagify_Plugin->maybe_activate()
120 * @author Grégory Viguier
121 */
122 function imagify_set_activation() {
123 if ( ! imagify_pass_requirements() ) {
124 return;
125 }
126
127 if ( imagify_is_active_for_network() ) {
128 set_site_transient( 'imagify_activation', get_current_user_id(), 30 );
129 } else {
130 set_transient( 'imagify_activation', get_current_user_id(), 30 );
131 }
132 }
133 register_activation_hook( IMAGIFY_FILE, 'imagify_set_activation' );
134
135 /**
136 * Trigger a hook on plugin deactivation.
137 *
138 * @since 1.9
139 * @author Grégory Viguier
140 */
141 function imagify_deactivation() {
142 if ( ! imagify_pass_requirements() ) {
143 return;
144 }
145
146 /**
147 * Imagify deactivation.
148 *
149 * @since 1.9
150 * @author Grégory Viguier
151 */
152 do_action( 'imagify_deactivation' );
153 }
154 register_deactivation_hook( IMAGIFY_FILE, 'imagify_deactivation' );
155