Plugin Directory

Changeset 2237693


Ignore:
Timestamp:
02/03/2020 02:17:33 PM (6 years ago)
Author:
mrahmadawais
Message:

Update to version 1.0.4 from GitHub

Location:
debug-meta-data
Files:
10 added
4 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • debug-meta-data/tags/1.0.4/debug-meta-data.php

    r1765766 r2237693  
    33 * Plugin Name: Debug Meta Data
    44 * Description: Dumps all the meta data in a debug metabox for all the post types.
    5  * Plugin URI: https://AhmadAwais.com/
    6  * Author: Ahmad Awais & Maedah Batool
    7  * Author URI: https://AhmadAwais.com/
    8  * Version: 1.0.3
     5 * 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
    99 * License: GPL2
    1010 * Text Domain: DMD
     
    1414
    1515/*
    16     Copyright (C) Year  Ahmad Awais (http://ahmadawais.com/)
     16    Copyright (C) Year  Ahmad Awais (http://ahmadawais.com/)
    1717
    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.
     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.
    2121
    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.
     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.
    2626
    27     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
     27    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
    3030*/
    3131
     
    7171    foreach ( $get_post_custom_val as $name => $value ) {
    7272
    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 />';
    7979
    8080    }
     
    9494function dmd_dump_user_meta( $user ) {
    9595
    96     echo "<hr/><h2>User Meta Data</h2>";
     96    echo '<hr/><h2>User Meta Data</h2>';
    9797
    9898    // Current User's meta data
     
    101101    // Dump the data.
    102102    foreach ( $dmd_user_meta as $name => $value ) {
    103         echo "<strong>".$name."</strong>"."  =>  ";
     103        echo '<strong>' . $name . '</strong>' . '  =>  ';
    104104
    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 />';
    110110    }
    111111}
  • debug-meta-data/tags/1.0.4/readme.txt

    r1765766 r2237693  
    44Tags: debug, meta data, debug meta, debug metabox, meta data custom post types, print meta data
    55Requires at least: 4.0.0
    6 Tested up to: 5.0
    7 Stable tag: 1.0.3
     6Tested up to: 5.3
     7Stable tag: 1.0.4
    88License: GPL v2.0
    99
     
    4444== Changelog ==
    4545
    46 = 1.0.3 =
    47 - FIXED: Minor bug to make sure the correct post type gets through the `get_post_custom()`.
    4846
    49 = 1.0.1 & 1.0.2 =
    50 - Plugin header info corrected by removing trunk's copy from the tags folder.
     47[![📝](https://raw.githubusercontent.com/ahmadawais/stuff/master/images/git/log.png)](changelog.md)
    5148
    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[![📃](https://raw.githubusercontent.com/ahmadawais/stuff/master/images/git/license.png)](./../../)
     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  
    33 * Plugin Name: Debug Meta Data
    44 * Description: Dumps all the meta data in a debug metabox for all the post types.
    5  * Plugin URI: https://AhmadAwais.com/
    6  * Author: Ahmad Awais & Maedah Batool
    7  * Author URI: https://AhmadAwais.com/
    8  * Version: 1.0.3
     5 * 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
    99 * License: GPL2
    1010 * Text Domain: DMD
     
    1414
    1515/*
    16     Copyright (C) Year  Ahmad Awais (http://ahmadawais.com/)
     16    Copyright (C) Year  Ahmad Awais (http://ahmadawais.com/)
    1717
    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.
     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.
    2121
    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.
     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.
    2626
    27     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
     27    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
    3030*/
    3131
     
    7171    foreach ( $get_post_custom_val as $name => $value ) {
    7272
    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 />';
    7979
    8080    }
     
    9494function dmd_dump_user_meta( $user ) {
    9595
    96     echo "<hr/><h2>User Meta Data</h2>";
     96    echo '<hr/><h2>User Meta Data</h2>';
    9797
    9898    // Current User's meta data
     
    101101    // Dump the data.
    102102    foreach ( $dmd_user_meta as $name => $value ) {
    103         echo "<strong>".$name."</strong>"."  =>  ";
     103        echo '<strong>' . $name . '</strong>' . '  =>  ';
    104104
    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 />';
    110110    }
    111111}
  • debug-meta-data/trunk/readme.txt

    r1765766 r2237693  
    44Tags: debug, meta data, debug meta, debug metabox, meta data custom post types, print meta data
    55Requires at least: 4.0.0
    6 Tested up to: 5.0
    7 Stable tag: 1.0.3
     6Tested up to: 5.3
     7Stable tag: 1.0.4
    88License: GPL v2.0
    99
     
    4444== Changelog ==
    4545
    46 = 1.0.3 =
    47 - FIXED: Minor bug to make sure the correct post type gets through the `get_post_custom()`.
    4846
    49 = 1.0.1 & 1.0.2 =
    50 - Plugin header info corrected by removing trunk's copy from the tags folder.
     47[![📝](https://raw.githubusercontent.com/ahmadawais/stuff/master/images/git/log.png)](changelog.md)
    5148
    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[![📃](https://raw.githubusercontent.com/ahmadawais/stuff/master/images/git/license.png)](./../../)
     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.