forked from cyberwani/ACF-Image-Select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacf-image-select.php
executable file
·92 lines (74 loc) · 1.51 KB
/
acf-image-select.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
<?php
/*
Plugin Name: Advanced Custom Fields: Image Select
Plugin URI: http://www.about/me/cyberwani
Description: Image Select addon for Advanced Custom Fields.
Version: 1.0.1
Author: Dinesh Kesarwani
Author URI: http://www.about/me/cyberwani
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
class acf_field_image_select_plugin
{
/*
* Construct
*
* @description:
* @since: 3.6
* @created: 04/02/2014
*/
function __construct()
{
// set text domain
/*
$domain = 'acf-image_select';
$mofile = trailingslashit(dirname(__File__)) . 'lang/' . $domain . '-' . get_locale() . '.mo';
load_textdomain( $domain, $mofile );
*/
// version 5+
add_action('acf/include_fields', array($this, 'register_fields_v5'));
// version 4+
add_action('acf/register_fields', array($this, 'register_fields'));
// version 3-
add_action('init', array( $this, 'init' ), 5);
}
/*
* Init
*
* @description:
* @since: 3.6
* @created: 04/02/2014
*/
function init()
{
if(function_exists('register_field'))
{
register_field('acf_field_image_select', plugin_dir_path(__FILE__) . '/image-select-v3.php');
}
}
/*
* register_fields
*
* @description:
* @since: 3.6
* @created: 04/02/2014
*/
function register_fields()
{
include_once('image-select-v4.php');
}
/*
* register_fields
*
* @description:
* @since: 3.6
* @created: 04/02/2014
*/
function register_fields_v5()
{
include_once('image-select-v5.php');
}
}
new acf_field_image_select_plugin();
?>