@@ -15,9 +15,9 @@ discard block |
||
| 15 | 15 | * Get the bootstrap! If using the plugin from wordpress.org, REMOVE THIS! |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | -if ( file_exists( dirname( __FILE__ ) . '/cmb2/init.php' ) ) {
|
|
| 18 | +if ( file_exists( dirname( __FILE__ ) . '/cmb2/init.php' ) ) { |
|
| 19 | 19 | require_once dirname( __FILE__ ) . '/cmb2/init.php'; |
| 20 | -} elseif ( file_exists( dirname( __FILE__ ) . '/CMB2/init.php' ) ) {
|
|
| 20 | +} elseif ( file_exists( dirname( __FILE__ ) . '/CMB2/init.php' ) ) { |
|
| 21 | 21 | require_once dirname( __FILE__ ) . '/CMB2/init.php'; |
| 22 | 22 | } |
| 23 | 23 | |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | * |
| 29 | 29 | * @return bool True if metabox should show |
| 30 | 30 | */ |
| 31 | -function yourprefix_show_if_front_page( $cmb ) {
|
|
| 31 | +function yourprefix_show_if_front_page( $cmb ) { |
|
| 32 | 32 | // Don't show this metabox if it's not the front page template |
| 33 | - if ( $cmb->object_id !== get_option( 'page_on_front' ) ) {
|
|
| 33 | + if ( $cmb->object_id !== get_option( 'page_on_front' ) ) { |
|
| 34 | 34 | return false; |
| 35 | 35 | } |
| 36 | 36 | return true; |
@@ -43,9 +43,9 @@ discard block |
||
| 43 | 43 | * |
| 44 | 44 | * @return bool True if metabox should show |
| 45 | 45 | */ |
| 46 | -function yourprefix_hide_if_no_cats( $field ) {
|
|
| 46 | +function yourprefix_hide_if_no_cats( $field ) { |
|
| 47 | 47 | // Don't show this field if not in the cats category |
| 48 | - if ( ! has_tag( 'cats', $field->object_id ) ) {
|
|
| 48 | + if ( ! has_tag( 'cats', $field->object_id ) ) { |
|
| 49 | 49 | return false; |
| 50 | 50 | } |
| 51 | 51 | return true; |
@@ -57,10 +57,10 @@ discard block |
||
| 57 | 57 | * @param array $field_args Array of field parameters |
| 58 | 58 | * @param CMB2_Field object $field Field object |
| 59 | 59 | */ |
| 60 | -function yourprefix_before_row_if_2( $field_args, $field ) {
|
|
| 61 | - if ( 2 == $field->object_id ) {
|
|
| 60 | +function yourprefix_before_row_if_2( $field_args, $field ) { |
|
| 61 | + if ( 2 == $field->object_id ) { |
|
| 62 | 62 | echo '<p>Testing <b>"before_row"</b> parameter (on $post_id 2)</p>'; |
| 63 | - } else {
|
|
| 63 | + } else { |
|
| 64 | 64 | echo '<p>Testing <b>"before_row"</b> parameter (<b>NOT</b> on $post_id 2)</p>'; |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | /** |
| 70 | 70 | * Hook in and add a demo metabox. Can only happen on the 'cmb2_admin_init' or 'cmb2_init' hook. |
| 71 | 71 | */ |
| 72 | -function yourprefix_register_demo_metabox() {
|
|
| 72 | +function yourprefix_register_demo_metabox() { |
|
| 73 | 73 | $prefix = 'yourprefix_demo_'; |
| 74 | 74 | |
| 75 | 75 | /** |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | /** |
| 373 | 373 | * Hook in and add a metabox that only appears on the 'About' page |
| 374 | 374 | */ |
| 375 | -function yourprefix_register_about_page_metabox() {
|
|
| 375 | +function yourprefix_register_about_page_metabox() { |
|
| 376 | 376 | $prefix = 'yourprefix_about_'; |
| 377 | 377 | |
| 378 | 378 | /** |
@@ -401,7 +401,7 @@ discard block |
||
| 401 | 401 | /** |
| 402 | 402 | * Hook in and add a metabox to demonstrate repeatable grouped fields |
| 403 | 403 | */ |
| 404 | -function yourprefix_register_repeatable_group_field_metabox() {
|
|
| 404 | +function yourprefix_register_repeatable_group_field_metabox() { |
|
| 405 | 405 | $prefix = 'yourprefix_group_'; |
| 406 | 406 | |
| 407 | 407 | /** |
@@ -465,7 +465,7 @@ discard block |
||
| 465 | 465 | /** |
| 466 | 466 | * Hook in and add a metabox to add fields to the user profile pages |
| 467 | 467 | */ |
| 468 | -function yourprefix_register_user_profile_metabox() {
|
|
| 468 | +function yourprefix_register_user_profile_metabox() { |
|
| 469 | 469 | $prefix = 'yourprefix_user_'; |
| 470 | 470 | |
| 471 | 471 | /** |
@@ -535,7 +535,7 @@ discard block |
||
| 535 | 535 | /** |
| 536 | 536 | * Hook in and add a metabox to add fields to taxonomy terms |
| 537 | 537 | */ |
| 538 | -function yourprefix_register_taxonomy_metabox() {
|
|
| 538 | +function yourprefix_register_taxonomy_metabox() { |
|
| 539 | 539 | $prefix = 'yourprefix_term_'; |
| 540 | 540 | |
| 541 | 541 | /** |
@@ -577,7 +577,7 @@ discard block |
||
| 577 | 577 | /** |
| 578 | 578 | * Hook in and register a metabox to handle a theme options page |
| 579 | 579 | */ |
| 580 | -function yourprefix_register_theme_options_metabox() {
|
|
| 580 | +function yourprefix_register_theme_options_metabox() { |
|
| 581 | 581 | |
| 582 | 582 | $option_key = 'yourprefix_theme_options'; |
| 583 | 583 | |
@@ -110,7 +110,8 @@ |
||
| 110 | 110 | $current_offset = get_option( 'gmt_offset' ); |
| 111 | 111 | $tzstring = get_option( 'timezone_string' ); |
| 112 | 112 | |
| 113 | - if ( empty( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists |
|
| 113 | + if ( empty( $tzstring ) ) { |
|
| 114 | +// Create a UTC+- zone if no timezone string exists |
|
| 114 | 115 | if ( 0 == $current_offset ) { |
| 115 | 116 | $tzstring = 'UTC+0'; |
| 116 | 117 | } elseif ( $current_offset < 0 ) { |
@@ -1,46 +1,46 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @category WordPress_Plugin |
|
| 4 | - * @package CMB2 |
|
| 5 | - * @author WebDevStudios |
|
| 6 | - * @license GPL-2.0+ |
|
| 7 | - * @link http://webdevstudios.com |
|
| 8 | - * |
|
| 9 | - * Plugin Name: CMB2 |
|
| 10 | - * Plugin URI: https://github.com/WebDevStudios/CMB2 |
|
| 11 | - * Description: CMB2 will create metaboxes and forms with custom fields that will blow your mind. |
|
| 12 | - * Author: WebDevStudios |
|
| 13 | - * Author URI: http://webdevstudios.com |
|
| 14 | - * Contributors: WebDevStudios (@webdevstudios / webdevstudios.com) |
|
| 15 | - * Justin Sternberg (@jtsternberg / dsgnwrks.pro) |
|
| 16 | - * Jared Atchison (@jaredatch / jaredatchison.com) |
|
| 17 | - * Bill Erickson (@billerickson / billerickson.net) |
|
| 18 | - * Andrew Norcross (@norcross / andrewnorcross.com) |
|
| 19 | - * |
|
| 20 | - * Version: 2.1.2 |
|
| 21 | - * |
|
| 22 | - * Text Domain: cmb2 |
|
| 23 | - * Domain Path: languages |
|
| 24 | - * |
|
| 25 | - * |
|
| 26 | - * Released under the GPL license |
|
| 27 | - * http://www.opensource.org/licenses/gpl-license.php |
|
| 28 | - * |
|
| 29 | - * This is an add-on for WordPress |
|
| 30 | - * http://wordpress.org/ |
|
| 31 | - * |
|
| 32 | - * ********************************************************************** |
|
| 33 | - * This program is free software; you can redistribute it and/or modify |
|
| 34 | - * it under the terms of the GNU General Public License as published by |
|
| 35 | - * the Free Software Foundation; either version 2 of the License, or |
|
| 36 | - * (at your option) any later version. |
|
| 37 | - * |
|
| 38 | - * This program is distributed in the hope that it will be useful, |
|
| 39 | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 40 | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 41 | - * GNU General Public License for more details. |
|
| 42 | - * ********************************************************************** |
|
| 43 | - */ |
|
| 3 | + * @category WordPress_Plugin |
|
| 4 | + * @package CMB2 |
|
| 5 | + * @author WebDevStudios |
|
| 6 | + * @license GPL-2.0+ |
|
| 7 | + * @link http://webdevstudios.com |
|
| 8 | + * |
|
| 9 | + * Plugin Name: CMB2 |
|
| 10 | + * Plugin URI: https://github.com/WebDevStudios/CMB2 |
|
| 11 | + * Description: CMB2 will create metaboxes and forms with custom fields that will blow your mind. |
|
| 12 | + * Author: WebDevStudios |
|
| 13 | + * Author URI: http://webdevstudios.com |
|
| 14 | + * Contributors: WebDevStudios (@webdevstudios / webdevstudios.com) |
|
| 15 | + * Justin Sternberg (@jtsternberg / dsgnwrks.pro) |
|
| 16 | + * Jared Atchison (@jaredatch / jaredatchison.com) |
|
| 17 | + * Bill Erickson (@billerickson / billerickson.net) |
|
| 18 | + * Andrew Norcross (@norcross / andrewnorcross.com) |
|
| 19 | + * |
|
| 20 | + * Version: 2.1.2 |
|
| 21 | + * |
|
| 22 | + * Text Domain: cmb2 |
|
| 23 | + * Domain Path: languages |
|
| 24 | + * |
|
| 25 | + * |
|
| 26 | + * Released under the GPL license |
|
| 27 | + * http://www.opensource.org/licenses/gpl-license.php |
|
| 28 | + * |
|
| 29 | + * This is an add-on for WordPress |
|
| 30 | + * http://wordpress.org/ |
|
| 31 | + * |
|
| 32 | + * ********************************************************************** |
|
| 33 | + * This program is free software; you can redistribute it and/or modify |
|
| 34 | + * it under the terms of the GNU General Public License as published by |
|
| 35 | + * the Free Software Foundation; either version 2 of the License, or |
|
| 36 | + * (at your option) any later version. |
|
| 37 | + * |
|
| 38 | + * This program is distributed in the hope that it will be useful, |
|
| 39 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 40 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 41 | + * GNU General Public License for more details. |
|
| 42 | + * ********************************************************************** |
|
| 43 | + */ |
|
| 44 | 44 | |
| 45 | 45 | /************************************************************************ |
| 46 | 46 | You should not edit the code below |