Changeset 2237693
- Timestamp:
- 02/03/2020 02:17:33 PM (6 years ago)
- Location:
- debug-meta-data
- Files:
-
- 10 added
- 4 deleted
- 4 edited
- 1 copied
-
tags/1.0.4 (copied) (copied from debug-meta-data/trunk)
-
tags/1.0.4/CHANGELOG.md (deleted)
-
tags/1.0.4/LICENSE.md (deleted)
-
tags/1.0.4/ReadMe.MD (added)
-
tags/1.0.4/changelog.md (added)
-
tags/1.0.4/code-of-conduct.md (added)
-
tags/1.0.4/debug-meta-data.php (modified) (5 diffs)
-
tags/1.0.4/license.md (added)
-
tags/1.0.4/package.json (added)
-
tags/1.0.4/readme.txt (modified) (2 diffs)
-
trunk/CHANGELOG.md (deleted)
-
trunk/LICENSE.md (deleted)
-
trunk/ReadMe.MD (added)
-
trunk/changelog.md (added)
-
trunk/code-of-conduct.md (added)
-
trunk/debug-meta-data.php (modified) (5 diffs)
-
trunk/license.md (added)
-
trunk/package.json (added)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
debug-meta-data/tags/1.0.4/debug-meta-data.php
r1765766 r2237693 3 3 * Plugin Name: Debug Meta Data 4 4 * Description: Dumps all the meta data in a debug metabox for all the post types. 5 * Plugin URI: https:// AhmadAwais.com/6 * Author: A hmad Awais & Maedah Batool7 * Author URI: https:// AhmadAwais.com/8 * Version: 1.0. 35 * Plugin URI: https://github.com/AhmadAwais/debug-meta-data 6 * Author: Awais & Maedah 7 * Author URI: https://twitter.com/MrAhmadAwais/ 8 * Version: 1.0.4 9 9 * License: GPL2 10 10 * Text Domain: DMD … … 14 14 15 15 /* 16 Copyright (C) Year Ahmad Awais (http://ahmadawais.com/)16 Copyright (C) Year Ahmad Awais (http://ahmadawais.com/) 17 17 18 This program is free software; you can redistribute it and/or modify19 it under the terms of the GNU General Public License, version 2, as20 published by the Free Software Foundation.18 This program is free software; you can redistribute it and/or modify 19 it under the terms of the GNU General Public License, version 2, as 20 published by the Free Software Foundation. 21 21 22 This program is distributed in the hope that it will be useful,23 but WITHOUT ANY WARRANTY; without even the implied warranty of24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the25 GNU General Public License for more details.22 This program is distributed in the hope that it will be useful, 23 but WITHOUT ANY WARRANTY; without even the implied warranty of 24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 25 GNU General Public License for more details. 26 26 27 You should have received a copy of the GNU General Public License28 along with this program; if not, write to the Free Software29 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA27 You should have received a copy of the GNU General Public License 28 along with this program; if not, write to the Free Software 29 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 30 30 */ 31 31 … … 71 71 foreach ( $get_post_custom_val as $name => $value ) { 72 72 73 echo '<strong>' . $name . '</strong> => ';74 foreach ( $value as $name_array => $value_array ) {75 echo $name_array . ' => ' . $value_array;76 echo var_dump( $value_array );77 }78 echo '<br />';73 echo '<strong>' . $name . '</strong> => '; 74 foreach ( $value as $name_array => $value_array ) { 75 echo $name_array . ' => ' . $value_array; 76 echo var_dump( $value_array ); 77 } 78 echo '<br />'; 79 79 80 80 } … … 94 94 function dmd_dump_user_meta( $user ) { 95 95 96 echo "<hr/><h2>User Meta Data</h2>";96 echo '<hr/><h2>User Meta Data</h2>'; 97 97 98 98 // Current User's meta data … … 101 101 // Dump the data. 102 102 foreach ( $dmd_user_meta as $name => $value ) { 103 echo "<strong>".$name."</strong>"." => ";103 echo '<strong>' . $name . '</strong>' . ' => '; 104 104 105 foreach ( $value as $nameAr=>$valueAr ) {106 echo $nameAr . " => ". $valueAr;107 echo var_dump( $valueAr );108 }109 echo "<br />";105 foreach ( $value as $nameAr => $valueAr ) { 106 echo $nameAr . ' => ' . $valueAr; 107 echo var_dump( $valueAr ); 108 } 109 echo '<br />'; 110 110 } 111 111 } -
debug-meta-data/tags/1.0.4/readme.txt
r1765766 r2237693 4 4 Tags: debug, meta data, debug meta, debug metabox, meta data custom post types, print meta data 5 5 Requires at least: 4.0.0 6 Tested up to: 5. 07 Stable tag: 1.0. 36 Tested up to: 5.3 7 Stable tag: 1.0.4 8 8 License: GPL v2.0 9 9 … … 44 44 == Changelog == 45 45 46 = 1.0.3 =47 - FIXED: Minor bug to make sure the correct post type gets through the `get_post_custom()`.48 46 49 = 1.0.1 & 1.0.2 = 50 - Plugin header info corrected by removing trunk's copy from the tags folder. 47 [](changelog.md) 51 48 52 = 1.0.0 = 53 - First Commit. 49 ## Changelog 50 51 [❯ Read the changelog here →](https://github.com/ahmadawais/debug-meta-data/blob/master/changelog.md) 52 53 <br> 54 55 <small>**KEY**: `📦 NEW`, `👌 IMPROVE`, `🐛 FIX`, `📖 DOC`, `🚀 RELEASE`, and `✅ TEST` 56 57 > _I use [Emoji-log](https://github.com/ahmadawais/Emoji-Log), you should try it and simplify your git commits._ 58 59 </small> 60 61 <br> 62 63 [](./../../) 64 65 ## License & Conduct 66 67 - MIT © [Ahmad Awais](https://twitter.com/MrAhmadAwais/) 68 - [Code of Conduct](https://github.com/ahmadawais/debug-meta-data/blob/master/code-of-conduct.md) 69 70 <br> -
debug-meta-data/trunk/debug-meta-data.php
r1765766 r2237693 3 3 * Plugin Name: Debug Meta Data 4 4 * Description: Dumps all the meta data in a debug metabox for all the post types. 5 * Plugin URI: https:// AhmadAwais.com/6 * Author: A hmad Awais & Maedah Batool7 * Author URI: https:// AhmadAwais.com/8 * Version: 1.0. 35 * Plugin URI: https://github.com/AhmadAwais/debug-meta-data 6 * Author: Awais & Maedah 7 * Author URI: https://twitter.com/MrAhmadAwais/ 8 * Version: 1.0.4 9 9 * License: GPL2 10 10 * Text Domain: DMD … … 14 14 15 15 /* 16 Copyright (C) Year Ahmad Awais (http://ahmadawais.com/)16 Copyright (C) Year Ahmad Awais (http://ahmadawais.com/) 17 17 18 This program is free software; you can redistribute it and/or modify19 it under the terms of the GNU General Public License, version 2, as20 published by the Free Software Foundation.18 This program is free software; you can redistribute it and/or modify 19 it under the terms of the GNU General Public License, version 2, as 20 published by the Free Software Foundation. 21 21 22 This program is distributed in the hope that it will be useful,23 but WITHOUT ANY WARRANTY; without even the implied warranty of24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the25 GNU General Public License for more details.22 This program is distributed in the hope that it will be useful, 23 but WITHOUT ANY WARRANTY; without even the implied warranty of 24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 25 GNU General Public License for more details. 26 26 27 You should have received a copy of the GNU General Public License28 along with this program; if not, write to the Free Software29 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA27 You should have received a copy of the GNU General Public License 28 along with this program; if not, write to the Free Software 29 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 30 30 */ 31 31 … … 71 71 foreach ( $get_post_custom_val as $name => $value ) { 72 72 73 echo '<strong>' . $name . '</strong> => ';74 foreach ( $value as $name_array => $value_array ) {75 echo $name_array . ' => ' . $value_array;76 echo var_dump( $value_array );77 }78 echo '<br />';73 echo '<strong>' . $name . '</strong> => '; 74 foreach ( $value as $name_array => $value_array ) { 75 echo $name_array . ' => ' . $value_array; 76 echo var_dump( $value_array ); 77 } 78 echo '<br />'; 79 79 80 80 } … … 94 94 function dmd_dump_user_meta( $user ) { 95 95 96 echo "<hr/><h2>User Meta Data</h2>";96 echo '<hr/><h2>User Meta Data</h2>'; 97 97 98 98 // Current User's meta data … … 101 101 // Dump the data. 102 102 foreach ( $dmd_user_meta as $name => $value ) { 103 echo "<strong>".$name."</strong>"." => ";103 echo '<strong>' . $name . '</strong>' . ' => '; 104 104 105 foreach ( $value as $nameAr=>$valueAr ) {106 echo $nameAr . " => ". $valueAr;107 echo var_dump( $valueAr );108 }109 echo "<br />";105 foreach ( $value as $nameAr => $valueAr ) { 106 echo $nameAr . ' => ' . $valueAr; 107 echo var_dump( $valueAr ); 108 } 109 echo '<br />'; 110 110 } 111 111 } -
debug-meta-data/trunk/readme.txt
r1765766 r2237693 4 4 Tags: debug, meta data, debug meta, debug metabox, meta data custom post types, print meta data 5 5 Requires at least: 4.0.0 6 Tested up to: 5. 07 Stable tag: 1.0. 36 Tested up to: 5.3 7 Stable tag: 1.0.4 8 8 License: GPL v2.0 9 9 … … 44 44 == Changelog == 45 45 46 = 1.0.3 =47 - FIXED: Minor bug to make sure the correct post type gets through the `get_post_custom()`.48 46 49 = 1.0.1 & 1.0.2 = 50 - Plugin header info corrected by removing trunk's copy from the tags folder. 47 [](changelog.md) 51 48 52 = 1.0.0 = 53 - First Commit. 49 ## Changelog 50 51 [❯ Read the changelog here →](https://github.com/ahmadawais/debug-meta-data/blob/master/changelog.md) 52 53 <br> 54 55 <small>**KEY**: `📦 NEW`, `👌 IMPROVE`, `🐛 FIX`, `📖 DOC`, `🚀 RELEASE`, and `✅ TEST` 56 57 > _I use [Emoji-log](https://github.com/ahmadawais/Emoji-Log), you should try it and simplify your git commits._ 58 59 </small> 60 61 <br> 62 63 [](./../../) 64 65 ## License & Conduct 66 67 - MIT © [Ahmad Awais](https://twitter.com/MrAhmadAwais/) 68 - [Code of Conduct](https://github.com/ahmadawais/debug-meta-data/blob/master/code-of-conduct.md) 69 70 <br>
Note: See TracChangeset
for help on using the changeset viewer.