-
Notifications
You must be signed in to change notification settings - Fork 13
/
acf-svg-icon.php
executable file
·97 lines (80 loc) · 2.61 KB
/
acf-svg-icon.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/*
Plugin Name: Advanced Custom Fields: SVG Icon
Version: 2.1.3
Plugin URI: http://www.beapi.fr
Description: Add an ACF SVG icon selector.
Author: BE API Technical team
Author URI: https://www.beapi.fr
Domain Path: languages
Text Domain: acf-svg-icon
----
Copyright 2017 BE API Technical team ([email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
if ( ! defined( 'ABSPATH' ) ) {
die();
}
define( 'ACF_SVG_ICON_VER', '2.1.3' );
define( 'ACF_SVG_ICON_URL', plugin_dir_url( __FILE__ ) );
define( 'ACF_SVG_ICON_DIR', plugin_dir_path( __FILE__ ) );
class acf_field_svg_icon_plugin {
/**
* Constructor.
*
* Load plugin's translation and register acf svg fields.
*
* @since 1.0.0
*/
public function __construct() {
add_action( 'init', array( __CLASS__, 'load_translation' ), 1 );
// Register ACF fields
add_action( 'acf/include_field_types', array( __CLASS__, 'register_field_v5' ) );
}
/**
* Load plugin translation.
*
* @since 1.0.0
*/
public static function load_translation() {
load_plugin_textdomain( 'acf-svg-icon', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Register SVG icon field for ACF v5 or v5.6 depending on ACF version.
*
* @since 1.0.0
*/
public static function register_field_v5() {
if ( version_compare( acf_get_setting( 'version' ), '5.6.O', '>=' ) ) {
// Register field for ACF 5.6 or greater
include_once sprintf( '%sfields/acf-base.php', ACF_SVG_ICON_DIR );
include_once sprintf( '%sfields/acf-56.php', ACF_SVG_ICON_DIR );
acf_register_field_type( 'acf_field_svg_icon_56' );
} else {
// Register field for ACF 5
include_once sprintf( '%sfields/acf-base.php', ACF_SVG_ICON_DIR );
include_once sprintf( '%sfields/acf-5.php', ACF_SVG_ICON_DIR );
$klass = 'acf_field_svg_icon_5';
new $klass();
}
}
}
/**
* Init plugin.
*
* @since 1.0.0
*/
function acf_field_svg_icon() {
new acf_field_svg_icon_plugin();
}
add_action( 'plugins_loaded', 'acf_field_svg_icon' );