Changeset 3469408
- Timestamp:
- 02/25/2026 11:51:09 AM (4 weeks ago)
- Location:
- pixtypes/trunk
- Files:
-
- 20 edited
-
class-pixtypes.php (modified) (1 diff)
-
core/defaults.php (modified) (1 diff)
-
features/metaboxes/cmb-field-select2-v2/cmb-field-select2.php (modified) (3 diffs)
-
features/metaboxes/cmb-field-select2/cmb-field-select2.php (modified) (3 diffs)
-
features/metaboxes/fields/gallery.php (modified) (1 diff)
-
features/metaboxes/fields/gmap_pins.php (modified) (1 diff)
-
features/metaboxes/fields/image.php (modified) (1 diff)
-
features/metaboxes/fields/pix_builder.php (modified) (1 diff)
-
features/metaboxes/fields/playlist.php (modified) (1 diff)
-
features/metaboxes/fields/portfolio-gallery.php (modified) (1 diff)
-
features/metaboxes/init.php (modified) (1 diff)
-
features/metaboxes/metaboxes.php (modified) (1 diff)
-
pixtypes.php (modified) (1 diff)
-
plugin-defaults.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
settings/hiddens.php (modified) (1 diff)
-
settings/post_types.php (modified) (1 diff)
-
settings/taxonomies.php (modified) (1 diff)
-
views/admin.php (modified) (1 diff)
-
views/public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pixtypes/trunk/class-pixtypes.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * PixTypes. -
pixtypes/trunk/core/defaults.php
r1744797 r3469408 1 <?php return array 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 3 4 return array 2 5 ( 3 6 'cleanup' => array -
pixtypes/trunk/features/metaboxes/cmb-field-select2-v2/cmb-field-select2.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /* 3 4 Plugin Name: CMB Field Type: Select2 … … 11 12 12 13 // Useful global constants 13 define( 'PW_SELECT2_v2_URL', plugin_dir_url( __FILE__ ) ); 14 if ( ! defined( 'PIXTYPES_SELECT2_V2_URL' ) ) { 15 define( 'PIXTYPES_SELECT2_V2_URL', plugin_dir_url( __FILE__ ) ); 16 } 14 17 15 18 /** … … 17 20 */ 18 21 function pw_select2_v2( $field, $meta ) { 19 wp_enqueue_script( 'pw-select2-field-js', P W_SELECT2_v2_URL . 'js/select2/select2.full.min.js', array( 'jquery-ui-sortable' ), '4.0.4' );20 wp_enqueue_script( 'pw-select2-field-init', P W_SELECT2_v2_URL . 'js/select2-init.js', array( 'pw-select2-field-js' ), null );21 wp_enqueue_style( 'pw-select2-field-css', P W_SELECT2_v2_URL . 'js/select2/select2.css', array(), '4.0.4' );22 wp_enqueue_style( 'pw-select2-field-mods', P W_SELECT2_v2_URL . 'css/select2.css', array(), null );22 wp_enqueue_script( 'pw-select2-field-js', PIXTYPES_SELECT2_V2_URL . 'js/select2/select2.full.min.js', array( 'jquery-ui-sortable' ), '4.0.4' ); 23 wp_enqueue_script( 'pw-select2-field-init', PIXTYPES_SELECT2_V2_URL . 'js/select2-init.js', array( 'pw-select2-field-js' ), null ); 24 wp_enqueue_style( 'pw-select2-field-css', PIXTYPES_SELECT2_V2_URL . 'js/select2/select2.css', array(), '4.0.4' ); 25 wp_enqueue_style( 'pw-select2-field-mods', PIXTYPES_SELECT2_V2_URL . 'css/select2.css', array(), null ); 23 26 24 27 call_user_func( $field['type'], $field, $meta ); -
pixtypes/trunk/features/metaboxes/cmb-field-select2/cmb-field-select2.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /* 3 4 Plugin Name: CMB Field Type: Select2 … … 11 12 12 13 // Useful global constants 13 define( 'PW_SELECT2_URL', plugin_dir_url( __FILE__ ) ); 14 if ( ! defined( 'PIXTYPES_SELECT2_URL' ) ) { 15 define( 'PIXTYPES_SELECT2_URL', plugin_dir_url( __FILE__ ) ); 16 } 14 17 15 18 /** … … 17 20 */ 18 21 function pw_select2( $field, $meta ) { 19 wp_enqueue_script( 'pw-select2-field-js', P W_SELECT2_URL . 'js/select2/select2.min.js', array( 'jquery-ui-sortable' ), '3.5.1' );20 wp_enqueue_script( 'pw-select2-field-init', P W_SELECT2_URL . 'js/select2-init.js', array( 'pw-select2-field-js' ), null );21 wp_enqueue_style( 'pw-select2-field-css', P W_SELECT2_URL . 'js/select2/select2.css', array(), '3.5.1' );22 wp_enqueue_style( 'pw-select2-field-mods', P W_SELECT2_URL . 'css/select2.css', array(), null );22 wp_enqueue_script( 'pw-select2-field-js', PIXTYPES_SELECT2_URL . 'js/select2/select2.min.js', array( 'jquery-ui-sortable' ), '3.5.1' ); 23 wp_enqueue_script( 'pw-select2-field-init', PIXTYPES_SELECT2_URL . 'js/select2-init.js', array( 'pw-select2-field-js' ), null ); 24 wp_enqueue_style( 'pw-select2-field-css', PIXTYPES_SELECT2_URL . 'js/select2/select2.css', array(), '3.5.1' ); 25 wp_enqueue_style( 'pw-select2-field-mods', PIXTYPES_SELECT2_URL . 'css/select2.css', array(), null ); 23 26 24 27 call_user_func( $field['type'], $field, $meta ); -
pixtypes/trunk/features/metaboxes/fields/gallery.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * Wordpress gallery procesing -
pixtypes/trunk/features/metaboxes/fields/gmap_pins.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * Wordpress gmap pins procesing -
pixtypes/trunk/features/metaboxes/fields/image.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * Wordpress single image procesing -
pixtypes/trunk/features/metaboxes/fields/pix_builder.php
r3469313 r3469408 1 <?php if ( ! defined( 'ABSPATH' ) ) exit; ?> 1 2 <div class="pix_builder_container hidden"> 2 3 <?php -
pixtypes/trunk/features/metaboxes/fields/playlist.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * Wordpress playlist procesing -
pixtypes/trunk/features/metaboxes/fields/portfolio-gallery.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 3 2 4 global $post; 3 5 -
pixtypes/trunk/features/metaboxes/init.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /* 3 4 Script Name: Custom Metaboxes and Fields -
pixtypes/trunk/features/metaboxes/metaboxes.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * Include and setup custom metaboxes and fields. -
pixtypes/trunk/pixtypes.php
r3469313 r3469408 3 3 * Plugin Name: PixTypes 4 4 * Plugin URI: https://wordpress.org/plugins/pixtypes/ 5 * Description: Custom post types and meta-boxes needed by your themes.5 * Description: Theme-driven post types, taxonomies & custom fields. 6 6 * Version: 2.0.0 7 7 * Author: Pixelgrade -
pixtypes/trunk/plugin-defaults.php
r1591155 r3469408 1 <?php return array 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 3 4 return array 2 5 ( 3 6 -
pixtypes/trunk/readme.txt
r3469313 r3469408 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 A WordPress plugin for managing custom post types and custom meta boxes from a theme.11 Theme-driven post types, taxonomies & custom fields. 12 12 13 13 == Description == -
pixtypes/trunk/settings/hiddens.php
r1591155 r3469408 1 <?php return array( 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 3 4 return array( 2 5 'type' => 'group', 3 6 'options' => array( -
pixtypes/trunk/settings/post_types.php
r1744797 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 3 2 4 // init display options with false 3 5 $display_option = array( -
pixtypes/trunk/settings/taxonomies.php
r1591155 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 3 4 // init display options with false -
pixtypes/trunk/views/admin.php
r3469313 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * Represents the view for the administration dashboard. -
pixtypes/trunk/views/public.php
r1115891 r3469408 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) exit; 2 3 /** 3 4 * Represents the view for the public-facing component of the plugin.
Note: See TracChangeset
for help on using the changeset viewer.