Changeset 3442435
- Timestamp:
- 01/19/2026 10:46:49 AM (7 weeks ago)
- Location:
- pure-metafields/trunk
- Files:
-
- 10 edited
-
README.txt (modified) (3 diffs)
-
admin/class-pure-metafields-admin.php (modified) (1 diff)
-
includes/class-pure-metafields-activator.php (modified) (2 diffs)
-
includes/class-pure-metafields-deactivator.php (modified) (2 diffs)
-
includes/class-pure-metafields-i18n.php (modified) (2 diffs)
-
includes/class-pure-metafields-loader.php (modified) (1 diff)
-
includes/class-pure-metafields.php (modified) (2 diffs)
-
metaboxes/fields/select.php (modified) (3 diffs)
-
pure-metafields.php (modified) (4 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pure-metafields/trunk/README.txt
r3394876 r3442435 5 5 Requires PHP: 8.0 6 6 Requires at least: 5.6 7 Tested up to: 6. 88 Stable tag: 1.4. 77 Tested up to: 6.9 8 Stable tag: 1.4.8 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 616 616 * Fix: Block Widget Bug Fixed. 617 617 618 = 1.4.6 =618 = 1.4.6 = 619 619 * Fix: Datepicker field fixed 620 620 … … 623 623 * Gallery drag drop issue fixed 624 624 625 = 1.4.8 = 626 * Compatible with wp - 6.9 627 625 628 == Upgrade Notice == 626 629 = 1.0.0 = -
pure-metafields/trunk/admin/class-pure-metafields-admin.php
r3392720 r3442435 5 5 * 6 6 * @link https://themepure.net 7 * @since 1. 3.17 * @since 1.4.8 8 8 * 9 9 * @package tpmeta -
pure-metafields/trunk/includes/class-pure-metafields-activator.php
r3345488 r3442435 5 5 * 6 6 * @link https://themepure.net 7 * @since 1. 3.17 * @since 1.4.8 8 8 * 9 9 * @package tpmeta … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1. 3.118 * @since 1.4.8 19 19 * @package tpmeta 20 20 * @subpackage tpmeta/includes -
pure-metafields/trunk/includes/class-pure-metafields-deactivator.php
r3345488 r3442435 5 5 * 6 6 * @link https://themepure.net 7 * @since 1. 3.17 * @since 1.4.8 8 8 * 9 9 * @package tpmeta … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1. 3.118 * @since 1.4.8 19 19 * @package tpmeta 20 20 * @subpackage tpmeta/includes 21 21 * @author ThemePure <basictheme400@gmail.com> 22 22 */ 23 class tpmeta_ aeactivator {23 class tpmeta_deactivator { 24 24 25 25 /** -
pure-metafields/trunk/includes/class-pure-metafields-i18n.php
r3345488 r3442435 8 8 * 9 9 * @link https://themepure.net 10 * @since 1. 3.110 * @since 1.4.8 11 11 * 12 12 * @package tpmeta … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1. 3.122 * @since 1.4.8 23 23 * @package tpmeta 24 24 * @subpackage tpmeta/includes -
pure-metafields/trunk/includes/class-pure-metafields-loader.php
r3345488 r3442435 5 5 * 6 6 * @link https://themepure.net 7 * @since 1. 3.17 * @since 1.4.8 8 8 * 9 9 * @package tpmeta -
pure-metafields/trunk/includes/class-pure-metafields.php
r3345488 r3442435 8 8 * 9 9 * @link https://themepure.net 10 * @since 1. 3.110 * @since 1.4.8 11 11 * 12 12 * @package tpmeta … … 23 23 * version of the plugin. 24 24 * 25 * @since 1. 3.125 * @since 1.4.8 26 26 * @package tpmeta 27 27 * @subpackage tpmeta/includes -
pure-metafields/trunk/metaboxes/fields/select.php
r3345488 r3442435 11 11 class="<?php echo esc_attr($id); ?> tm-select-field <?php echo isset($context)? esc_attr($context) : ''; ?>" 12 12 <?php echo (isset($multiple) && $multiple == true)? 'multiple' : ''; ?>> 13 <?php if (!isset($multiple) && $multiple == true): ?>13 <?php if ( empty( $multiple ) ) : ?> 14 14 <option value="<?php echo esc_html($default); ?>"><?php echo esc_html($placeholder)?? esc_html('Select...'); ?></option> 15 15 <?php endif; ?> … … 40 40 $array_object = []; 41 41 foreach($options as $key => $val){ 42 if(i n_array($key, $default)){42 if(is_array($default) && in_array($key, $default)){ 43 43 $array_object[$key] = $val; 44 44 } … … 64 64 <option 65 65 value="<?php echo esc_html($key); ?>" 66 <?php selected((!metadata_exists('post', $post->ID, $repeater_id)? in_array($key, $default?? array()) : ($default?? '' == $key) ), 1); ?>><?php echo esc_html($val); ?> 66 <?php 67 selected((!metadata_exists('post', $post->ID, $repeater_id)? in_array($key, (array) ($default?? array())) : (($default?? '') == $key) ), 1); ?>><?php echo esc_html($val); 68 ?> 67 69 </option> 68 70 <?php else: ?> -
pure-metafields/trunk/pure-metafields.php
r3394876 r3442435 9 9 * 10 10 * @link https://themepure.net 11 * @since 1.4. 711 * @since 1.4.8 12 12 * @package tpmeta 13 13 * … … 16 16 * Plugin URI: https://themepure.net/plugins/puremetafields/files/pure-metafields.zip 17 17 * Description: Plugin For Custom Metabox To Attach To Any Post Types. 18 * Version: 1.4. 718 * Version: 1.4.8 19 19 * Author: ThemePure 20 20 * Author URI: https://themepure.net … … 30 30 } 31 31 32 define( 'TPMETA_VERSION', '1.4. 7' );32 define( 'TPMETA_VERSION', '1.4.8' ); 33 33 define( 'TPMETA_PATH', plugin_dir_path(__FILE__) ); 34 34 define( 'TPMETA_URL', plugin_dir_url(__FILE__) ); … … 53 53 function tpmeta_deactivate_tp_metabox() { 54 54 require_once TPMETA_PATH . 'includes/class-pure-metafields-deactivator.php'; 55 tpmeta_ aeactivator::deactivate();55 tpmeta_deactivator::deactivate(); 56 56 } 57 57 register_deactivation_hook( __FILE__, 'tpmeta_deactivate_tp_metabox' ); -
pure-metafields/trunk/uninstall.php
r3345488 r3442435 21 21 * 22 22 * @link https://themepure.net 23 * @since 1. 3.123 * @since 1.4.8 24 24 * 25 25 * @package Tp_Metabox
Note: See TracChangeset
for help on using the changeset viewer.