Changeset 3319543
- Timestamp:
- 06/29/2025 07:26:33 PM (9 months ago)
- Location:
- add-custom-fields-to-media
- Files:
-
- 26 added
- 1 deleted
- 6 edited
-
tags/2.0.3 (added)
-
tags/2.0.3/README.txt (added)
-
tags/2.0.3/add-custom-fields-to-media.php (added)
-
tags/2.0.3/admin (added)
-
tags/2.0.3/admin/class-add-custom-fields-to-media-admin.php (added)
-
tags/2.0.3/admin/css (added)
-
tags/2.0.3/admin/css/add-custom-fields-to-media-admin.css (added)
-
tags/2.0.3/admin/img (added)
-
tags/2.0.3/admin/img/acfm.svg (added)
-
tags/2.0.3/admin/index.php (added)
-
tags/2.0.3/admin/partials (added)
-
tags/2.0.3/admin/partials/add-custom-fields-to-media-admin-display.php (added)
-
tags/2.0.3/admin/partials/add-custom-fields-to-media-admin-footer.php (added)
-
tags/2.0.3/includes (added)
-
tags/2.0.3/includes/class-add-custom-fields-to-media-activator.php (added)
-
tags/2.0.3/includes/class-add-custom-fields-to-media-deactivator.php (added)
-
tags/2.0.3/includes/class-add-custom-fields-to-media-i18n.php (added)
-
tags/2.0.3/includes/class-add-custom-fields-to-media-loader.php (added)
-
tags/2.0.3/includes/class-add-custom-fields-to-media.php (added)
-
tags/2.0.3/includes/index.php (added)
-
tags/2.0.3/languages (added)
-
tags/2.0.3/languages/add-custom-fields-to-media.pot (added)
-
tags/2.0.3/public (added)
-
tags/2.0.3/public/class-add-custom-fields-to-media-public.php (added)
-
tags/2.0.3/public/index.php (added)
-
tags/2.0.3/uninstall.php (added)
-
trunk/add-custom-fields-to-media.php (modified) (2 diffs)
-
trunk/admin/index.php (modified) (1 diff)
-
trunk/includes/class-add-custom-fields-to-media.php (modified) (4 diffs)
-
trunk/includes/index.php (modified) (1 diff)
-
trunk/index.php (deleted)
-
trunk/public/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-custom-fields-to-media/trunk/add-custom-fields-to-media.php
r3199991 r3319543 11 11 * Plugin URI: https://wordpress.org/plugins/add-custom-fields-to-media/ 12 12 * Description: Allows users to add custom fields to the media uploader and access those fields in template files. Great for adding copyrights, image meta etc. 13 * Version: 2.0. 213 * Version: 2.0.3 14 14 * Author: George Pattichis 15 15 * Author URI: https://profiles.wordpress.org/pattihis// … … 30 30 * @since 2.0.0 31 31 */ 32 define( 'ADD_CUSTOM_FIELDS_TO_MEDIA_VERSION', '2.0. 2' );32 define( 'ADD_CUSTOM_FIELDS_TO_MEDIA_VERSION', '2.0.3' ); 33 33 34 34 /** -
add-custom-fields-to-media/trunk/admin/index.php
r3019065 r3319543 1 <?php // Silence is golden 1 <?php 2 /** 3 * Silence is golden. 4 * 5 * @package Add_Custom_Fields_To_Media 6 */ -
add-custom-fields-to-media/trunk/includes/class-add-custom-fields-to-media.php
r3199991 r3319543 65 65 $this->version = ADD_CUSTOM_FIELDS_TO_MEDIA_VERSION; 66 66 } else { 67 $this->version = '2.0. 2';67 $this->version = '2.0.3'; 68 68 } 69 69 $this->plugin_name = 'add-custom-fields-to-media'; … … 96 96 * core plugin. 97 97 */ 98 require_once plugin_dir_path( dirname( __FILE__ )) . 'includes/class-add-custom-fields-to-media-loader.php';98 require_once plugin_dir_path( __DIR__ ) . 'includes/class-add-custom-fields-to-media-loader.php'; 99 99 100 100 /** … … 102 102 * of the plugin. 103 103 */ 104 require_once plugin_dir_path( dirname( __FILE__ )) . 'includes/class-add-custom-fields-to-media-i18n.php';104 require_once plugin_dir_path( __DIR__ ) . 'includes/class-add-custom-fields-to-media-i18n.php'; 105 105 106 106 /** 107 107 * The class responsible for defining all actions that occur in the admin area. 108 108 */ 109 require_once plugin_dir_path( dirname( __FILE__ )) . 'admin/class-add-custom-fields-to-media-admin.php';109 require_once plugin_dir_path( __DIR__ ) . 'admin/class-add-custom-fields-to-media-admin.php'; 110 110 111 111 /** … … 113 113 * side of the site. 114 114 */ 115 require_once plugin_dir_path( dirname( __FILE__ )) . 'public/class-add-custom-fields-to-media-public.php';115 require_once plugin_dir_path( __DIR__ ) . 'public/class-add-custom-fields-to-media-public.php'; 116 116 117 117 $this->loader = new Add_Custom_Fields_To_Media_Loader(); -
add-custom-fields-to-media/trunk/includes/index.php
r3019065 r3319543 1 <?php // Silence is golden 1 <?php 2 /** 3 * Silence is golden. 4 * 5 * @package Add_Custom_Fields_To_Media 6 */ -
add-custom-fields-to-media/trunk/public/index.php
r3019065 r3319543 1 <?php // Silence is golden 1 <?php 2 /** 3 * Silence is golden. 4 * 5 * @package Add_Custom_Fields_To_Media 6 */ -
add-custom-fields-to-media/trunk/readme.txt
r3199991 r3319543 5 5 Donate link: https://profiles.wordpress.org/pattihis/ 6 6 Requires at least: 5.2 7 Tested up to: 6. 7.17 Tested up to: 6.8 8 8 Requires PHP: 7.2 9 Stable tag: 2.0. 29 Stable tag: 2.0.3 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 == Changelog == 65 65 66 = 2.0.3 = 67 * Full compliance with WordPress Coding Standards (PHPCS) 68 * Improved file docblocks and inline comments for standards 69 * Enhanced security and sanitization review 70 * Compatibility with WordPress v6.8 71 66 72 = 2.0.2 = 67 73 * Compatibility with WordPress v6.7
Note: See TracChangeset
for help on using the changeset viewer.