forked from bainternet/My-Meta-Box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
187 lines (138 loc) · 4.56 KB
/
README
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
My Wordpress Meta box Class
=======================
Contributors: bainternet
Requires at least: 3.1
Tested up to: 3.7.1
Description
-----------
The Meta Box Class is used by including it in your plugin files and using its methods to
create custom meta boxes for custom post types. It is meant to be very simple and
straightforward. For name spacing purposes, All Types metabox ( meaning you can do anything with it )
is used.
This class is derived from Meta Box script by Rilwis<[email protected]> version 3.2. which later was forked
by Cory Crowley (email: [email protected]) The purpose of this class is not to rewrite the script but to
modify and change small things and adding a few field types that i needed to my personal preference.
The original author did a great job in writing this class, so all props goes to him.
Usage
--------
Take a look at the `class-usage-demo.php` file which can also be tested as a WordPress Plugin.
Other options are available for each field which can be see in the 'my-meta-box-class.php' file,
Known Issues and Limitations
-------------
Reapater field can't handle Posts and Taxonomy for now (and maybe even others).
Changelog
---------
= 3.1.1 =
* Fixed #94.
* Fixed #92.
* Fixed #93. added an option to show an empty select option to posts field using `emptylabel` in the field config array.
* Fixed #88.
= 3.1.0 =
* All uploads hadled by wordpress and not by the class
* Removed media upload functions
* Replaced Image field to new media uploader
* Replaced file field to new media uploader and added a type limiter.
* Dropped supprot for farbtastic. and probbably wp < 3.5
* Repeater field label is a counter if first field is an image or file field.
* Fixed typo in css class name for post select field.
* Deprecated save_field_file_repeater method.
* Fixed posts filed query args
* Added WYSIWYG editor settings option.
* Removed all refreance object calls (for php 5.4 prep).
* Removed support for hosted icons.
* Refreshed repeater block icons.
* Cleaned repeater block.
* Repeater block sortable now has an icon for sorting.
* Added Repeater block sortable drop place holder.
* Updated plugin version
* Added file field width type limitation.
= 3.0.6 =
Fixed issue #74.
= 3.0.5 =
Fixed issue #64
= 3.0.4 =
Fixed #52
= 3.0.3 =
Added html5 Number Field
= 3.0.2 =
Fixed #48.
Cleaned up Javascript file.
Added Swedish translations thanks to #lolitaloco :)
= 3.0.1 =
Better add_meta_box logic
= 3.0.0 =
fixed issues #45 #42
= 2.9.9 =
Cleaned up some comments in the code.
Added a conditional fields block #37 ,as can be seen in demo plugin.
= 2.9.8 =
Fixed field groupping #32
Added Select2 #31
Added WordPress 3.5 color picker support.
better field type checking algo.
= 2.9.7 =
Added class attribute to most fields. #33
Added Style attribute to most fields. #33
fixed Language Mo issue.
improved has_filed logic for better performance.
= 2.9.6 =
Fixed file upload issue #22
= 2.9.5 =
Typo.
= 2.9.4 =
Added localization support.
= 2.9.3 =
Fixed issue #27
moved all external file calls to local
= 2.9.2 =
Fixed issue #25
= 2.9.1 =
Fixed Typo in line 1812, issue #24
= 2.9 =
Fixed "array" when repater field has something other then text field :).
has_field() now checks repeater fields as well.
= 2.8 =
Fixed issue #10 by moving ajax hook to constructor.
split demo meta box to 2 meta boxes.
= 2.7 =
Fixed Load js on edit pages only.
= 2.6 =
Fixed issue #13.
Fixed issue #14.
= 2.5 =
Fixed Issue #11.
Added Sortable option to repeater field.
= 2.4 =
Fixed WP_DEBUG errors, and taxonomy field args notice.
= 2.3 =
* added AMPM param to addTime to show time field with am/pm option
= 2.2 =
* Fixed use with theme on custom path
= 2.1 =
* Added Code Editor with syntax highlighting (php,css,html,javascript) using CodeMirror.
= 2.0 =
* Fixed Insert To Post bug
= 1.9 =
* Fixed Image field functions in repeater block.
= 1.8 =
* fixed multiple image upload issue.
* cleaned js file from unused function.
= 1.7 =
* Fixed demo plugi file with new function names.
* Fixed Wysiwyg for version 3.3 once more, (which should work now).
* Fixed image upload field.
= 1.6 =
* Added an option to set path for themes.
* Fixed repeater dynamic editing
= 1.5 =
* Fixed Wysiwyg for version 3.3
= 1.2 =
* Fixed repeater block JS code.
* Offloaded images with an option to use local images.
* Added inline for repater block.
* Added genric addFiled function.
= 1.1 =
* Reapater Implemented and removed debug leftover var_dump
= 1.0 =
* First Release
[![Analytics](https://ga-beacon.appspot.com/UA-50573135-4/My-Meta-Box/main)](https://github.com/bainternet/My-Meta-Box)