@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -require_once( EE_MODELS . 'fields/EE_Foreign_Key_Field_Base.php'); |
|
3 | -class EE_Foreign_Key_Int_Field extends EE_Foreign_Key_Field_Base{ |
|
4 | - function get_wpdb_data_type(){ |
|
2 | +require_once(EE_MODELS.'fields/EE_Foreign_Key_Field_Base.php'); |
|
3 | +class EE_Foreign_Key_Int_Field extends EE_Foreign_Key_Field_Base { |
|
4 | + function get_wpdb_data_type() { |
|
5 | 5 | return '%d'; |
6 | 6 | } |
7 | 7 | /** |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | * @return int |
11 | 11 | */ |
12 | 12 | function prepare_for_set($value_inputted_for_field_on_model_object) { |
13 | - if($this->is_model_obj_of_type_pointed_to($value_inputted_for_field_on_model_object)){ |
|
13 | + if ($this->is_model_obj_of_type_pointed_to($value_inputted_for_field_on_model_object)) { |
|
14 | 14 | $value_inputted_for_field_on_model_object = $value_inputted_for_field_on_model_object->ID(); |
15 | 15 | } |
16 | 16 | return absint($value_inputted_for_field_on_model_object); |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -require_once( EE_MODELS . 'fields/EE_Foreign_Key_Field_Base.php'); |
|
3 | -class EE_Foreign_Key_String_Field extends EE_Foreign_Key_Field_Base{ |
|
4 | - function get_wpdb_data_type(){ |
|
2 | +require_once(EE_MODELS.'fields/EE_Foreign_Key_Field_Base.php'); |
|
3 | +class EE_Foreign_Key_String_Field extends EE_Foreign_Key_Field_Base { |
|
4 | + function get_wpdb_data_type() { |
|
5 | 5 | return '%s'; |
6 | 6 | } |
7 | 7 | /** |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | * @return string |
11 | 11 | */ |
12 | 12 | function prepare_for_set($value_inputted_for_field_on_model_object) { |
13 | - if($this->is_model_obj_of_type_pointed_to($value_inputted_for_field_on_model_object)){ |
|
13 | + if ($this->is_model_obj_of_type_pointed_to($value_inputted_for_field_on_model_object)) { |
|
14 | 14 | $value_inputted_for_field_on_model_object = $value_inputted_for_field_on_model_object->ID(); |
15 | 15 | } |
16 | 16 | return strtoupper(wp_strip_all_tags($value_inputted_for_field_on_model_object)); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | -require_once( EE_MODELS . 'fields/EE_Text_Field_Base.php' ); |
|
3 | -class EE_Full_HTML_Field extends EE_Text_Field_Base{ |
|
2 | +require_once(EE_MODELS.'fields/EE_Text_Field_Base.php'); |
|
3 | +class EE_Full_HTML_Field extends EE_Text_Field_Base { |
|
4 | 4 | |
5 | 5 | |
6 | 6 | /** |
@@ -10,11 +10,11 @@ discard block |
||
10 | 10 | * @return string |
11 | 11 | */ |
12 | 12 | function prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema = null) { |
13 | - if($schema =='form_input'){ |
|
13 | + if ($schema == 'form_input') { |
|
14 | 14 | return parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema); |
15 | - }elseif($schema == 'no_wpautop'){ |
|
15 | + }elseif ($schema == 'no_wpautop') { |
|
16 | 16 | return do_shortcode(parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema)); |
17 | - }else{ |
|
17 | + } else { |
|
18 | 18 | return wpautop(do_shortcode(parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema))); |
19 | 19 | } |
20 | 20 | } |
@@ -12,9 +12,9 @@ |
||
12 | 12 | function prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema = null) { |
13 | 13 | if($schema =='form_input'){ |
14 | 14 | return parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema); |
15 | - }elseif($schema == 'no_wpautop'){ |
|
15 | + } elseif($schema == 'no_wpautop'){ |
|
16 | 16 | return do_shortcode(parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema)); |
17 | - }else{ |
|
17 | + } else{ |
|
18 | 18 | return wpautop(do_shortcode(parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema))); |
19 | 19 | } |
20 | 20 | } |
@@ -7,32 +7,32 @@ discard block |
||
7 | 7 | * other than explicitly setting it to INF. |
8 | 8 | * Makes use of constant EE_INF_IN_DB set in espresso.php, and INF, which is a PHP constant definedin the ether |
9 | 9 | */ |
10 | -class EE_Infinite_Integer_Field extends EE_Model_Field_Base{ |
|
11 | - function get_wpdb_data_type(){ |
|
10 | +class EE_Infinite_Integer_Field extends EE_Model_Field_Base { |
|
11 | + function get_wpdb_data_type() { |
|
12 | 12 | return '%d'; |
13 | 13 | } |
14 | 14 | function prepare_for_use_in_db($value_of_field_on_model_object) { |
15 | - if($value_of_field_on_model_object === INF){ |
|
15 | + if ($value_of_field_on_model_object === INF) { |
|
16 | 16 | return EE_INF_IN_DB; |
17 | - }else{ |
|
17 | + } else { |
|
18 | 18 | return intval($value_of_field_on_model_object); |
19 | 19 | } |
20 | 20 | } |
21 | 21 | function prepare_for_set($value_inputted_for_field_on_model_object) { |
22 | - if($value_inputted_for_field_on_model_object === EE_INF_IN_DB || |
|
22 | + if ($value_inputted_for_field_on_model_object === EE_INF_IN_DB || |
|
23 | 23 | $value_inputted_for_field_on_model_object === INF || |
24 | 24 | $value_inputted_for_field_on_model_object === "INF" |
25 | - ){ |
|
25 | + ) { |
|
26 | 26 | return INF; |
27 | - }else{ |
|
27 | + } else { |
|
28 | 28 | return intval($value_inputted_for_field_on_model_object); |
29 | 29 | } |
30 | 30 | } |
31 | 31 | function prepare_for_set_from_db($value_inputted_for_field_on_model_object) { |
32 | 32 | $intval = intval($value_inputted_for_field_on_model_object); |
33 | - if($intval == EE_INF_IN_DB){ |
|
33 | + if ($intval == EE_INF_IN_DB) { |
|
34 | 34 | return INF; |
35 | - }else{ |
|
35 | + } else { |
|
36 | 36 | return $intval; |
37 | 37 | } |
38 | 38 | } |
@@ -45,9 +45,9 @@ discard block |
||
45 | 45 | * @param string $schema input, symbol, text; or any string you want to show if the value equals INF |
46 | 46 | * @return string |
47 | 47 | */ |
48 | - function prepare_for_pretty_echoing( $value_on_field_to_be_outputted, $schema = null ) { |
|
49 | - if( $value_on_field_to_be_outputted === INF ){ |
|
50 | - switch($schema){ |
|
48 | + function prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema = null) { |
|
49 | + if ($value_on_field_to_be_outputted === INF) { |
|
50 | + switch ($schema) { |
|
51 | 51 | case 'input': |
52 | 52 | return ''; |
53 | 53 | case 'symbol': |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | public function construction_finalized(){ |
93 | 93 | if( $this->_model instanceof EEM_Base && $this->_action ){ |
94 | 94 | return true; |
95 | - }else{ |
|
95 | + } else{ |
|
96 | 96 | return false; |
97 | 97 | } |
98 | 98 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | public function has_generated_cap_restrictions(){ |
126 | 126 | if( $this->_cap_restrictions_generated === false ){ |
127 | 127 | return false; |
128 | - }else{ |
|
128 | + } else{ |
|
129 | 129 | return true; |
130 | 130 | } |
131 | 131 | } |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | $caps_for_admin = EE_Registry::instance()->CAP->get_ee_capabilities( 'administrator' ); |
154 | 154 | if( in_array( self::get_cap_name( $model, $action ), $caps_for_admin ) ) { |
155 | 155 | return true; |
156 | - }else{ |
|
156 | + } else{ |
|
157 | 157 | return false; |
158 | 158 | } |
159 | 159 | } |
@@ -3,8 +3,8 @@ |
||
3 | 3 | /** |
4 | 4 | * Text_Fields is a base class for any fields which are have integer value. (Exception: foreign and private key fields. Wish PHP had multiple-inheritance for this...) |
5 | 5 | */ |
6 | -class EE_Integer_Field extends EE_Model_Field_Base{ |
|
7 | - function get_wpdb_data_type(){ |
|
6 | +class EE_Integer_Field extends EE_Model_Field_Base { |
|
7 | + function get_wpdb_data_type() { |
|
8 | 8 | return '%d'; |
9 | 9 | } |
10 | 10 | function prepare_for_set($value_inputted_for_field_on_model_object) { |
@@ -1,29 +1,28 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
2 | 2 | /** |
3 | - * Event Espresso |
|
4 | - * |
|
5 | - * Event Registration and Management Plugin for WordPress |
|
6 | - * |
|
7 | - * @ package Event Espresso |
|
8 | - * @ author Seth Shoultes |
|
9 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | - * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
11 | - * @ link http://www.eventespresso.com |
|
12 | - * @ version 4.0 |
|
13 | - * |
|
14 | - * ------------------------------------------------------------------------ |
|
15 | - */ |
|
3 | + * Event Espresso |
|
4 | + * |
|
5 | + * Event Registration and Management Plugin for WordPress |
|
6 | + * |
|
7 | + * @ package Event Espresso |
|
8 | + * @ author Seth Shoultes |
|
9 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | + * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
11 | + * @ link http://www.eventespresso.com |
|
12 | + * @ version 4.0 |
|
13 | + * |
|
14 | + * ------------------------------------------------------------------------ |
|
15 | + */ |
|
16 | 16 | /** |
17 | - * EE_Maybe_Serialized_Simple_HTML_Field |
|
18 | - * |
|
19 | - * @package Event Espresso |
|
20 | - * @subpackage includes/models/ |
|
21 | - * @author Michael Nelson |
|
22 | - |
|
23 | - * Model field for representing a column that CAN contain serialized text, or a regular string. |
|
24 | - * But either way, the string or the array's values can ONLY contain simple HTML tags. |
|
25 | - * If you want to allow Full HTML in the value, use EE_Maybe_Serialized_Text_Field |
|
26 | - */ |
|
17 | + * EE_Maybe_Serialized_Simple_HTML_Field |
|
18 | + * |
|
19 | + * @package Event Espresso |
|
20 | + * @subpackage includes/models/ |
|
21 | + * @author Michael Nelson |
|
22 | + * Model field for representing a column that CAN contain serialized text, or a regular string. |
|
23 | + * But either way, the string or the array's values can ONLY contain simple HTML tags. |
|
24 | + * If you want to allow Full HTML in the value, use EE_Maybe_Serialized_Text_Field |
|
25 | + */ |
|
27 | 26 | class EE_Maybe_Serialized_Simple_HTML_Field extends EE_Maybe_Serialized_Text_Field{ |
28 | 27 | /** |
29 | 28 | * removes all non-basic tags when setting |
@@ -24,14 +24,14 @@ discard block |
||
24 | 24 | * But either way, the string or the array's values can ONLY contain simple HTML tags. |
25 | 25 | * If you want to allow Full HTML in the value, use EE_Maybe_Serialized_Text_Field |
26 | 26 | */ |
27 | -class EE_Maybe_Serialized_Simple_HTML_Field extends EE_Maybe_Serialized_Text_Field{ |
|
27 | +class EE_Maybe_Serialized_Simple_HTML_Field extends EE_Maybe_Serialized_Text_Field { |
|
28 | 28 | /** |
29 | 29 | * removes all non-basic tags when setting |
30 | 30 | * @param string $value_inputted_for_field_on_model_object |
31 | 31 | * @return string |
32 | 32 | */ |
33 | 33 | function prepare_for_set($value_inputted_for_field_on_model_object) { |
34 | - return parent::prepare_for_set( $this->_remove_tags( $value_inputted_for_field_on_model_object ) ); |
|
34 | + return parent::prepare_for_set($this->_remove_tags($value_inputted_for_field_on_model_object)); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | * @param array|string $value |
40 | 40 | * @return array|string |
41 | 41 | */ |
42 | - protected function _remove_tags( $value ) { |
|
43 | - if( is_array( $value ) ) { |
|
44 | - foreach( $value as $key => $v ) { |
|
45 | - $value[ $key ] = $this->_remove_tags( $v ); |
|
42 | + protected function _remove_tags($value) { |
|
43 | + if (is_array($value)) { |
|
44 | + foreach ($value as $key => $v) { |
|
45 | + $value[$key] = $this->_remove_tags($v); |
|
46 | 46 | } |
47 | - }elseif( is_string( $value ) ) { |
|
48 | - $value = wp_kses("$value", $this->_get_allowed_tags() ); |
|
47 | + }elseif (is_string($value)) { |
|
48 | + $value = wp_kses("$value", $this->_get_allowed_tags()); |
|
49 | 49 | } |
50 | 50 | return $value; |
51 | 51 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * @return array|string |
57 | 57 | */ |
58 | 58 | function prepare_for_set_from_db($value_found_in_db_for_model_object) { |
59 | - return parent::prepare_for_set_from_db( $this->_remove_tags( $value_found_in_db_for_model_object ) ); |
|
59 | + return parent::prepare_for_set_from_db($this->_remove_tags($value_found_in_db_for_model_object)); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | |
@@ -65,12 +65,12 @@ discard block |
||
65 | 65 | * @global array $allowedtags |
66 | 66 | * @return array |
67 | 67 | */ |
68 | - function _get_allowed_tags(){ |
|
68 | + function _get_allowed_tags() { |
|
69 | 69 | global $allowedtags; |
70 | 70 | $tags_we_allow = $allowedtags; |
71 | - $tags_we_allow['ol']=array(); |
|
72 | - $tags_we_allow['ul']=array(); |
|
73 | - $tags_we_allow['li']=array(); |
|
74 | - return apply_filters( 'FHEE__EE_Maybe_Serialized_Simple_HTML_Field___get_allowed_tags', $tags_we_allow, $this ); |
|
71 | + $tags_we_allow['ol'] = array(); |
|
72 | + $tags_we_allow['ul'] = array(); |
|
73 | + $tags_we_allow['li'] = array(); |
|
74 | + return apply_filters('FHEE__EE_Maybe_Serialized_Simple_HTML_Field___get_allowed_tags', $tags_we_allow, $this); |
|
75 | 75 | } |
76 | 76 | } |
@@ -1,4 +1,6 @@ discard block |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * Event Espresso |
4 | 6 | * |
@@ -44,7 +46,7 @@ discard block |
||
44 | 46 | foreach( $value as $key => $v ) { |
45 | 47 | $value[ $key ] = $this->_remove_tags( $v ); |
46 | 48 | } |
47 | - }elseif( is_string( $value ) ) { |
|
49 | + } elseif( is_string( $value ) ) { |
|
48 | 50 | $value = wp_kses("$value", $this->_get_allowed_tags() ); |
49 | 51 | } |
50 | 52 | return $value; |
@@ -4,17 +4,17 @@ discard block |
||
4 | 4 | /** |
5 | 5 | * For a db text column, which can either be an array in PHP code or a string. |
6 | 6 | */ |
7 | -require_once( EE_MODELS . 'fields/EE_Text_Field_Base.php' ); |
|
8 | -class EE_Maybe_Serialized_Text_Field extends EE_Serialized_Text_Field{ |
|
7 | +require_once(EE_MODELS.'fields/EE_Text_Field_Base.php'); |
|
8 | +class EE_Maybe_Serialized_Text_Field extends EE_Serialized_Text_Field { |
|
9 | 9 | /** |
10 | 10 | * Value could be an array or a string. If its an array, serialize it. Otherwise, leave it as a string |
11 | 11 | * @param array|string $value_of_field_on_model_object |
12 | 12 | * @return string (possibly serialized) |
13 | 13 | */ |
14 | 14 | function prepare_for_use_in_db($value_of_field_on_model_object) { |
15 | - if(is_array($value_of_field_on_model_object)){ |
|
15 | + if (is_array($value_of_field_on_model_object)) { |
|
16 | 16 | return parent::prepare_for_use_in_db($value_of_field_on_model_object); |
17 | - }else{ |
|
17 | + } else { |
|
18 | 18 | return $value_of_field_on_model_object; |
19 | 19 | } |
20 | 20 | } |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | */ |
27 | 27 | function prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema = null) { |
28 | 28 | $pretty_value = null; |
29 | - if(is_array($value_on_field_to_be_outputted)){ |
|
29 | + if (is_array($value_on_field_to_be_outputted)) { |
|
30 | 30 | $pretty_value = parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema); |
31 | - }else{ |
|
31 | + } else { |
|
32 | 32 | $pretty_value = $value_on_field_to_be_outputted; |
33 | 33 | } |
34 | 34 | return $pretty_value; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $validation_error_message = $default_validation_strategy->get_validation_error_message(); |
43 | 43 | } |
44 | 44 | throw new EE_Validation_Error( $validation_error_message, 'float_only' ); |
45 | - }else{ |
|
45 | + } else{ |
|
46 | 46 | return floatval($normalized_value); |
47 | 47 | } |
48 | 48 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | public function unnormalize($normalized_value) { |
56 | 56 | if( empty( $normalized_value ) ){ |
57 | 57 | return '0.00'; |
58 | - }else{ |
|
58 | + } else{ |
|
59 | 59 | return "$normalized_value"; |
60 | 60 | } |
61 | 61 | } |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Text_Fields is a base class for any fields which are have float value. (Exception: foreign and private key fields. Wish PHP had multiple-inheritance for this...) |
|
4 | - */ |
|
3 | + * Text_Fields is a base class for any fields which are have float value. (Exception: foreign and private key fields. Wish PHP had multiple-inheritance for this...) |
|
4 | + */ |
|
5 | 5 | class EE_Money_Field extends EE_Float_Field{ |
6 | 6 | function get_wpdb_data_type(){ |
7 | 7 | return '%f'; |
@@ -2,8 +2,8 @@ discard block |
||
2 | 2 | /** |
3 | 3 | * Text_Fields is a base class for any fields which are have float value. (Exception: foreign and private key fields. Wish PHP had multiple-inheritance for this...) |
4 | 4 | */ |
5 | -class EE_Money_Field extends EE_Float_Field{ |
|
6 | - function get_wpdb_data_type(){ |
|
5 | +class EE_Money_Field extends EE_Float_Field { |
|
6 | + function get_wpdb_data_type() { |
|
7 | 7 | return '%f'; |
8 | 8 | } |
9 | 9 | /** |
@@ -15,21 +15,21 @@ discard block |
||
15 | 15 | * @param type $schema |
16 | 16 | * @return string |
17 | 17 | */ |
18 | - function prepare_for_pretty_echoing($value_on_field_to_be_outputted,$schema = null){ |
|
18 | + function prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema = null) { |
|
19 | 19 | $pretty_float = parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted); |
20 | 20 | |
21 | - if($schema == 'localized_float'){ |
|
21 | + if ($schema == 'localized_float') { |
|
22 | 22 | return $pretty_float; |
23 | 23 | } |
24 | - EE_Registry::instance()->load_helper( 'Template' ); |
|
25 | - if($schema == 'no_currency_code'){ |
|
24 | + EE_Registry::instance()->load_helper('Template'); |
|
25 | + if ($schema == 'no_currency_code') { |
|
26 | 26 | // echo "schema no currency!"; |
27 | 27 | $display_code = false; |
28 | - }else{ |
|
28 | + } else { |
|
29 | 29 | $display_code = true; |
30 | 30 | } |
31 | 31 | //we don't use the $pretty_float because format_currency will take care of it. |
32 | - return EEH_Template::format_currency( $value_on_field_to_be_outputted, false, $display_code ); |
|
32 | + return EEH_Template::format_currency($value_on_field_to_be_outputted, false, $display_code); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | //now it's a float-style string or number |
49 | 49 | $float_val = parent::prepare_for_set($value_inputted_for_field_on_model_object); |
50 | 50 | //round to the correctly number of decimal places for this currency |
51 | - $rounded_value = round($float_val, EE_Registry::instance()->CFG->currency->dec_plc); |
|
51 | + $rounded_value = round($float_val, EE_Registry::instance()->CFG->currency->dec_plc); |
|
52 | 52 | return $rounded_value; |
53 | 53 | } |
54 | 54 |
@@ -90,7 +90,7 @@ |
||
90 | 90 | //so in case teh IPN is arriving later, let's try to process an IPN! |
91 | 91 | if($_SERVER['REQUEST_METHOD'] == 'POST'){ |
92 | 92 | return $this->handle_ipn($_POST, $transaction ); |
93 | - }else{ |
|
93 | + } else{ |
|
94 | 94 | return parent::finalize_payment_for( $transaction ); |
95 | 95 | } |
96 | 96 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | -require_once( EE_MODELS . 'fields/EE_Text_Field_Base.php' ); |
|
3 | -class EE_Plain_Text_Field extends EE_Text_Field_Base{ |
|
2 | +require_once(EE_MODELS.'fields/EE_Text_Field_Base.php'); |
|
3 | +class EE_Plain_Text_Field extends EE_Text_Field_Base { |
|
4 | 4 | /** |
5 | 5 | * removes all tags when setting |
6 | 6 | * @param string $value_inputted_for_field_on_model_object |