| @@ -12,7 +12,9 @@ | ||
| 12 | 12 | */ | 
| 13 | 13 | |
| 14 | 14 | // Exit if accessed directly | 
| 15 | -if ( ! defined( 'ABSPATH' ) ) exit; | |
| 15 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 16 | + exit; | |
| 17 | +} | |
| 16 | 18 | |
| 17 | 19 | /** | 
| 18 | 20 | * GravityView_Welcome Class | 
| @@ -270,7 +270,7 @@ discard block | ||
| 270 | 270 | * | 
| 271 | 271 | * @return void | 
| 272 | 272 | */ | 
| 273 | -	public function add_custom_column_content( $column_name = NULL, $post_id )	{ | |
| 273 | +	public function add_custom_column_content( $column_name = NULL, $post_id ) { | |
| 274 | 274 | |
| 275 | 275 | $output = ''; | 
| 276 | 276 | |
| @@ -429,7 +429,7 @@ discard block | ||
| 429 | 429 | */ | 
| 430 | 430 |  	function save_postdata( $post_id ) { | 
| 431 | 431 | |
| 432 | -		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){ | |
| 432 | +		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { | |
| 433 | 433 | return; | 
| 434 | 434 | } | 
| 435 | 435 | |
| @@ -116,7 +116,7 @@ discard block | ||
| 116 | 116 | |
| 117 | 117 | // Dequeue other jQuery styles even if no-conflict is off. | 
| 118 | 118 | // Terrible-looking tabs help no one. | 
| 119 | -		if( !empty( $wp_styles->registered ) )  { | |
| 119 | +		if( !empty( $wp_styles->registered ) ) { | |
| 120 | 120 |  			foreach ($wp_styles->registered as $key => $style) { | 
| 121 | 121 |  				if( preg_match( '/^(?:wp\-)?jquery/ism', $key ) ) { | 
| 122 | 122 | wp_dequeue_style( $key ); | 
| @@ -189,8 +189,8 @@ discard block | ||
| 189 | 189 | |
| 190 | 190 | //unregistering scripts | 
| 191 | 191 | $registered = array(); | 
| 192 | -		foreach( $wp_objects->registered as $handle => $script_registration ){ | |
| 193 | -			if( in_array( $handle, $required_objects ) ){ | |
| 192 | +		foreach( $wp_objects->registered as $handle => $script_registration ) { | |
| 193 | +			if( in_array( $handle, $required_objects ) ) { | |
| 194 | 194 | $registered[ $handle ] = $script_registration; | 
| 195 | 195 | } | 
| 196 | 196 | } | 
| @@ -49,7 +49,7 @@ | ||
| 49 | 49 | * | 
| 50 | 50 | * @return string If a custom field label isn't set, return the field label for the password field | 
| 51 | 51 | */ | 
| 52 | -	function field_label( $label = '', $field = array(), $form = array(), $entry = array() ){ | |
| 52 | +	function field_label( $label = '', $field = array(), $form = array(), $entry = array() ) { | |
| 53 | 53 | |
| 54 | 54 | // If using a custom label, no need to fetch the parent label | 
| 55 | 55 |  		if( ! is_numeric( $field['id'] ) || ! empty( $field['custom_label'] ) ) { | 
| @@ -324,7 +324,7 @@ discard block | ||
| 324 | 324 | } | 
| 325 | 325 | |
| 326 | 326 | |
| 327 | -				if( GFCommon::is_product_field( $field['type'] ) ){ | |
| 327 | +				if( GFCommon::is_product_field( $field['type'] ) ) { | |
| 328 | 328 | $has_product_fields = true; | 
| 329 | 329 | } | 
| 330 | 330 | |
| @@ -384,7 +384,7 @@ discard block | ||
| 384 | 384 | |
| 385 | 385 | $fields = array(); | 
| 386 | 386 | |
| 387 | -		foreach ( $extra_fields as $key => $field ){ | |
| 387 | +		foreach ( $extra_fields as $key => $field ) { | |
| 388 | 388 |  			if ( ! empty( $only_default_column ) && ! empty( $field['is_default_column'] ) ) { | 
| 389 | 389 | $fields[ $key ] = array( 'label' => $field['label'], 'type' => 'entry_meta' ); | 
| 390 | 390 | } | 
| @@ -978,7 +978,7 @@ discard block | ||
| 978 | 978 | $form = GFAPI::get_form( $form ); | 
| 979 | 979 | } | 
| 980 | 980 | |
| 981 | -		if ( class_exists( 'GFFormsModel' ) ){ | |
| 981 | +		if ( class_exists( 'GFFormsModel' ) ) { | |
| 982 | 982 | return GFFormsModel::get_field( $form, $field_id ); | 
| 983 | 983 |  		} else { | 
| 984 | 984 | return null; | 
| @@ -1025,7 +1025,7 @@ discard block | ||
| 1025 | 1025 | $shortcodes = array(); | 
| 1026 | 1026 | |
| 1027 | 1027 | preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER ); | 
| 1028 | -			if ( empty( $matches ) ){ | |
| 1028 | +			if ( empty( $matches ) ) { | |
| 1029 | 1029 | return false; | 
| 1030 | 1030 | } | 
| 1031 | 1031 | |
| @@ -50,7 +50,7 @@ | ||
| 50 | 50 | * | 
| 51 | 51 | * @return array Blacklist, with "total" added. If not edit context, original field blacklist. Otherwise, blacklist including total. | 
| 52 | 52 | */ | 
| 53 | -	public function add_to_blacklist( $blacklist = array(), $context = NULL  ){ | |
| 53 | +	public function add_to_blacklist( $blacklist = array(), $context = NULL  ) { | |
| 54 | 54 | |
| 55 | 55 |  		if( empty( $context ) || $context !== 'edit' ) { | 
| 56 | 56 | return $blacklist; | 
| @@ -36,8 +36,7 @@ discard block | ||
| 36 | 36 | * | 
| 37 | 37 | * @return void | 
| 38 | 38 | */ | 
| 39 | - public function emergency($message, array $context = array()) | |
| 40 | -    { | |
| 39 | +    public function emergency($message, array $context = array()) { | |
| 41 | 40 | $this->log(LogLevel::EMERGENCY, $message, $context); | 
| 42 | 41 | } | 
| 43 | 42 | |
| @@ -52,8 +51,7 @@ discard block | ||
| 52 | 51 | * | 
| 53 | 52 | * @return void | 
| 54 | 53 | */ | 
| 55 | - public function alert($message, array $context = array()) | |
| 56 | -    { | |
| 54 | +    public function alert($message, array $context = array()) { | |
| 57 | 55 | $this->log(LogLevel::ALERT, $message, $context); | 
| 58 | 56 | } | 
| 59 | 57 | |
| @@ -67,8 +65,7 @@ discard block | ||
| 67 | 65 | * | 
| 68 | 66 | * @return void | 
| 69 | 67 | */ | 
| 70 | - public function critical($message, array $context = array()) | |
| 71 | -    { | |
| 68 | +    public function critical($message, array $context = array()) { | |
| 72 | 69 | $this->log(LogLevel::CRITICAL, $message, $context); | 
| 73 | 70 | } | 
| 74 | 71 | |
| @@ -81,8 +78,7 @@ discard block | ||
| 81 | 78 | * | 
| 82 | 79 | * @return void | 
| 83 | 80 | */ | 
| 84 | - public function error($message, array $context = array()) | |
| 85 | -    { | |
| 81 | +    public function error($message, array $context = array()) { | |
| 86 | 82 | $this->log(LogLevel::ERROR, $message, $context); | 
| 87 | 83 | } | 
| 88 | 84 | |
| @@ -97,8 +93,7 @@ discard block | ||
| 97 | 93 | * | 
| 98 | 94 | * @return void | 
| 99 | 95 | */ | 
| 100 | - public function warning($message, array $context = array()) | |
| 101 | -    { | |
| 96 | +    public function warning($message, array $context = array()) { | |
| 102 | 97 | $this->log(LogLevel::WARNING, $message, $context); | 
| 103 | 98 | } | 
| 104 | 99 | |
| @@ -110,8 +105,7 @@ discard block | ||
| 110 | 105 | * | 
| 111 | 106 | * @return void | 
| 112 | 107 | */ | 
| 113 | - public function notice($message, array $context = array()) | |
| 114 | -    { | |
| 108 | +    public function notice($message, array $context = array()) { | |
| 115 | 109 | $this->log(LogLevel::NOTICE, $message, $context); | 
| 116 | 110 | } | 
| 117 | 111 | |
| @@ -125,8 +119,7 @@ discard block | ||
| 125 | 119 | * | 
| 126 | 120 | * @return void | 
| 127 | 121 | */ | 
| 128 | - public function info($message, array $context = array()) | |
| 129 | -    { | |
| 122 | +    public function info($message, array $context = array()) { | |
| 130 | 123 | $this->log(LogLevel::INFO, $message, $context); | 
| 131 | 124 | } | 
| 132 | 125 | |
| @@ -138,8 +131,7 @@ discard block | ||
| 138 | 131 | * | 
| 139 | 132 | * @return void | 
| 140 | 133 | */ | 
| 141 | - public function debug($message, array $context = array()) | |
| 142 | -    { | |
| 134 | +    public function debug($message, array $context = array()) { | |
| 143 | 135 | $this->log(LogLevel::DEBUG, $message, $context); | 
| 144 | 136 | } | 
| 145 | 137 | |
| @@ -2,7 +2,9 @@ | ||
| 2 | 2 | namespace GV; | 
| 3 | 3 | |
| 4 | 4 | // Exit if accessed directly | 
| 5 | -if ( ! defined( 'ABSPATH' ) ) exit; | |
| 5 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 6 | + exit; | |
| 7 | +} | |
| 6 | 8 | |
| 7 | 9 | /** | 
| 8 | 10 | * Allows plugins to use their own update API. | 
| @@ -174,7 +174,8 @@ discard block | ||
| 174 | 174 |  			if ( empty( $license_data ) ) { | 
| 175 | 175 |  				if ( $is_ajax ) { | 
| 176 | 176 | exit( json_encode( array() ) ); | 
| 177 | -				} else { // Non-ajax call | |
| 177 | +				} else { | |
| 178 | +// Non-ajax call | |
| 178 | 179 | return json_encode( array() ); | 
| 179 | 180 | } | 
| 180 | 181 | } | 
| @@ -207,7 +208,8 @@ discard block | ||
| 207 | 208 | |
| 208 | 209 |  		if ( $is_ajax ) { | 
| 209 | 210 | exit( $json ); | 
| 210 | -		} else { // Non-ajax call | |
| 211 | +		} else { | |
| 212 | +// Non-ajax call | |
| 211 | 213 | return ( Utils::_GET( 'format', Utils::get( $data, 'format' ) ) === 'object' ) ? $license_data : $json; | 
| 212 | 214 | } | 
| 213 | 215 | } |