Completed
Branch BUG-10381-asset-loading (189bf4)
by
unknown
13:54
created
strategies/display/EE_Select_Multiple_Display_Strategy.strategy.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 
6 7
 /**
7 8
  * Event Espresso
@@ -53,7 +54,7 @@  discard block
 block discarded – undo
53 54
 		EEH_HTML::indent( 1, 'select' );
54 55
 		if( EEH_Array::is_multi_dimensional_array( $this->_input->options() )){
55 56
 			throw new EE_Error(sprintf(__("Select multiple display strategy does not allow for nested arrays of options.", "event_espresso")));
56
-		}else{
57
+		} else{
57 58
 			$html.=$this->_display_options( $this->_input->options() );
58 59
 		}
59 60
 
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('No direct script access allowed');
5 5
 
6 6
 /**
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  *
26 26
  * ------------------------------------------------------------------------
27 27
  */
28
-class EE_Select_Multiple_Display_Strategy extends EE_Select_Display_Strategy{
28
+class EE_Select_Multiple_Display_Strategy extends EE_Select_Display_Strategy {
29 29
 
30 30
 	/**
31 31
 	 *
@@ -34,30 +34,30 @@  discard block
 block discarded – undo
34 34
 	 */
35 35
 	public function display() {
36 36
 
37
-		if( ! $this->_input instanceof EE_Form_Input_With_Options_Base){
37
+		if ( ! $this->_input instanceof EE_Form_Input_With_Options_Base) {
38 38
 			throw new EE_Error(sprintf(__('Cannot use Select Multiple Display Strategy with an input that doesn\'t have options', "event_espresso")));
39 39
 		}
40 40
 
41
-		$html = EEH_HTML::nl( 0, 'select' );
41
+		$html = EEH_HTML::nl(0, 'select');
42 42
 		$html .= '<select multiple';
43
-		$html .= ' id="' . $this->_input->html_id() . '"';
44
-		$html .= ' name="' . $this->_input->html_name() . '[]"';
45
-		$class = $this->_input->required() ? $this->_input->required_css_class() . ' ' . $this->_input->html_class() : $this->_input->html_class();
46
-		$html .= ' class="' . $class . '"';
43
+		$html .= ' id="'.$this->_input->html_id().'"';
44
+		$html .= ' name="'.$this->_input->html_name().'[]"';
45
+		$class = $this->_input->required() ? $this->_input->required_css_class().' '.$this->_input->html_class() : $this->_input->html_class();
46
+		$html .= ' class="'.$class.'"';
47 47
 		// add html5 required
48 48
 		$html .= $this->_input->required() ? ' required' : '';
49
-		$html .= ' style="' . $this->_input->html_style() . '"';
50
-		$html .= ' ' . $this->_input->other_html_attributes();
49
+		$html .= ' style="'.$this->_input->html_style().'"';
50
+		$html .= ' '.$this->_input->other_html_attributes();
51 51
 		$html .= '>';
52 52
 
53
-		EEH_HTML::indent( 1, 'select' );
54
-		if( EEH_Array::is_multi_dimensional_array( $this->_input->options() )){
53
+		EEH_HTML::indent(1, 'select');
54
+		if (EEH_Array::is_multi_dimensional_array($this->_input->options())) {
55 55
 			throw new EE_Error(sprintf(__("Select multiple display strategy does not allow for nested arrays of options.", "event_espresso")));
56
-		}else{
57
-			$html.=$this->_display_options( $this->_input->options() );
56
+		} else {
57
+			$html .= $this->_display_options($this->_input->options());
58 58
 		}
59 59
 
60
-		$html.= EEH_HTML::nl( -1, 'select' ) . "</select>";
60
+		$html .= EEH_HTML::nl( -1, 'select' )."</select>";
61 61
 		return $html;
62 62
 	}
63 63
 
@@ -68,12 +68,12 @@  discard block
 block discarded – undo
68 68
 	 * @param string|int $value unnormalized value option (string)
69 69
 	 * @return boolean
70 70
 	 */
71
-	protected function _check_if_option_selected( $value ){
71
+	protected function _check_if_option_selected($value) {
72 72
 		$selected_options = $this->_input->raw_value();
73
-		if ( empty( $selected_options )){
73
+		if (empty($selected_options)) {
74 74
 			return FALSE;
75 75
 		}
76
-		return in_array( $value, $selected_options ) ? TRUE : FALSE;
76
+		return in_array($value, $selected_options) ? TRUE : FALSE;
77 77
 	}
78 78
 
79 79
 
Please login to merge, or discard this patch.
form_sections/strategies/display/EE_Text_Area_Display_Strategy.strategy.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 		if( $input instanceof EE_Text_Area_Input ) {
11 11
 			$rows = $input->get_rows();
12 12
 			$cols = $input->get_cols();
13
-		}else{
13
+		} else{
14 14
 			$rows = 4;
15 15
 			$cols = 20;
16 16
 		}
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 
5 5
 
6 6
 	/**
7
-	*
8
-	* @return string of html to display the field
9
-	*/
7
+	 *
8
+	 * @return string of html to display the field
9
+	 */
10 10
 	function display(){
11 11
 		$input = $this->_input;
12 12
 		$raw_value = maybe_serialize($input->raw_value());
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-class EE_Text_Area_Display_Strategy extends EE_Display_Strategy_Base{
2
+class EE_Text_Area_Display_Strategy extends EE_Display_Strategy_Base {
3 3
 
4 4
 
5 5
 
@@ -7,32 +7,32 @@  discard block
 block discarded – undo
7 7
 	*
8 8
 	* @return string of html to display the field
9 9
 	*/
10
-	function display(){
10
+	function display() {
11 11
 		$input = $this->_input;
12 12
 		$raw_value = maybe_serialize($input->raw_value());
13
-		if( $input instanceof EE_Text_Area_Input ) {
13
+		if ($input instanceof EE_Text_Area_Input) {
14 14
 			$rows = $input->get_rows();
15 15
 			$cols = $input->get_cols();
16
-		}else{
16
+		} else {
17 17
 			$rows = 4;
18 18
 			$cols = 20;
19 19
 		}
20 20
 		$html = '<textarea';
21
-		$html .= ' id="' . $input->html_id() . '"';
22
-		$html .= ' name="' . $input->html_name() . '"';
23
-		$html .= ' class="' . $input->html_class() . '"' ;
24
-		$html .= ' style="' . $input->html_style() . '"';
21
+		$html .= ' id="'.$input->html_id().'"';
22
+		$html .= ' name="'.$input->html_name().'"';
23
+		$html .= ' class="'.$input->html_class().'"';
24
+		$html .= ' style="'.$input->html_style().'"';
25 25
 		$html .= $input->other_html_attributes();
26
-		$html .= ' rows= "' . $rows . '" cols="' . $cols . '">';
26
+		$html .= ' rows= "'.$rows.'" cols="'.$cols.'">';
27 27
 		$html .= $raw_value;
28 28
 		$html .= '</textarea>';
29
-		foreach ( $this->_input->get_validation_strategies() as $validation_strategy ) {
29
+		foreach ($this->_input->get_validation_strategies() as $validation_strategy) {
30 30
 			if (
31 31
 				$validation_strategy instanceof EE_Simple_HTML_Validation_Strategy
32 32
 				|| $validation_strategy instanceof EE_Full_HTML_Validation_Strategy
33 33
 			) {
34 34
 				$html .= sprintf(
35
-					__( '%1$s(allowed tags: %2$s)%3$s', 'event_espresso' ),
35
+					__('%1$s(allowed tags: %2$s)%3$s', 'event_espresso'),
36 36
 					'<p class="ee-question-desc">',
37 37
 					$validation_strategy->get_list_of_allowed_tags(),
38 38
 					'</p>'
Please login to merge, or discard this patch.
form_sections/strategies/layout/EE_Fieldset_Section_Layout.strategy.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); }
2 2
  /**
3
- *
4
- * Class EE_Fieldset_Section_Layout
5
- *
6
- * Description
7
- *
8
- * @package         Event Espresso
9
- * @subpackage    core
10
- * @author				Brent Christensen
11
- * @since		 	   $VID:$
12
- *
13
- */
3
+  *
4
+  * Class EE_Fieldset_Section_Layout
5
+  *
6
+  * Description
7
+  *
8
+  * @package         Event Espresso
9
+  * @subpackage    core
10
+  * @author				Brent Christensen
11
+  * @since		 	   $VID:$
12
+  *
13
+  */
14 14
 class EE_Fieldset_Section_Layout extends EE_Div_Per_Section_Layout{
15 15
 
16 16
 	/**
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @since		 	   $VID:$
12 12
  *
13 13
  */
14
-class EE_Fieldset_Section_Layout extends EE_Div_Per_Section_Layout{
14
+class EE_Fieldset_Section_Layout extends EE_Div_Per_Section_Layout {
15 15
 
16 16
 	/**
17 17
 	 * legend_class
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 	 *
33 33
 	 * @param array $options
34 34
 	 */
35
-	function __construct( $options = array() ){
36
-		foreach( $options as $key => $value ) {
37
-			$key = '_' . $key;
38
-			if ( property_exists( $this, $key )) {
35
+	function __construct($options = array()) {
36
+		foreach ($options as $key => $value) {
37
+			$key = '_'.$key;
38
+			if (property_exists($this, $key)) {
39 39
 				$this->{$key} = $value;
40 40
 			}
41 41
 		}
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @return string
48 48
 	 */
49 49
 	public function layout_form_begin() {
50
-		$html = EEH_HTML::nl(1) . '<fieldset id="' . $this->_form_section->html_id() . '" class="' . $this->_form_section->html_class() . '" style="' . $this->_form_section->html_style() . '">';
51
-		$html .= '<legend class="' . $this->legend_class() . '">' . $this->legend_text() . '</legend>';
50
+		$html = EEH_HTML::nl(1).'<fieldset id="'.$this->_form_section->html_id().'" class="'.$this->_form_section->html_class().'" style="'.$this->_form_section->html_style().'">';
51
+		$html .= '<legend class="'.$this->legend_class().'">'.$this->legend_text().'</legend>';
52 52
 		return $html;
53 53
 	}
54 54
 
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
 	 * closing div tag for a form
59 59
 	 * @return string
60 60
 	 */
61
-	public function layout_form_end(){
62
-		return EEH_HTML::nl(-1) . '</fieldset>';
61
+	public function layout_form_end() {
62
+		return EEH_HTML::nl(-1).'</fieldset>';
63 63
 	}
64 64
 
65 65
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	/**
68 68
 	 * @param string $legend_class
69 69
 	 */
70
-	public function set_legend_class( $legend_class ) {
70
+	public function set_legend_class($legend_class) {
71 71
 		$this->_legend_class = $legend_class;
72 72
 	}
73 73
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	/**
86 86
 	 * @param string $legend_text
87 87
 	 */
88
-	public function set_legend_text( $legend_text ) {
88
+	public function set_legend_text($legend_text) {
89 89
 		$this->_legend_text = $legend_text;
90 90
 	}
91 91
 
Please login to merge, or discard this patch.
strategies/normalization/EE_All_Caps_Normalization.strategy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @subpackage
9 9
  * @author				Mike Nelson
10 10
  */
11
-class EE_All_Caps_Normalization extends EE_Normalization_Strategy_Base{
11
+class EE_All_Caps_Normalization extends EE_Normalization_Strategy_Base {
12 12
 
13 13
 	/**
14 14
 	 * @param string $value_to_normalize
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	 * @param string $normalized_value
25 25
 	 * @return string
26 26
 	 */
27
-	public function unnormalize( $normalized_value ) {
27
+	public function unnormalize($normalized_value) {
28 28
 		return $normalized_value;
29 29
 	}
30 30
 
Please login to merge, or discard this patch.
strategies/normalization/EE_Boolean_Normalization.strategy.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,14 +10,14 @@  discard block
 block discarded – undo
10 10
  * @subpackage
11 11
  * @author				Mike Nelson
12 12
  */
13
-class EE_Boolean_Normalization extends EE_Normalization_Strategy_Base{
13
+class EE_Boolean_Normalization extends EE_Normalization_Strategy_Base {
14 14
 
15 15
 	/**
16 16
 	 * @param string | int | bool $value_to_normalize
17 17
 	 * @return boolean
18 18
 	 */
19
-	public function normalize( $value_to_normalize ) {
20
-		return filter_var( $value_to_normalize, FILTER_VALIDATE_BOOLEAN );
19
+	public function normalize($value_to_normalize) {
20
+		return filter_var($value_to_normalize, FILTER_VALIDATE_BOOLEAN);
21 21
 	}
22 22
 
23 23
 
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
 	 * @param boolean $normalized_value
28 28
 	 * @return string
29 29
 	 */
30
-	public function unnormalize( $normalized_value ) {
31
-		if( $normalized_value ){
30
+	public function unnormalize($normalized_value) {
31
+		if ($normalized_value) {
32 32
 			return '1';
33
-		}else{
33
+		} else {
34 34
 			return '0';
35 35
 		}
36 36
 	}
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	public function unnormalize( $normalized_value ) {
31 31
 		if( $normalized_value ){
32 32
 			return '1';
33
-		}else{
33
+		} else{
34 34
 			return '0';
35 35
 		}
36 36
 	}
Please login to merge, or discard this patch.
strategies/normalization/EE_Credit_Card_Normalization.strategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * @subpackage
7 7
  * @author				Mike Nelson
8 8
  */
9
-class EE_Credit_Card_Normalization extends EE_Text_Normalization{
9
+class EE_Credit_Card_Normalization extends EE_Text_Normalization {
10 10
 
11 11
 	/**
12 12
 	 * @param string $value_to_normalize
Please login to merge, or discard this patch.
form_sections/strategies/normalization/EE_Float_Normalization.strategy.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @subpackage
8 8
  * @author				Mike Nelson
9 9
  */
10
-class EE_Float_Normalization extends EE_Normalization_Strategy_Base{
10
+class EE_Float_Normalization extends EE_Normalization_Strategy_Base {
11 11
 
12 12
 	/**
13 13
 	 * @param string $value_to_normalize
@@ -15,34 +15,34 @@  discard block
 block discarded – undo
15 15
 	 * @throws \EE_Validation_Error
16 16
 	 */
17 17
 	public function normalize($value_to_normalize) {
18
-		if($value_to_normalize === NULL){
18
+		if ($value_to_normalize === NULL) {
19 19
 			return 0.00;
20 20
 		}
21 21
 		$normalized_value = '';
22
-		if(is_string($value_to_normalize)){
23
-			$normalized_value = str_replace(array(" ",EE_Config::instance()->currency->thsnds),"",$value_to_normalize);
22
+		if (is_string($value_to_normalize)) {
23
+			$normalized_value = str_replace(array(" ", EE_Config::instance()->currency->thsnds), "", $value_to_normalize);
24 24
 			//normalize it so periods are decimal marks (we don't care where you're from: we're talking PHP now)
25
-			$normalized_value = str_replace( EE_Config::instance()->currency->dec_mrk, ".", $normalized_value) ;
25
+			$normalized_value = str_replace(EE_Config::instance()->currency->dec_mrk, ".", $normalized_value);
26 26
 			//double-check there's absolutely nothing left on this string besides numbers
27
-			$normalized_value = preg_replace( "/[^0-9,. ]/", "", $normalized_value);
27
+			$normalized_value = preg_replace("/[^0-9,. ]/", "", $normalized_value);
28 28
 		}
29
-		if(strlen($value_to_normalize) > strlen($normalized_value)){
29
+		if (strlen($value_to_normalize) > strlen($normalized_value)) {
30 30
 			//find if this input has a float validation strategy
31 31
 			//in which case, use its message
32 32
 			$validation_error_message = NULL;
33
-			foreach( $this->_input->get_validation_strategies() as $validation_strategy ){
34
-				if( $validation_strategy instanceof EE_Float_Validation_Strategy ){
33
+			foreach ($this->_input->get_validation_strategies() as $validation_strategy) {
34
+				if ($validation_strategy instanceof EE_Float_Validation_Strategy) {
35 35
 					$validation_error_message = $validation_strategy->get_validation_error_message();
36 36
 				}
37 37
 			}
38 38
 			//this really shouldn't ever happen because fields with a float normalization strategy
39 39
 			//should also have a float validation strategy, but in case it doesnt use the default
40
-			if( ! $validation_error_message ){
40
+			if ( ! $validation_error_message) {
41 41
 				$default_validation_strategy = new EE_Float_Validation_Strategy();
42 42
 				$validation_error_message = $default_validation_strategy->get_validation_error_message();
43 43
 			}
44
-			throw new EE_Validation_Error( $validation_error_message, 'float_only' );
45
-		}else{
44
+			throw new EE_Validation_Error($validation_error_message, 'float_only');
45
+		} else {
46 46
 			return floatval($normalized_value);
47 47
 		}
48 48
 	}
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
 	 * @return string
54 54
 	 */
55 55
 	public function unnormalize($normalized_value) {
56
-		if( empty( $normalized_value ) ){
56
+		if (empty($normalized_value)) {
57 57
 			return '0.00';
58
-		}else{
58
+		} else {
59 59
 			return "$normalized_value";
60 60
 		}
61 61
 	}
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.
strategies/normalization/EE_Normalization_Strategy_Base.strategy.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @subpackage
7 7
  * @author				Mike Nelson
8 8
  */
9
-abstract class EE_Normalization_Strategy_Base extends EE_Form_Input_Strategy_Base{
9
+abstract class EE_Normalization_Strategy_Base extends EE_Form_Input_Strategy_Base {
10 10
 	/**
11 11
 	 * Takes the sanitized value for the input and casts it into the correct PHP type.
12 12
 	 * Eg, turns it into an int, float, string, boolean, datetime, etc. The validation
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
 	 * @param string $individual_item_to_normalize
30 30
 	 * @return mixed
31 31
 	 */
32
-	public function normalize_one( $individual_item_to_normalize ){
33
-		return $this->normalize( $individual_item_to_normalize );
32
+	public function normalize_one($individual_item_to_normalize) {
33
+		return $this->normalize($individual_item_to_normalize);
34 34
 	}
35 35
 
36 36
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 	 * @param $normalized_value
43 43
 	 * @return array|string the 'raw' value as used in the form, usually a string or array of strings.
44 44
 	 */
45
-	abstract function unnormalize( $normalized_value );
45
+	abstract function unnormalize($normalized_value);
46 46
 
47 47
 	/**
48 48
 	 * Normally the same as unnormalize, except it CANNOT be passed an array and
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
 	 * @param mixed $individual_item_to_unnormalize NOT an array
51 51
 	 * @return string
52 52
 	 */
53
-	public function unnormalize_one( $individual_item_to_unnormalize ) {
54
-		return $this->unnormalize( $individual_item_to_unnormalize );
53
+	public function unnormalize_one($individual_item_to_unnormalize) {
54
+		return $this->unnormalize($individual_item_to_unnormalize);
55 55
 	}
56 56
 }
57 57
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 	 * the value you would use in the html form (for a Yes_No_Input this could be '1' or '0').
41 41
 	 *
42 42
 	 * @param $normalized_value
43
-	 * @return array|string the 'raw' value as used in the form, usually a string or array of strings.
43
+	 * @return string the 'raw' value as used in the form, usually a string or array of strings.
44 44
 	 */
45 45
 	abstract function unnormalize( $normalized_value );
46 46
 
Please login to merge, or discard this patch.
form_sections/strategies/normalization/EE_Slug_Normalization.strategy.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @subpackage
8 8
  * @author				Mike Nelson
9 9
  */
10
-class EE_Slug_Normalization extends EE_Normalization_Strategy_Base{
10
+class EE_Slug_Normalization extends EE_Normalization_Strategy_Base {
11 11
 
12 12
 	/**
13 13
 	 * @param string $value_to_normalize
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 	 * @param string $normalized_value
23 23
 	 * @return string
24 24
 	 */
25
-	public function unnormalize( $normalized_value ) {
26
-		return str_replace( "-", " ", $normalized_value );
25
+	public function unnormalize($normalized_value) {
26
+		return str_replace("-", " ", $normalized_value);
27 27
 	}
28 28
 
29 29
 }
Please login to merge, or discard this patch.