forked from magic-fields-team/Magic-Fields-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.php
More file actions
218 lines (175 loc) · 6.91 KB
/
main.php
File metadata and controls
218 lines (175 loc) · 6.91 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php
/*
Plugin Name: Magic Fields
Plugin URI: http://magicfields.org
Description: Create custom fields for your post types
Version: 2.0
Author: Hunk and Gnuget
Author URI: http://magicfields.org
License: GPL2
*/
/* Copyright 2011 Magic Fields Team
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* i18n
*/
global $mf_domain,$mf_pt_register;
$mf_domain = 'magic_fields';
$mf_pt_register = array();
/**
* Constants
*/
require_once( 'mf_extra.php' );
require_once( 'mf_constants.php' );
//auto loading files
function mf_autoload( $name ) {
//main files
if( file_exists( MF_PATH.'/'.$name.'.php' ) ) {
require_once( MF_PATH.'/'.$name.'.php' );
}
//admin files
if( file_exists( MF_PATH.'/admin/'.$name.'.php' ) ) {
require_once( MF_PATH.'/admin/'.$name.'.php' );
}
//field types
if( file_exists( MF_PATH.'/field_types/'.$name.'/'.$name.'.php' ) ) {
require_once( MF_PATH.'/field_types/'.$name.'/'.$name.'.php');
}
}
if (function_exists("__autoload")) {
spl_autoload_register("__autoload");
}
spl_autoload_register("mf_autoload");
/**
* Activation and Deactivation
*/
register_activation_hook( __FILE__, array('mf_install', 'install' ) );
//MF in mode plusing multinetwork
if( mf_mu2() ){
mf_install::install();
}
//Register Post Types and Custom Taxonomies
$mf_register = new mf_register();
//Adding metaboxes, and hooks for save the data when is created a new post
$mf_post = new mf_post();
if( is_admin() ) {
//load_plugin_textdomain($mf_domain , '/'.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/lang', basename(dirname(__FILE__)).'/lang');
load_plugin_textdomain('magic_fields', '/'.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/lang', basename(dirname(__FILE__)).'/lang');
//check folders
add_action('admin_notices', array('mf_install', 'folders'));
//add common function
require_once(MF_PATH.'/mf_common.php');
// CSS Files
wp_register_style( 'mf_admin_css',MF_BASENAME.'css/mf_admin.css' );
wp_enqueue_style( 'mf_admin_css' );
// Settings Page
add_action( 'admin_menu', 'mf_menu' );
function mf_menu( ) {
global $mf_domain;
add_options_page(__('Magic Fields Settings', $mf_domain ), 'Magic Fields', 'manage_options', 'mf_settings', array('mf_settings','main') );
}
//Administration page
add_action('admin_menu','mf_admin');
function mf_admin() {
global $mf_domain;
add_menu_page('Magic Fields','Magic Fields','activate_plugins','mf_dispatcher','mf_dispatcher',MF_BASENAME.'/images/wand-hat.png');
add_submenu_page('mf_dispatcher', __('import',$mf_domain), __('Import',$mf_domain), 'edit_pages','mf_dispatcher&mf_section=mf_posttype&mf_action=import_form_post_type', 'mf_dispatcher');
}
//Adding metaboxes into the pages for create posts
//Also adding code for save this data
add_action( 'add_meta_boxes', 'mf_add_meta_boxes');
function mf_add_meta_boxes() {
}
/**
* Magic Fields dispatcher
*/
function mf_dispatcher() {
$section = "mf_dashboard";
$action = "main";
//Section
if( !empty( $_GET['mf_section'] ) ) {
$section = urlencode($_GET['mf_section']);
}
//Action
if( !empty( $_GET['mf_action'] ) ) {
$action = urlencode( $_GET['mf_action'] );
}
$tmp = new $section();
$tmp->$action();
//call_user_func( array( $section, $action ) );
}
/**
* Init Hook
*/
add_action( 'init', 'mf_init' );
function mf_init() {
//Sometimes is neccesary execute the mf_dispatcher function in the init hook
//because we want use a custom headers or a redirect (wp_safe_redirect for eg)
if(!empty($_GET['init']) && $_GET['init'] == "true" ) {
mf_dispatcher();
}
}
//Including javascripts files
add_action( 'init', 'mf_add_js');
function mf_add_js() {
global $mf_domain;
if( is_admin() ) { //this scripts only will be added on the admin area
wp_enqueue_script( 'jquery.validate',MF_BASENAME.'js/third_party/jquery.validate.min.js', array( 'jquery' ) );
wp_enqueue_script( 'jquery.metadata',MF_BASENAME.'js/third_party/jquery.metadata.js', array( 'jquery' ) );
wp_enqueue_script( 'mf_admin',MF_BASENAME.'js/mf_admin.js', array( 'jquery.validate', 'jquery.metadata', 'jquery' ) );
if( isset($_GET['mf_action']) && in_array($_GET['mf_action'],array('add_field','edit_field') ) ){
wp_enqueue_script( 'jquery.slug', MF_BASENAME.'js/third_party/jquery.slug.js', array('mf_admin') );
}
//and this scripts only will be added on the post types section
if( !empty( $_GET['mf_section'] ) && $_GET['mf_section'] == "mf_posttype" ) {
wp_enqueue_script( 'mf_posttype', MF_BASENAME.'js/mf_posttypes.js', array('mf_admin') );
}
//and this scripts only will be added on the post types section
if( !empty( $_GET['mf_section'] ) && $_GET['mf_section'] == "mf_custom_taxonomy" ) {
wp_enqueue_script( 'mf_taxonomy', MF_BASENAME.'js/mf_taxonomy.js', array('mf_admin') );
}
//Adding the files for the sort feature of the custom fields
if( ( !empty( $_GET['mf_section'] ) && $_GET['mf_section'] == 'mf_custom_fields' ) &&
( !empty( $_GET['mf_action'] ) && $_GET['mf_action'] == 'fields_list' ) ) {
wp_enqueue_script( 'mf_sortable_fields', MF_BASENAME.'js/mf_posttypes_sortable.js', array( 'jquery-ui-sortable' ) );
}
//Adding Css files for the post-new.php section (where is created a new post in wp)
if( strstr( $_SERVER['REQUEST_URI'], 'post-new.php' ) !== FALSE || strstr( $_SERVER['REQUEST_URI'], 'wp-admin/post.php') !== FALSE ) {
/* Load JS and CSS for post page */
$css_js = new mf_post();
$css_js->load_js_css_base();
$css_js->load_js_css_fields();
$css_js->general_option_multiline();
}
}
}
add_action('wp_ajax_mf_call','mf_ajax_call');
/* estara sera la funcion principal de llamadas js de MF*/
function mf_ajax_call(){
$call = new mf_ajax_call();
$call->resolve($_POST);
}
add_filter('attachment_fields_to_edit', 'charge_link_after_upload_image', 10, 2);
function charge_link_after_upload_image($fields){
printf("
<script type=\"text/javascript\">
//<![CDATA[
load_link_in_media_upload();
//]]>
</script>");
return $fields;
}
}else{
/* load front-end functions */
require_once( 'mf_front_end.php' );
}