Changeset 570808
- Timestamp:
- 07/11/2012 06:57:52 PM (14 years ago)
- Location:
- custom-metadata
- Files:
-
- 5 edited
- 1 copied
-
tags/0.7.1 (copied) (copied from custom-metadata/tags/0.7)
-
tags/0.7.1/custom_metadata.php (modified) (2 diffs)
-
tags/0.7.1/js/custom-metadata-manager.js (modified) (1 diff)
-
tags/0.7.1/readme.txt (modified) (3 diffs)
-
trunk/js/custom-metadata-manager.js (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-metadata/tags/0.7.1/custom_metadata.php
r490782 r570808 68 68 var $_column_types = array( 'posts', 'pages', 'users', 'comments' ); 69 69 // field types 70 var $_field_types = array( 'text', 'textarea', 'password', 'checkbox', 'radio', 'select', 'upload', 'wysiwyg', ' datepicker', 'taxonomy_select', 'taxonomy_radio' );70 var $_field_types = array( 'text', 'textarea', 'password', 'checkbox', 'radio', 'select', 'upload', 'wysiwyg', 'editor', 'richtext', 'datepicker', 'taxonomy_select', 'taxonomy_radio' ); 71 71 // field types that are cloneable 72 72 var $_cloneable_field_types = array( 'text', 'textarea', 'upload', 'password'); … … 935 935 <?php break; ?> 936 936 937 <?php case 'wysiwyg': ?>937 <?php case 'wysiwyg': case 'editor': case 'richtext' ?> 938 938 <?php 939 939 $args = apply_filters('custom_metadata_manager_wysiwyg_args_field_'.$field_id, $this->default_editor_args, $field_slug, $field, $object_type, $object_id ); -
custom-metadata/tags/0.7.1/js/custom-metadata-manager.js
r489744 r570808 38 38 window.send_to_editor_clone = function(html){ 39 39 file_url = jQuery('img',html).attr('src'); 40 if (!file_url) { imgurl = jQuery(html).attr('href'); }40 if (!file_url) { file_url = jQuery(html).attr('href'); } 41 41 tb_remove(); 42 42 jQuery('#'+formfield+' .upload_field').val(file_url); -
custom-metadata/tags/0.7.1/readme.txt
r490788 r570808 4 4 Tags: custom metadata, custom metadata manager metadata, postmeta, post meta, user meta, custom post types, custom fields, metabox, metadata api, metadata 5 5 Requires at least: 3.3 6 Tested up to: 3.4 -alpha7 Stable tag: 0.7 6 Tested up to: 3.4.1 7 Stable tag: 0.7.1 8 8 9 9 An easy way to add custom fields to your object types (post, pages, custom post types, users) … … 57 57 58 58 == Changelog == 59 60 = 0.7.1 = 61 62 * fix a bug where non-image file upload path doesn't get inserted into the input when clicking Insert into Post from the media manager 63 * add 'editor' and 'richtext' as synonyms of 'wysiwyg' field type 59 64 60 65 = 0.7 = … … 285 290 Stuff we have planned for the future: 286 291 292 * Ability to clone (multiple) groups of fields 287 293 * Ability Pass in attributes for built-in fields (e.g. class, data-*, etc.) 288 294 * Additional field types (multi-select, multi-checkbox) -
custom-metadata/trunk/js/custom-metadata-manager.js
r489744 r570808 38 38 window.send_to_editor_clone = function(html){ 39 39 file_url = jQuery('img',html).attr('src'); 40 if (!file_url) { imgurl = jQuery(html).attr('href'); }40 if (!file_url) { file_url = jQuery(html).attr('href'); } 41 41 tb_remove(); 42 42 jQuery('#'+formfield+' .upload_field').val(file_url); -
custom-metadata/trunk/readme.txt
r490788 r570808 4 4 Tags: custom metadata, custom metadata manager metadata, postmeta, post meta, user meta, custom post types, custom fields, metabox, metadata api, metadata 5 5 Requires at least: 3.3 6 Tested up to: 3.4 -alpha7 Stable tag: 0.7 6 Tested up to: 3.4.1 7 Stable tag: 0.7.1 8 8 9 9 An easy way to add custom fields to your object types (post, pages, custom post types, users) … … 57 57 58 58 == Changelog == 59 60 = 0.7.1 = 61 62 * fix a bug where non-image file upload path doesn't get inserted into the input when clicking Insert into Post from the media manager 63 * add 'editor' and 'richtext' as synonyms of 'wysiwyg' field type 59 64 60 65 = 0.7 = … … 285 290 Stuff we have planned for the future: 286 291 292 * Ability to clone (multiple) groups of fields 287 293 * Ability Pass in attributes for built-in fields (e.g. class, data-*, etc.) 288 294 * Additional field types (multi-select, multi-checkbox)
Note: See TracChangeset
for help on using the changeset viewer.