PluginProbe
SVGator / 1.3.4
SVGator v1.3.4
trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0
svgator / svgator.php

svgator.php in SVGator 1.3.4, at svgator.php

47 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: SVGator
4 * Plugin URI: https://www.svgator.com/help/getting-started/how-to-add-svg-to-wordpress
5 * Description: Import your animated SVGs from SVGator.com
6 * Version: 1.3.4
7 * Author: SVGator
8 * Author URI: https://www.svgator.com
9 * Text Domain: svgator
10 * License: GPL 2
11 *
12 * @package Svgator.com
13 */
14
15 /*
16 Copyright © 2024 Smartketer LLC
17 This program is free software; you can redistribute it
18 under the terms of the GNU General Public License as published by
19 the Free Software Foundation; either version 2 of the License, or
20 (at your option) any later version.
21
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS PARTICULAR PURPOSE.
25 See GNU General Public License for more details.
26
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 */
31
32 use WP_SVGator\Main;
33
34 //If this file is called directly, abort.
35 if ( ! defined( 'WPINC' ) ) {
36 die;
37 }
38
39 const WP_SVGATOR_VERSION = '1.3.4';
40 define( 'WP_SVGATOR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
41 define( 'WP_SVGATOR_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
42
43 require WP_SVGATOR_PLUGIN_DIR . 'includes/autoload.php';
44 Main::run();
45
46 register_deactivation_hook( __FILE__, [ '\WP_SVGator\Main', 'deactivator' ] );
47