-
Notifications
You must be signed in to change notification settings - Fork 5
/
acf-icomoon.php
83 lines (68 loc) · 2.14 KB
/
acf-icomoon.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
<?php
/*
Plugin Name: Advanced Custom Fields: IcoMoon
Version: 1.0.7
Plugin URI: http://www.jameelmoses.com
Description: ACF IcoMoon select field
Author: Jameel Moses
Author URI: http://www.jameelmoses.com
Text Domain: acf-icomoon
----
Copyright 2017 Jameel Moses ([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_ICOMOON_VER', '1.0.7' );
define( 'ACF_ICOMOON_URL', plugin_dir_url( __FILE__ ) );
define( 'ACF_ICOMOON_DIR', plugin_dir_path( __FILE__ ) );
class acf_field_icomoon_plugin {
/**
* Constructor.
*
* Load plugin's translation and register icomoon fields.
*
* @since 1.0.0
*/
function __construct() {
// Register ACF fields
add_action( 'acf/include_field_types', array( __CLASS__, 'register_field' ) );
}
/**
* Register Icomoon field for ACF v5.
*
* @since 1.0.0
*/
public static function register_field() {
$enqueue_select2 = acf_get_setting( 'enqueue_select2' );
if ( is_null( $enqueue_select2 ) ) {
acf_update_setting( 'enqueue_select2', true );
}
$select2_version = acf_get_setting( 'select2_version' );
if ( is_null( $select2_version ) ) {
acf_update_setting( 'select2_version', 3 );
}
include_once( ACF_ICOMOON_DIR . 'fields/icomoon-base-field.php' );
include_once( ACF_ICOMOON_DIR . 'fields/icomoon-v5.php' );
}
}
/**
* Init plugin.
*
* @since 1.0.0
*/
function acf_field_icomoon_load() {
new acf_field_icomoon_plugin();
}
add_action( 'plugins_loaded', 'acf_field_icomoon_load' );