forked from andersthorborg/ACF-Image-Crop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
acf-image-crop.php
47 lines (29 loc) · 1.25 KB
/
acf-image-crop.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
<?php
/*
Plugin Name: Advanced Custom Fields: Image Crop Add-on (Fork)
Plugin URI: https://github.com/rafecolton/ACF-Image-Crop
Description: This is a fork of the original ACF-Image-Crop. <strong>DO NOT UPDATE AS NORMAL</strong>
Version: 1.4.12
Author: Anders Thorborg (forked by Himalayan Institute)
*/
// 1. set text domain
// Reference: https://codex.wordpress.org/Function_Reference/load_plugin_textdomain
load_plugin_textdomain( 'acf-image_crop', false, dirname( plugin_basename(__FILE__) ) . '/lang/' );
// 2. Include field type for ACF5
// $version = 5 and can be ignored until ACF6 exists
function include_field_types_image_crop( $version ) {
include_once('acf-image-crop-v5.php');
}
add_action('acf/include_field_types', 'include_field_types_image_crop');
// 3. Include field type for ACF4
function register_fields_image_crop() {
include_once('acf-image-crop-v4.php');
}
add_action('acf/register_fields', 'register_fields_image_crop');
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'acf_image_crop_action_links' );
function acf_image_crop_action_links( $links ) {
// changed
$links[] = '<a href="'. get_admin_url(null, 'options-media.php') .'">'.__('Settings','acf-image_crop').'</a>';
// changed END
return $links;
}