💦 FULL SET: Changeset/ - Full Gallery 2025

Changeset 1305192


Ignore:
Timestamp:
12/10/2015 10:57:49 AM (10 years ago)
Author:
obstschale
Message:

Version 0.2.5

Location:
dicentis-podcast/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • dicentis-podcast/trunk/CHANGELOG.md

    r1270958 r1305192  
    11# Changelog
     2
     3## 0.2.5
     4_Release Date: 2015-12-10_
     5
     6* [HOTFIX] Fix issue with term_meta in WP 4.4
     7
    28## 0.2.4
    39_Release Date: 2015-10-22_
  • dicentis-podcast/trunk/dicentis-podcast.php

    r1270958 r1305192  
    1010 * Plugin URI: http://dicentis.io
    1111 * Description: Manage multiple podcasts with ease in one plugin
    12  * Version: 0.2.4
     12 * Version: 0.2.5
    1313 * Author: Hans-Helge Buerger
    1414 * Author URI: http://hanshelgebuerger.de
  • dicentis-podcast/trunk/includes/controller/class-dipo-podcast-post-type.php

    r1215875 r1305192  
    3838
    3939        $this->register_podcast_hooks();
    40         $this->include_dependencies();
    41 
    42         // setup new tables by simple-term-meta
    43         // used for additional meta data in podcast_show taxonomy
    44         simple_term_meta_install();
     40
    4541    } // END public function __construct()
    4642
     
    260256
    261257    } // END public function register_podcast_taxonomy()
    262 
    263     public function podcast_show_metabox_add( $tag ) { ?>
    264         <div class="form-field">
    265             <label for="asset-url"><?php _e( 'Base URL', 'dicentis' ); ?></label>
    266             <input name="asset-url" id="asset-url" type="text" value="" size="40" aria-required="true" />
    267             <p class="description"><?php _e( 'This is the path / URL to the asset folder on your server.', 'dicentis' ); ?></p>
    268         </div>
    269     <?php }
    270 
    271     public function podcast_show_metabox_edit( $tag ) { ?>
    272         <tr class="form-field">
    273             <th scope="row" valign="top">
    274                 <label for="asset-url"><?php _e( 'Base URL', 'dicentis' ); ?></label>
    275             </th>
    276             <td>
    277                 <input name="asset-url" id="asset-url" type="text" value="<?php echo get_term_meta( $tag->term_id, 'asset-url', true  ); ?>" size="40" aria-require="true" />
    278                 <p class="description"><?php _e( 'This is the path / URL to the asset folder on your server.', 'dicentis' ); ?></p>
    279             </td>
    280         </tr>
    281     <?php }
    282 
    283     public function save_podcast_show_metadata( $term_id ) {
    284         if ( isset( $_POST['asset-url'] ) ) {
    285             update_term_meta( $term_id, 'asset-url', $_POST['asset-url'] );
    286         }
    287     }
    288258
    289259    /**
     
    733703    }
    734704
    735     private function include_dependencies() {
    736         require_once __DIR__ . '/../libraries/simple-term-meta.php';
    737     }
    738705} // END class Dipo_Podcast_Post_Type
  • dicentis-podcast/trunk/readme.txt

    r1270958 r1305192  
    44Donate link: http://bit.ly/hhb-paypal
    55Requires at least: 3.6
    6 Tested up to: 4.3
    7 Stable tag: 0.2.4
     6Tested up to: 4.4
     7Stable tag: 0.2.5
    88License: GPLv3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040== Changelog ==
     41
     42= 0.2.5 =
     43
     44* [HOTFIX] Fix issue with term_meta in WP 4.4
    4145
    4246= 0.2.4 =
Note: See TracChangeset for help on using the changeset viewer.