@@ -33,7 +33,7 @@ |
||
33 | 33 | $field = $this->_model->get_a_field_of_type('EE_Trashed_Flag_Field'); |
34 | 34 | if($field){ |
35 | 35 | return $field->get_name(); |
36 | - }else{ |
|
36 | + } else{ |
|
37 | 37 | throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?','event_espresso'),get_class($this),get_class($this))); |
38 | 38 | } |
39 | 39 | } |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | /* |
4 | 4 | * Strategy specifically for adding where conditions specific to CPT models. |
5 | 5 | */ |
6 | -class EE_Soft_Delete_Where_Conditions extends EE_Default_Where_Conditions{ |
|
6 | +class EE_Soft_Delete_Where_Conditions extends EE_Default_Where_Conditions { |
|
7 | 7 | /** |
8 | 8 | * Strategy for setting default soft delete where conditions. This strategy will find |
9 | 9 | * the field of type 'EE_Trashed_Flag_Field', and add a condition that it be FALSE on all queries involving |
@@ -12,16 +12,16 @@ discard block |
||
12 | 12 | * Eg, |
13 | 13 | * |
14 | 14 | */ |
15 | - function __construct(){} |
|
15 | + function __construct() {} |
|
16 | 16 | /** |
17 | 17 | * Gets the where default where conditions for a custom post type model |
18 | 18 | * @param string $model_relation_path. Eg, from Event to Payment, this should be "Registration.Transaction.Payment" |
19 | 19 | * @return array like EEM_Base::get_all's $query_params's index [0] (where conditions) |
20 | 20 | */ |
21 | - function get_default_where_conditions($model_relation_chain = null){ |
|
21 | + function get_default_where_conditions($model_relation_chain = null) { |
|
22 | 22 | //make sure there's a period at the end of $model_relation_chain |
23 | - if($model_relation_chain != '' && $model_relation_chain[strlen($model_relation_chain)-1] !='.'){ |
|
24 | - $model_relation_chain=$model_relation_chain."."; |
|
23 | + if ($model_relation_chain != '' && $model_relation_chain[strlen($model_relation_chain) - 1] != '.') { |
|
24 | + $model_relation_chain = $model_relation_chain."."; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | $trashed_field_name = $this->deleted_field_name(); |
@@ -35,12 +35,12 @@ discard block |
||
35 | 35 | * @return string |
36 | 36 | * @throws EE_Error |
37 | 37 | */ |
38 | - private function deleted_field_name(){ |
|
38 | + private function deleted_field_name() { |
|
39 | 39 | $field = $this->_model->get_a_field_of_type('EE_Trashed_Flag_Field'); |
40 | - if($field){ |
|
40 | + if ($field) { |
|
41 | 41 | return $field->get_name(); |
42 | - }else{ |
|
43 | - throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?','event_espresso'),get_class($this),get_class($this))); |
|
42 | + } else { |
|
43 | + throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?', 'event_espresso'), get_class($this), get_class($this))); |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | } |
47 | 47 | \ No newline at end of file |
@@ -61,10 +61,10 @@ |
||
61 | 61 | $first_item = reset($arr); |
62 | 62 | if(is_array($first_item)){ |
63 | 63 | return true;//yep, there's at least 2 levels to this array |
64 | - }else{ |
|
64 | + } else{ |
|
65 | 65 | return false;//nope, only 1 level |
66 | 66 | } |
67 | - }else{ |
|
67 | + } else{ |
|
68 | 68 | return false;//its not an array at all! |
69 | 69 | } |
70 | 70 | } |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('NO direct script access allowed'); } |
3 | 3 | |
4 | -require_once( EE_HELPERS . 'EEH_Base.helper.php' ); |
|
4 | +require_once(EE_HELPERS.'EEH_Base.helper.php'); |
|
5 | 5 | |
6 | 6 | /** |
7 | 7 | * EE_Array |
@@ -26,8 +26,8 @@ discard block |
||
26 | 26 | * @param array $array2 an array of objects |
27 | 27 | * @return array an array of objects found in array 1 that aren't found in array 2. |
28 | 28 | */ |
29 | - public static function object_array_diff( $array1, $array2 ) { |
|
30 | - return array_udiff( $array1, $array2, array('self', '_compare_objects' )); |
|
29 | + public static function object_array_diff($array1, $array2) { |
|
30 | + return array_udiff($array1, $array2, array('self', '_compare_objects')); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * @param array $arr |
36 | 36 | * @return boolean |
37 | 37 | */ |
38 | - public static function is_associative_array($arr){ |
|
38 | + public static function is_associative_array($arr) { |
|
39 | 39 | return array_keys($arr) !== range(0, count($arr) - 1); |
40 | 40 | } |
41 | 41 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @param array $arr |
46 | 46 | * @return mixed what ever is in the array |
47 | 47 | */ |
48 | - public static function get_one_item_from_array($arr){ |
|
48 | + public static function get_one_item_from_array($arr) { |
|
49 | 49 | $item = end($arr); |
50 | 50 | reset($arr); |
51 | 51 | return $item; |
@@ -56,16 +56,16 @@ discard block |
||
56 | 56 | * @param mixed $arr |
57 | 57 | * @return boolean |
58 | 58 | */ |
59 | - public static function is_multi_dimensional_array($arr){ |
|
60 | - if(is_array($arr)){ |
|
59 | + public static function is_multi_dimensional_array($arr) { |
|
60 | + if (is_array($arr)) { |
|
61 | 61 | $first_item = reset($arr); |
62 | - if(is_array($first_item)){ |
|
63 | - return true;//yep, there's at least 2 levels to this array |
|
64 | - }else{ |
|
65 | - return false;//nope, only 1 level |
|
62 | + if (is_array($first_item)) { |
|
63 | + return true; //yep, there's at least 2 levels to this array |
|
64 | + } else { |
|
65 | + return false; //nope, only 1 level |
|
66 | 66 | } |
67 | - }else{ |
|
68 | - return false;//its not an array at all! |
|
67 | + } else { |
|
68 | + return false; //its not an array at all! |
|
69 | 69 | } |
70 | 70 | } |
71 | 71 | |
@@ -76,8 +76,8 @@ discard block |
||
76 | 76 | * @param mixed $default |
77 | 77 | * @return mixed |
78 | 78 | */ |
79 | - public static function is_set( $arr, $index, $default ) { |
|
80 | - return isset( $arr[ $index ] ) ? $arr[ $index ] : $default; |
|
79 | + public static function is_set($arr, $index, $default) { |
|
80 | + return isset($arr[$index]) ? $arr[$index] : $default; |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | } //end EEH_Template class |
84 | 84 | \ No newline at end of file |
@@ -23,10 +23,10 @@ |
||
23 | 23 | private static $_instance = NULL; |
24 | 24 | |
25 | 25 | /** |
26 | - * $_autoloaders |
|
27 | - * @var array $_autoloaders |
|
28 | - * @access private |
|
29 | - */ |
|
26 | + * $_autoloaders |
|
27 | + * @var array $_autoloaders |
|
28 | + * @access private |
|
29 | + */ |
|
30 | 30 | private static $_autoloaders; |
31 | 31 | |
32 | 32 |
@@ -1,6 +1,7 @@ |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | +} |
|
4 | 5 | |
5 | 6 | /** |
6 | 7 | * EEH_Autoloader |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public static function instance() { |
40 | 40 | // check if class object is instantiated, and instantiated properly |
41 | - if ( ! self::$_instance instanceof EEH_Autoloader ) { |
|
41 | + if ( ! self::$_instance instanceof EEH_Autoloader) { |
|
42 | 42 | self::$_instance = new self(); |
43 | 43 | } |
44 | 44 | return self::$_instance; |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | private function __construct() { |
56 | 56 | self::$_autoloaders = array(); |
57 | 57 | $this->_register_custom_autoloaders(); |
58 | - spl_autoload_register( array( $this, 'espresso_autoloader' )); |
|
58 | + spl_autoload_register(array($this, 'espresso_autoloader')); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | * @internal param string $class_name - simple class name ie: session |
70 | 70 | * @return void |
71 | 71 | */ |
72 | - public static function espresso_autoloader( $class_name ) { |
|
73 | - if ( isset( self::$_autoloaders[ $class_name ] ) ) { |
|
74 | - require_once( self::$_autoloaders[ $class_name ] ); |
|
72 | + public static function espresso_autoloader($class_name) { |
|
73 | + if (isset(self::$_autoloaders[$class_name])) { |
|
74 | + require_once(self::$_autoloaders[$class_name]); |
|
75 | 75 | } |
76 | 76 | } |
77 | 77 | |
@@ -86,23 +86,23 @@ discard block |
||
86 | 86 | * @throws \EE_Error |
87 | 87 | * @return void |
88 | 88 | */ |
89 | - public static function register_autoloader( $class_paths, $read_check = true ) { |
|
90 | - $class_paths = is_array( $class_paths ) ? $class_paths : array( $class_paths ); |
|
91 | - foreach ( $class_paths as $class => $path ) { |
|
89 | + public static function register_autoloader($class_paths, $read_check = true) { |
|
90 | + $class_paths = is_array($class_paths) ? $class_paths : array($class_paths); |
|
91 | + foreach ($class_paths as $class => $path) { |
|
92 | 92 | // don't give up! you gotta... |
93 | 93 | // get some class |
94 | - if ( empty( $class )) { |
|
95 | - throw new EE_Error ( sprintf( __( 'No Class name was specified while registering an autoloader for the following path: %s.','event_espresso' ), $path )); |
|
94 | + if (empty($class)) { |
|
95 | + throw new EE_Error(sprintf(__('No Class name was specified while registering an autoloader for the following path: %s.', 'event_espresso'), $path)); |
|
96 | 96 | } |
97 | 97 | // one day you will find the path young grasshopper |
98 | - if ( empty( $path )) { |
|
99 | - throw new EE_Error ( sprintf( __( 'No path was specified while registering an autoloader for the %s class.','event_espresso' ), $class )); |
|
98 | + if (empty($path)) { |
|
99 | + throw new EE_Error(sprintf(__('No path was specified while registering an autoloader for the %s class.', 'event_espresso'), $class)); |
|
100 | 100 | } |
101 | 101 | // is file readable ? |
102 | - if ( $read_check && ! is_readable( $path )) { |
|
103 | - throw new EE_Error ( sprintf( __( 'The file for the %s class could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s','event_espresso' ), $class, $path )); |
|
102 | + if ($read_check && ! is_readable($path)) { |
|
103 | + throw new EE_Error(sprintf(__('The file for the %s class could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', 'event_espresso'), $class, $path)); |
|
104 | 104 | } |
105 | - self::$_autoloaders[ $class ] = str_replace( array( '\/', '/' ), DS, $path ); |
|
105 | + self::$_autoloaders[$class] = str_replace(array('\/', '/'), DS, $path); |
|
106 | 106 | } |
107 | 107 | } |
108 | 108 | |
@@ -129,9 +129,9 @@ discard block |
||
129 | 129 | * @return void |
130 | 130 | */ |
131 | 131 | private function _register_custom_autoloaders() { |
132 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder( EE_CORE ); |
|
133 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder( EE_MODELS, TRUE ); |
|
134 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder( EE_CLASSES ); |
|
132 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE); |
|
133 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_MODELS, TRUE); |
|
134 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CLASSES); |
|
135 | 135 | EEH_Autoloader::register_form_sections_autoloaders(); |
136 | 136 | } |
137 | 137 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * @return void |
146 | 146 | */ |
147 | 147 | public static function register_form_sections_autoloaders() { |
148 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder( EE_FORM_SECTIONS, TRUE ); |
|
148 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_FORM_SECTIONS, TRUE); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @return void |
159 | 159 | */ |
160 | 160 | public static function register_line_item_display_autoloaders() { |
161 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder( EE_LIBRARIES . 'line_item_display' , TRUE ); |
|
161 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES.'line_item_display', TRUE); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | |
@@ -173,31 +173,31 @@ discard block |
||
173 | 173 | * @param bool $recursive |
174 | 174 | * @return array |
175 | 175 | */ |
176 | - public static function register_autoloaders_for_each_file_in_folder( $folder, $recursive = FALSE ){ |
|
176 | + public static function register_autoloaders_for_each_file_in_folder($folder, $recursive = FALSE) { |
|
177 | 177 | // make sure last char is a / |
178 | - $folder .= $folder[strlen($folder)-1] != DS ? DS : ''; |
|
178 | + $folder .= $folder[strlen($folder) - 1] != DS ? DS : ''; |
|
179 | 179 | $class_to_filepath_map = array(); |
180 | - $exclude = array( 'index' ); |
|
180 | + $exclude = array('index'); |
|
181 | 181 | //get all the files in that folder that end in php |
182 | - $filepaths = glob( $folder.'*'); |
|
182 | + $filepaths = glob($folder.'*'); |
|
183 | 183 | |
184 | - if ( empty( $filepaths ) ) { |
|
184 | + if (empty($filepaths)) { |
|
185 | 185 | return; |
186 | 186 | } |
187 | 187 | |
188 | - foreach( $filepaths as $filepath ) { |
|
189 | - if ( substr( $filepath, -4, 4 ) == '.php' ) { |
|
190 | - $class_name = EEH_File::get_classname_from_filepath_with_standard_filename( $filepath ); |
|
191 | - if ( ! in_array( $class_name, $exclude )) { |
|
192 | - $class_to_filepath_map [ $class_name ] = str_replace( array( '\/', '/' ), DS, $filepath ); |
|
188 | + foreach ($filepaths as $filepath) { |
|
189 | + if (substr($filepath, -4, 4) == '.php') { |
|
190 | + $class_name = EEH_File::get_classname_from_filepath_with_standard_filename($filepath); |
|
191 | + if ( ! in_array($class_name, $exclude)) { |
|
192 | + $class_to_filepath_map [$class_name] = str_replace(array('\/', '/'), DS, $filepath); |
|
193 | 193 | } |
194 | - } else if ( $recursive ) { |
|
195 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder( $filepath, $recursive ); |
|
194 | + } else if ($recursive) { |
|
195 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder($filepath, $recursive); |
|
196 | 196 | } |
197 | 197 | } |
198 | 198 | |
199 | 199 | //we remove the necessity to do a is_readable() check via the $read_check flag because glob by nature will not return non_readable files/directories. |
200 | - self::register_autoloader($class_to_filepath_map, FALSE ); |
|
200 | + self::register_autoloader($class_to_filepath_map, FALSE); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | * @ override magic methods |
34 | 34 | * @ return void |
35 | 35 | */ |
36 | - public function __set($a,$b) { return FALSE; } |
|
36 | + public function __set($a, $b) { return FALSE; } |
|
37 | 37 | public function __get($a) { return FALSE; } |
38 | 38 | public function __isset($a) { return FALSE; } |
39 | 39 | public function __unset($a) { return FALSE; } |
@@ -1,4 +1,6 @@ |
||
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 | * |
@@ -35,35 +35,35 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public static function get_called_class() { |
37 | 37 | $backtrace = debug_backtrace(); |
38 | - if ( isset( $backtrace[2] ) && is_array( $backtrace[2] ) && isset( $backtrace[2]['class'] ) && ! isset( $backtrace[2]['file'] )) { |
|
38 | + if (isset($backtrace[2]) && is_array($backtrace[2]) && isset($backtrace[2]['class']) && ! isset($backtrace[2]['file'])) { |
|
39 | 39 | return $backtrace[2]['class']; |
40 | - } else if ( isset( $backtrace[3] ) && is_array( $backtrace[3] ) && isset( $backtrace[3]['class'] ) && ! isset( $backtrace[3]['file'] )) { |
|
40 | + } else if (isset($backtrace[3]) && is_array($backtrace[3]) && isset($backtrace[3]['class']) && ! isset($backtrace[3]['file'])) { |
|
41 | 41 | return $backtrace[3]['class']; |
42 | - } else if ( isset( $backtrace[2] ) && is_array( $backtrace[2] ) && isset( $backtrace[2]['file'] ) && isset( $backtrace[2]['line'] )) { |
|
43 | - if ( self::$file_line == $backtrace[2]['file'] . $backtrace[2]['line'] ) { |
|
42 | + } else if (isset($backtrace[2]) && is_array($backtrace[2]) && isset($backtrace[2]['file']) && isset($backtrace[2]['line'])) { |
|
43 | + if (self::$file_line == $backtrace[2]['file'].$backtrace[2]['line']) { |
|
44 | 44 | self::$i++; |
45 | 45 | } else { |
46 | 46 | self::$i = 0; |
47 | - self::$file_line = $backtrace[2]['file'] . $backtrace[2]['line']; |
|
47 | + self::$file_line = $backtrace[2]['file'].$backtrace[2]['line']; |
|
48 | 48 | } |
49 | 49 | // was class method called via call_user_func ? |
50 | - if ( $backtrace[2]['function'] == 'call_user_func' && isset( $backtrace[2]['args'] ) && is_array( $backtrace[2]['args'] )){ |
|
51 | - if ( isset( $backtrace[2]['args'][0] ) && isset( $backtrace[2]['args'][0][0] )) { |
|
50 | + if ($backtrace[2]['function'] == 'call_user_func' && isset($backtrace[2]['args']) && is_array($backtrace[2]['args'])) { |
|
51 | + if (isset($backtrace[2]['args'][0]) && isset($backtrace[2]['args'][0][0])) { |
|
52 | 52 | $called_class = $backtrace[2]['args'][0][0]; |
53 | 53 | // is it an EE function ? |
54 | - if ( strpos( $called_class, 'EE' ) === 0 ) { |
|
55 | - $prefix_chars = strpos( $called_class, '_' ) + 1; |
|
56 | - $prefix = substr( $called_class, 0, $prefix_chars ); |
|
57 | - $classname = substr( $called_class, $prefix_chars, strlen( $called_class )); |
|
58 | - $classname = $prefix . str_replace( ' ', '_', ucwords( strtolower( str_replace( '_', ' ', $classname )))); |
|
54 | + if (strpos($called_class, 'EE') === 0) { |
|
55 | + $prefix_chars = strpos($called_class, '_') + 1; |
|
56 | + $prefix = substr($called_class, 0, $prefix_chars); |
|
57 | + $classname = substr($called_class, $prefix_chars, strlen($called_class)); |
|
58 | + $classname = $prefix.str_replace(' ', '_', ucwords(strtolower(str_replace('_', ' ', $classname)))); |
|
59 | 59 | return $classname; |
60 | 60 | } |
61 | 61 | } |
62 | 62 | } else { |
63 | - $lines = file( $backtrace[2]['file'] ); |
|
64 | - preg_match_all( '/([a-zA-Z0-9\_]+)::' . $backtrace[2]['function'] . '/', $lines[$backtrace[2]['line']-1], $matches ); |
|
65 | - if ( isset( $matches[1] ) && isset( $matches[1][ self::$i ] )) { |
|
66 | - return $matches[1][ self::$i ]; |
|
63 | + $lines = file($backtrace[2]['file']); |
|
64 | + preg_match_all('/([a-zA-Z0-9\_]+)::'.$backtrace[2]['function'].'/', $lines[$backtrace[2]['line'] - 1], $matches); |
|
65 | + if (isset($matches[1]) && isset($matches[1][self::$i])) { |
|
66 | + return $matches[1][self::$i]; |
|
67 | 67 | } |
68 | 68 | } |
69 | 69 | } |
@@ -80,22 +80,22 @@ discard block |
||
80 | 80 | * @param string $hook |
81 | 81 | * @return array |
82 | 82 | */ |
83 | - public static function get_class_names_for_all_callbacks_on_hook( $hook = NULL ) { |
|
83 | + public static function get_class_names_for_all_callbacks_on_hook($hook = NULL) { |
|
84 | 84 | global $wp_filter; |
85 | 85 | $class_names = array(); |
86 | 86 | // are any callbacks registered for this hook ? |
87 | - if ( isset( $wp_filter[ $hook ] )) { |
|
87 | + if (isset($wp_filter[$hook])) { |
|
88 | 88 | // loop thru all of the callbacks attached to the deprecated hookpoint |
89 | - foreach( $wp_filter[ $hook ] as $priority ) { |
|
90 | - foreach( $priority as $callback ) { |
|
89 | + foreach ($wp_filter[$hook] as $priority) { |
|
90 | + foreach ($priority as $callback) { |
|
91 | 91 | // is the callback a non-static class method ? |
92 | - if ( isset( $callback['function'] ) && is_array( $callback['function'] )) { |
|
93 | - if ( isset( $callback['function'][0] ) && is_object( $callback['function'][0] )) { |
|
94 | - $class_names[] = get_class( $callback['function'][0] ); |
|
92 | + if (isset($callback['function']) && is_array($callback['function'])) { |
|
93 | + if (isset($callback['function'][0]) && is_object($callback['function'][0])) { |
|
94 | + $class_names[] = get_class($callback['function'][0]); |
|
95 | 95 | } |
96 | 96 | // test for static method |
97 | - } else if ( strpos( $callback['function'], '::' ) !== FALSE ) { |
|
98 | - $class = explode( '::', $callback['function'] ); |
|
97 | + } else if (strpos($callback['function'], '::') !== FALSE) { |
|
98 | + $class = explode('::', $callback['function']); |
|
99 | 99 | $class_names[] = $class[0]; |
100 | 100 | } else { |
101 | 101 | // just a function |
@@ -116,24 +116,24 @@ discard block |
||
116 | 116 | * @param string $property |
117 | 117 | * @return boolean |
118 | 118 | */ |
119 | - public static function has_property( $class = NULL, $property = NULL ) { |
|
119 | + public static function has_property($class = NULL, $property = NULL) { |
|
120 | 120 | // if $class or $property don't exist, then get out, cuz that would be like... fatal dude |
121 | - if ( empty( $class ) || empty( $property )) { |
|
121 | + if (empty($class) || empty($property)) { |
|
122 | 122 | return FALSE; |
123 | 123 | } |
124 | 124 | // if your hosting company doesn't cut the mustard |
125 | - if ( version_compare( PHP_VERSION, '5.3.0' ) < 0 ) { |
|
125 | + if (version_compare(PHP_VERSION, '5.3.0') < 0) { |
|
126 | 126 | // just in case $class is an actual instantiated object |
127 | - if ( is_object( $class )) { |
|
128 | - return isset( $class->$property ) ? TRUE : FALSE; |
|
127 | + if (is_object($class)) { |
|
128 | + return isset($class->$property) ? TRUE : FALSE; |
|
129 | 129 | } else { |
130 | 130 | // use reflection for < PHP 5.3 to get details using just the class name |
131 | - $reflector = new ReflectionClass( $class ); |
|
132 | - return $reflector->hasProperty( $property ); |
|
131 | + $reflector = new ReflectionClass($class); |
|
132 | + return $reflector->hasProperty($property); |
|
133 | 133 | } |
134 | 134 | } else { |
135 | 135 | // or try regular property exists method which works as expected in PHP 5.3+ |
136 | - return property_exists( $class, $property ); |
|
136 | + return property_exists($class, $property); |
|
137 | 137 | } |
138 | 138 | } |
139 | 139 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | |
144 | 144 | |
145 | 145 | // if PHP version < 5.3 |
146 | -if ( ! function_exists( 'get_called_class' )) { |
|
146 | +if ( ! function_exists('get_called_class')) { |
|
147 | 147 | /** |
148 | 148 | * @return bool|string |
149 | 149 | */ |
@@ -1,4 +1,6 @@ |
||
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 | * |
@@ -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 | * Class EEH_Debug_Tools |
4 | 6 | * |
@@ -122,8 +124,7 @@ discard block |
||
122 | 124 | return; |
123 | 125 | } |
124 | 126 | echo '<h5>For Tag: '. $tag .'</h5>'; |
125 | - } |
|
126 | - else { |
|
127 | + } else { |
|
127 | 128 | $hook=$wp_filter; |
128 | 129 | ksort( $hook ); |
129 | 130 | } |
@@ -183,7 +184,7 @@ discard block |
||
183 | 184 | if( isset( $this->_start_times[ $timer_name ] ) ){ |
184 | 185 | $start_time = $this->_start_times[ $timer_name ]; |
185 | 186 | unset( $this->_start_times[ $timer_name ] ); |
186 | - }else{ |
|
187 | + } else{ |
|
187 | 188 | $start_time = array_pop( $this->_start_times ); |
188 | 189 | } |
189 | 190 | $total_time = microtime( TRUE ) - $start_time; |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * @since 4.0 |
9 | 9 | * |
10 | 10 | */ |
11 | -class EEH_Debug_Tools{ |
|
11 | +class EEH_Debug_Tools { |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * instance of the EEH_Autoloader object |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public static function instance() { |
37 | 37 | // check if class object is instantiated, and instantiated properly |
38 | - if ( ! self::$_instance instanceof EEH_Debug_Tools ) { |
|
38 | + if ( ! self::$_instance instanceof EEH_Debug_Tools) { |
|
39 | 39 | self::$_instance = new self(); |
40 | 40 | } |
41 | 41 | return self::$_instance; |
@@ -51,19 +51,19 @@ discard block |
||
51 | 51 | */ |
52 | 52 | private function __construct() { |
53 | 53 | // load Kint PHP debugging library |
54 | - if ( ! class_exists( 'Kint' ) && file_exists( EE_PLUGIN_DIR_PATH . 'tests' . DS . 'kint' . DS . 'Kint.class.php' )){ |
|
54 | + if ( ! class_exists('Kint') && file_exists(EE_PLUGIN_DIR_PATH.'tests'.DS.'kint'.DS.'Kint.class.php')) { |
|
55 | 55 | // despite EE4 having a check for an existing copy of the Kint debugging class, |
56 | 56 | // if another plugin was loaded AFTER EE4 and they did NOT perform a similar check, |
57 | 57 | // then hilarity would ensue as PHP throws a "Cannot redeclare class Kint" error |
58 | 58 | // so we've moved it to our test folder so that it is not included with production releases |
59 | 59 | // plz use https://wordpress.org/plugins/kint-debugger/ if testing production versions of EE |
60 | - require_once( EE_PLUGIN_DIR_PATH . 'tests' . DS . 'kint' . DS . 'Kint.class.php' ); |
|
60 | + require_once(EE_PLUGIN_DIR_PATH.'tests'.DS.'kint'.DS.'Kint.class.php'); |
|
61 | 61 | } |
62 | - if ( ! defined('DOING_AJAX') || ! isset( $_REQUEST['noheader'] ) || $_REQUEST['noheader'] != 'true' || ! isset( $_REQUEST['TB_iframe'] )) { |
|
62 | + if ( ! defined('DOING_AJAX') || ! isset($_REQUEST['noheader']) || $_REQUEST['noheader'] != 'true' || ! isset($_REQUEST['TB_iframe'])) { |
|
63 | 63 | //add_action( 'shutdown', array($this,'espresso_session_footer_dump') ); |
64 | 64 | } |
65 | - add_action( 'activated_plugin', array( 'EEH_Debug_Tools', 'ee_plugin_activation_errors' )); |
|
66 | - add_action( 'shutdown', array( 'EEH_Debug_Tools', 'show_db_name' )); |
|
65 | + add_action('activated_plugin', array('EEH_Debug_Tools', 'ee_plugin_activation_errors')); |
|
66 | + add_action('shutdown', array('EEH_Debug_Tools', 'show_db_name')); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | |
@@ -74,8 +74,8 @@ discard block |
||
74 | 74 | * @return void |
75 | 75 | */ |
76 | 76 | public static function show_db_name() { |
77 | - if ( ! defined( 'DOING_AJAX' ) && ( defined( 'EE_ERROR_EMAILS' ) && EE_ERROR_EMAILS )) { |
|
78 | - echo '<p style="font-size:10px;font-weight:normal;color:#E76700;margin: 1em 2em; text-align: right;">DB_NAME: '. DB_NAME .'</p>'; |
|
77 | + if ( ! defined('DOING_AJAX') && (defined('EE_ERROR_EMAILS') && EE_ERROR_EMAILS)) { |
|
78 | + echo '<p style="font-size:10px;font-weight:normal;color:#E76700;margin: 1em 2em; text-align: right;">DB_NAME: '.DB_NAME.'</p>'; |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
@@ -87,9 +87,9 @@ discard block |
||
87 | 87 | * @return void |
88 | 88 | */ |
89 | 89 | public function espresso_session_footer_dump() { |
90 | - if ( class_exists('Kint') && function_exists( 'wp_get_current_user' ) && current_user_can('update_core') && ( defined('WP_DEBUG') && WP_DEBUG ) && ! defined('DOING_AJAX') && class_exists( 'EE_Registry' )) { |
|
91 | - Kint::dump( EE_Registry::instance()->SSN->id() ); |
|
92 | - Kint::dump( EE_Registry::instance()->SSN ); |
|
90 | + if (class_exists('Kint') && function_exists('wp_get_current_user') && current_user_can('update_core') && (defined('WP_DEBUG') && WP_DEBUG) && ! defined('DOING_AJAX') && class_exists('EE_Registry')) { |
|
91 | + Kint::dump(EE_Registry::instance()->SSN->id()); |
|
92 | + Kint::dump(EE_Registry::instance()->SSN); |
|
93 | 93 | // Kint::dump( EE_Registry::instance()->SSN->get_session_data('cart')->get_tickets() ); |
94 | 94 | $this->espresso_list_hooked_functions(); |
95 | 95 | $this->show_times(); |
@@ -106,27 +106,27 @@ discard block |
||
106 | 106 | * @param bool $tag |
107 | 107 | * @return void |
108 | 108 | */ |
109 | - public function espresso_list_hooked_functions( $tag=FALSE ){ |
|
109 | + public function espresso_list_hooked_functions($tag = FALSE) { |
|
110 | 110 | global $wp_filter; |
111 | 111 | echo '<br/><br/><br/><h3>Hooked Functions</h3>'; |
112 | - if ( $tag ) { |
|
113 | - $hook[$tag]=$wp_filter[$tag]; |
|
114 | - if ( ! is_array( $hook[$tag] )) { |
|
115 | - trigger_error( "Nothing found for '$tag' hook", E_USER_WARNING ); |
|
112 | + if ($tag) { |
|
113 | + $hook[$tag] = $wp_filter[$tag]; |
|
114 | + if ( ! is_array($hook[$tag])) { |
|
115 | + trigger_error("Nothing found for '$tag' hook", E_USER_WARNING); |
|
116 | 116 | return; |
117 | 117 | } |
118 | - echo '<h5>For Tag: '. $tag .'</h5>'; |
|
118 | + echo '<h5>For Tag: '.$tag.'</h5>'; |
|
119 | 119 | } |
120 | 120 | else { |
121 | - $hook=$wp_filter; |
|
122 | - ksort( $hook ); |
|
121 | + $hook = $wp_filter; |
|
122 | + ksort($hook); |
|
123 | 123 | } |
124 | - foreach( $hook as $tag => $priorities ) { |
|
124 | + foreach ($hook as $tag => $priorities) { |
|
125 | 125 | echo "<br />>>>>>\t<strong>$tag</strong><br />"; |
126 | - ksort( $priorities ); |
|
127 | - foreach( $priorities as $priority => $function ){ |
|
126 | + ksort($priorities); |
|
127 | + foreach ($priorities as $priority => $function) { |
|
128 | 128 | echo $priority; |
129 | - foreach( $function as $name => $properties ) { |
|
129 | + foreach ($function as $name => $properties) { |
|
130 | 130 | echo "\t$name<br />"; |
131 | 131 | } |
132 | 132 | } |
@@ -142,15 +142,15 @@ discard block |
||
142 | 142 | * @param string $hook_name |
143 | 143 | * @return array |
144 | 144 | */ |
145 | - public static function registered_filter_callbacks( $hook_name = '' ) { |
|
145 | + public static function registered_filter_callbacks($hook_name = '') { |
|
146 | 146 | $filters = array(); |
147 | 147 | global $wp_filter; |
148 | - if ( isset( $wp_filter[ $hook_name ] ) ) { |
|
149 | - $filters[ $hook_name ] = array(); |
|
150 | - foreach ( $wp_filter[ $hook_name ] as $priority => $callbacks ) { |
|
151 | - $filters[ $hook_name ][ $priority ] = array(); |
|
152 | - foreach ( $callbacks as $callback ) { |
|
153 | - $filters[ $hook_name ][ $priority ][] = $callback['function']; |
|
148 | + if (isset($wp_filter[$hook_name])) { |
|
149 | + $filters[$hook_name] = array(); |
|
150 | + foreach ($wp_filter[$hook_name] as $priority => $callbacks) { |
|
151 | + $filters[$hook_name][$priority] = array(); |
|
152 | + foreach ($callbacks as $callback) { |
|
153 | + $filters[$hook_name][$priority][] = $callback['function']; |
|
154 | 154 | } |
155 | 155 | } |
156 | 156 | } |
@@ -163,8 +163,8 @@ discard block |
||
163 | 163 | * start_timer |
164 | 164 | * @param null $timer_name |
165 | 165 | */ |
166 | - public function start_timer( $timer_name = NULL ){ |
|
167 | - $this->_start_times[$timer_name] = microtime( TRUE ); |
|
166 | + public function start_timer($timer_name = NULL) { |
|
167 | + $this->_start_times[$timer_name] = microtime(TRUE); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | |
@@ -173,15 +173,15 @@ discard block |
||
173 | 173 | * stop_timer |
174 | 174 | * @param string $timer_name |
175 | 175 | */ |
176 | - public function stop_timer($timer_name = 'default'){ |
|
177 | - if( isset( $this->_start_times[ $timer_name ] ) ){ |
|
178 | - $start_time = $this->_start_times[ $timer_name ]; |
|
179 | - unset( $this->_start_times[ $timer_name ] ); |
|
180 | - }else{ |
|
181 | - $start_time = array_pop( $this->_start_times ); |
|
176 | + public function stop_timer($timer_name = 'default') { |
|
177 | + if (isset($this->_start_times[$timer_name])) { |
|
178 | + $start_time = $this->_start_times[$timer_name]; |
|
179 | + unset($this->_start_times[$timer_name]); |
|
180 | + } else { |
|
181 | + $start_time = array_pop($this->_start_times); |
|
182 | 182 | } |
183 | - $total_time = microtime( TRUE ) - $start_time; |
|
184 | - switch ( $total_time ) { |
|
183 | + $total_time = microtime(TRUE) - $start_time; |
|
184 | + switch ($total_time) { |
|
185 | 185 | case $total_time < 0.00001 : |
186 | 186 | $color = '#8A549A'; |
187 | 187 | $bold = 'normal'; |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | $bold = 'bold'; |
208 | 208 | break; |
209 | 209 | } |
210 | - $this->_times[] = '<hr /><div style="display: inline-block; min-width: 10px; margin:0em 1em; color:'.$color.'; font-weight:'.$bold.'; font-size:1.2em;">' . number_format( $total_time, 8 ) . '</div> ' . $timer_name; |
|
210 | + $this->_times[] = '<hr /><div style="display: inline-block; min-width: 10px; margin:0em 1em; color:'.$color.'; font-weight:'.$bold.'; font-size:1.2em;">'.number_format($total_time, 8).'</div> '.$timer_name; |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | |
@@ -217,12 +217,12 @@ discard block |
||
217 | 217 | * @param bool $output_now |
218 | 218 | * @return string |
219 | 219 | */ |
220 | - public function show_times($output_now=true){ |
|
221 | - if($output_now){ |
|
222 | - echo implode("<br>",$this->_times); |
|
220 | + public function show_times($output_now = true) { |
|
221 | + if ($output_now) { |
|
222 | + echo implode("<br>", $this->_times); |
|
223 | 223 | return ''; |
224 | 224 | } |
225 | - return implode("<br>",$this->_times); |
|
225 | + return implode("<br>", $this->_times); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | |
@@ -233,27 +233,27 @@ discard block |
||
233 | 233 | * @return void |
234 | 234 | */ |
235 | 235 | public static function ee_plugin_activation_errors() { |
236 | - if ( defined('WP_DEBUG') && WP_DEBUG ) { |
|
236 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
237 | 237 | $activation_errors = ob_get_contents(); |
238 | - if ( class_exists( 'EE_Registry' )) { |
|
239 | - EE_Registry::instance()->load_helper( 'File' ); |
|
238 | + if (class_exists('EE_Registry')) { |
|
239 | + EE_Registry::instance()->load_helper('File'); |
|
240 | 240 | } else { |
241 | - include_once( EE_HELPERS . 'EEH_File.helper.php' ); |
|
241 | + include_once(EE_HELPERS.'EEH_File.helper.php'); |
|
242 | 242 | } |
243 | - if ( class_exists( 'EEH_File' )) { |
|
243 | + if (class_exists('EEH_File')) { |
|
244 | 244 | try { |
245 | - EEH_File::ensure_folder_exists_and_is_writable( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS ); |
|
246 | - EEH_File::ensure_file_exists_and_is_writable( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . 'espresso_plugin_activation_errors.html' ); |
|
247 | - EEH_File::write_to_file( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . 'espresso_plugin_activation_errors.html', $activation_errors ); |
|
248 | - } catch( EE_Error $e ){ |
|
249 | - EE_Error::add_error( sprintf( __( 'The Event Espresso activation errors file could not be setup because: %s', 'event_espresso' ), $e->getMessage() )); |
|
245 | + EEH_File::ensure_folder_exists_and_is_writable(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS); |
|
246 | + EEH_File::ensure_file_exists_and_is_writable(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.'espresso_plugin_activation_errors.html'); |
|
247 | + EEH_File::write_to_file(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.'espresso_plugin_activation_errors.html', $activation_errors); |
|
248 | + } catch (EE_Error $e) { |
|
249 | + EE_Error::add_error(sprintf(__('The Event Espresso activation errors file could not be setup because: %s', 'event_espresso'), $e->getMessage())); |
|
250 | 250 | } |
251 | 251 | } else { |
252 | 252 | // old school attempt |
253 | - file_put_contents( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . 'espresso_plugin_activation_errors.html', $activation_errors ); |
|
253 | + file_put_contents(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.'espresso_plugin_activation_errors.html', $activation_errors); |
|
254 | 254 | } |
255 | - $activation_errors = get_option( 'ee_plugin_activation_errors', '' ) . $activation_errors; |
|
256 | - update_option( 'ee_plugin_activation_errors', $activation_errors ); |
|
255 | + $activation_errors = get_option('ee_plugin_activation_errors', '').$activation_errors; |
|
256 | + update_option('ee_plugin_activation_errors', $activation_errors); |
|
257 | 257 | } |
258 | 258 | } |
259 | 259 | |
@@ -268,10 +268,10 @@ discard block |
||
268 | 268 | * @param string $version The version of Event Espresso where the error was added |
269 | 269 | * @uses trigger_error() |
270 | 270 | */ |
271 | - public function doing_it_wrong( $function, $message, $version ) { |
|
272 | - do_action( 'AHEE__EEH_Debug_Tools__doing_it_wrong_run', $function, $message, $version); |
|
273 | - $version = is_null( $version ) ? '' : sprintf( __('(This message was added in version %s of Event Espresso.', 'event_espresso' ), $version ); |
|
274 | - trigger_error( sprintf( __('%1$s was called <strong>incorrectly</strong>. %2$s %3$s','event_espresso' ), $function, $message, $version ), E_USER_DEPRECATED ); |
|
271 | + public function doing_it_wrong($function, $message, $version) { |
|
272 | + do_action('AHEE__EEH_Debug_Tools__doing_it_wrong_run', $function, $message, $version); |
|
273 | + $version = is_null($version) ? '' : sprintf(__('(This message was added in version %s of Event Espresso.', 'event_espresso'), $version); |
|
274 | + trigger_error(sprintf(__('%1$s was called <strong>incorrectly</strong>. %2$s %3$s', 'event_espresso'), $function, $message, $version), E_USER_DEPRECATED); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | |
@@ -292,22 +292,22 @@ discard block |
||
292 | 292 | * @param string $debug_index |
293 | 293 | * @param string $debug_key |
294 | 294 | */ |
295 | - public static function log( $class='', $func = '', $line = '', $info = array(), $display_request = false, $debug_index = '', $debug_key = 'EE_DEBUG_SPCO' ) { |
|
296 | - if ( WP_DEBUG ) { |
|
297 | - $debug_key = $debug_key . '_' . EE_Session::instance()->id(); |
|
298 | - $debug_data = get_option( $debug_key, array() ); |
|
295 | + public static function log($class = '', $func = '', $line = '', $info = array(), $display_request = false, $debug_index = '', $debug_key = 'EE_DEBUG_SPCO') { |
|
296 | + if (WP_DEBUG) { |
|
297 | + $debug_key = $debug_key.'_'.EE_Session::instance()->id(); |
|
298 | + $debug_data = get_option($debug_key, array()); |
|
299 | 299 | $default_data = array( |
300 | - $class => $func . '() : ' . $line, |
|
300 | + $class => $func.'() : '.$line, |
|
301 | 301 | 'REQ' => $display_request ? $_REQUEST : '', |
302 | 302 | ); |
303 | 303 | // don't serialize objects |
304 | - $info = self::strip_objects( $info ); |
|
305 | - $index = ! empty( $debug_index ) ? $debug_index : 0; |
|
306 | - if ( ! isset( $debug_data[$index] ) ) { |
|
304 | + $info = self::strip_objects($info); |
|
305 | + $index = ! empty($debug_index) ? $debug_index : 0; |
|
306 | + if ( ! isset($debug_data[$index])) { |
|
307 | 307 | $debug_data[$index] = array(); |
308 | 308 | } |
309 | - $debug_data[$index][microtime()] = array_merge( $default_data, $info ); |
|
310 | - update_option( $debug_key, $debug_data ); |
|
309 | + $debug_data[$index][microtime()] = array_merge($default_data, $info); |
|
310 | + update_option($debug_key, $debug_data); |
|
311 | 311 | } |
312 | 312 | } |
313 | 313 | |
@@ -319,26 +319,26 @@ discard block |
||
319 | 319 | * @param array $info |
320 | 320 | * @return array |
321 | 321 | */ |
322 | - public static function strip_objects( $info = array() ) { |
|
323 | - foreach ( $info as $key => $value ) { |
|
324 | - if ( is_array( $value ) ) { |
|
325 | - $info[ $key ] = self::strip_objects( $value ); |
|
326 | - } else if ( is_object( $value ) ) { |
|
327 | - $object_class = get_class( $value ); |
|
328 | - $info[ $object_class ] = array(); |
|
329 | - $info[ $object_class ][ 'ID' ] = method_exists( $value, 'ID' ) ? $value->ID() : spl_object_hash( $value ); |
|
330 | - if ( method_exists( $value, 'ID' ) ) { |
|
331 | - $info[ $object_class ][ 'ID' ] = $value->ID(); |
|
322 | + public static function strip_objects($info = array()) { |
|
323 | + foreach ($info as $key => $value) { |
|
324 | + if (is_array($value)) { |
|
325 | + $info[$key] = self::strip_objects($value); |
|
326 | + } else if (is_object($value)) { |
|
327 | + $object_class = get_class($value); |
|
328 | + $info[$object_class] = array(); |
|
329 | + $info[$object_class]['ID'] = method_exists($value, 'ID') ? $value->ID() : spl_object_hash($value); |
|
330 | + if (method_exists($value, 'ID')) { |
|
331 | + $info[$object_class]['ID'] = $value->ID(); |
|
332 | 332 | } |
333 | - if ( method_exists( $value, 'status' ) ) { |
|
334 | - $info[ $object_class ][ 'status' ] = $value->status(); |
|
335 | - } else if ( method_exists( $value, 'status_ID' ) ) { |
|
336 | - $info[ $object_class ][ 'status' ] = $value->status_ID(); |
|
333 | + if (method_exists($value, 'status')) { |
|
334 | + $info[$object_class]['status'] = $value->status(); |
|
335 | + } else if (method_exists($value, 'status_ID')) { |
|
336 | + $info[$object_class]['status'] = $value->status_ID(); |
|
337 | 337 | } |
338 | - unset( $info[ $key ] ); |
|
338 | + unset($info[$key]); |
|
339 | 339 | } |
340 | 340 | } |
341 | - return (array)$info; |
|
341 | + return (array) $info; |
|
342 | 342 | } |
343 | 343 | |
344 | 344 | |
@@ -355,30 +355,30 @@ discard block |
||
355 | 355 | * @param string $height |
356 | 356 | * @param bool $die |
357 | 357 | */ |
358 | - public static function printr( $var, $var_name = false, $file = __FILE__, $line = __LINE__, $height = 'auto', $die = false ) { |
|
358 | + public static function printr($var, $var_name = false, $file = __FILE__, $line = __LINE__, $height = 'auto', $die = false) { |
|
359 | 359 | $print_r = false; |
360 | - if ( is_object( $var ) ) { |
|
360 | + if (is_object($var)) { |
|
361 | 361 | $var_name = ! $var_name ? 'object' : $var_name; |
362 | 362 | $print_r = true; |
363 | - } else if ( is_array( $var ) ) { |
|
363 | + } else if (is_array($var)) { |
|
364 | 364 | $var_name = ! $var_name ? 'array' : $var_name; |
365 | 365 | $print_r = true; |
366 | - } else if ( is_numeric( $var ) ) { |
|
366 | + } else if (is_numeric($var)) { |
|
367 | 367 | $var_name = ! $var_name ? 'numeric' : $var_name; |
368 | - } else if ( is_string( $var ) ) { |
|
368 | + } else if (is_string($var)) { |
|
369 | 369 | $var_name = ! $var_name ? 'string' : $var_name; |
370 | - } else if ( is_null( $var ) ) { |
|
370 | + } else if (is_null($var)) { |
|
371 | 371 | $var_name = ! $var_name ? 'null' : $var_name; |
372 | 372 | } |
373 | - $var_name = ucwords( str_replace( array( '$', '_' ), array( '', ' ' ), $var_name ) ); |
|
373 | + $var_name = ucwords(str_replace(array('$', '_'), array('', ' '), $var_name)); |
|
374 | 374 | ob_start(); |
375 | - echo '<pre style="display:block; width:100%; height:' . $height . '; border:2px solid light-blue;">'; |
|
376 | - echo '<h5 style="color:#2EA2CC;"><b>' . $var_name . '</b></h5><span style="color:#E76700">'; |
|
377 | - $print_r ? print_r( $var ) : var_dump( $var ); |
|
378 | - echo '</span><br /><span style="font-size:10px;font-weight:normal;">' . $file . '<br />line no: ' . $line . '</span></pre>'; |
|
375 | + echo '<pre style="display:block; width:100%; height:'.$height.'; border:2px solid light-blue;">'; |
|
376 | + echo '<h5 style="color:#2EA2CC;"><b>'.$var_name.'</b></h5><span style="color:#E76700">'; |
|
377 | + $print_r ? print_r($var) : var_dump($var); |
|
378 | + echo '</span><br /><span style="font-size:10px;font-weight:normal;">'.$file.'<br />line no: '.$line.'</span></pre>'; |
|
379 | 379 | $result = ob_get_clean(); |
380 | - if ( $die ) { |
|
381 | - die( $result ); |
|
380 | + if ($die) { |
|
381 | + die($result); |
|
382 | 382 | } else { |
383 | 383 | echo $result; |
384 | 384 | } |
@@ -395,8 +395,8 @@ discard block |
||
395 | 395 | * borrowed from Kint Debugger |
396 | 396 | * Plugin URI: http://upthemes.com/plugins/kint-debugger/ |
397 | 397 | */ |
398 | -if ( class_exists('Kint') && ! function_exists( 'dump_wp_query' ) ) { |
|
399 | - function dump_wp_query(){ |
|
398 | +if (class_exists('Kint') && ! function_exists('dump_wp_query')) { |
|
399 | + function dump_wp_query() { |
|
400 | 400 | global $wp_query; |
401 | 401 | d($wp_query); |
402 | 402 | } |
@@ -406,8 +406,8 @@ discard block |
||
406 | 406 | * borrowed from Kint Debugger |
407 | 407 | * Plugin URI: http://upthemes.com/plugins/kint-debugger/ |
408 | 408 | */ |
409 | -if ( class_exists('Kint') && ! function_exists( 'dump_wp' ) ) { |
|
410 | - function dump_wp(){ |
|
409 | +if (class_exists('Kint') && ! function_exists('dump_wp')) { |
|
410 | + function dump_wp() { |
|
411 | 411 | global $wp; |
412 | 412 | d($wp); |
413 | 413 | } |
@@ -417,8 +417,8 @@ discard block |
||
417 | 417 | * borrowed from Kint Debugger |
418 | 418 | * Plugin URI: http://upthemes.com/plugins/kint-debugger/ |
419 | 419 | */ |
420 | -if ( class_exists('Kint') && ! function_exists( 'dump_post' ) ) { |
|
421 | - function dump_post(){ |
|
420 | +if (class_exists('Kint') && ! function_exists('dump_post')) { |
|
421 | + function dump_post() { |
|
422 | 422 | global $post; |
423 | 423 | d($post); |
424 | 424 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | * @ version 4.0 |
13 | 13 | * |
14 | 14 | */ |
15 | -require_once( EE_HELPERS . 'EEH_Base.helper.php' ); |
|
15 | +require_once(EE_HELPERS.'EEH_Base.helper.php'); |
|
16 | 16 | /** |
17 | 17 | * |
18 | 18 | * Class EEH_File |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | private static function _get_wp_filesystem() { |
42 | 42 | global $wp_filesystem; |
43 | 43 | // no filesystem setup ??? |
44 | - if ( ! $wp_filesystem instanceof WP_Filesystem_Base ) { |
|
44 | + if ( ! $wp_filesystem instanceof WP_Filesystem_Base) { |
|
45 | 45 | // if some eager beaver's just trying to get in there too early... |
46 | 46 | // let them do it, because we are one of those eager beavers! :P |
47 | 47 | /** |
@@ -54,29 +54,29 @@ discard block |
||
54 | 54 | * and there may be troubles if the WP files are owned by a different user |
55 | 55 | * than the server user. But both of these issues should exist in 4.4 and earlier too |
56 | 56 | */ |
57 | - if ( FALSE && ! did_action( 'wp_loaded' )) { |
|
57 | + if (FALSE && ! did_action('wp_loaded')) { |
|
58 | 58 | $msg = __('An attempt to access and/or write to a file on the server could not be completed due to a lack of sufficient credentials.', 'event_espresso'); |
59 | - if ( WP_DEBUG ) { |
|
60 | - $msg .= '<br />' . __('The WP Filesystem can not be accessed until after the "wp_loaded" hook has run, so it\'s best not to attempt access until the "admin_init" hookpoint.', 'event_espresso'); |
|
59 | + if (WP_DEBUG) { |
|
60 | + $msg .= '<br />'.__('The WP Filesystem can not be accessed until after the "wp_loaded" hook has run, so it\'s best not to attempt access until the "admin_init" hookpoint.', 'event_espresso'); |
|
61 | 61 | } |
62 | - throw new EE_Error( $msg ); |
|
62 | + throw new EE_Error($msg); |
|
63 | 63 | } else { |
64 | 64 | // should be loaded if we are past the wp_loaded hook... |
65 | - if ( ! function_exists( 'WP_Filesystem' )) { |
|
66 | - require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
|
67 | - require_once( ABSPATH . 'wp-admin/includes/template.php' ); |
|
65 | + if ( ! function_exists('WP_Filesystem')) { |
|
66 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
67 | + require_once(ABSPATH.'wp-admin/includes/template.php'); |
|
68 | 68 | } |
69 | 69 | // basically check for direct or previously configured access |
70 | - if ( ! WP_Filesystem() ) { |
|
70 | + if ( ! WP_Filesystem()) { |
|
71 | 71 | // turn on output buffering so that we can capture the credentials form |
72 | 72 | ob_start(); |
73 | - $credentials = request_filesystem_credentials( '' ); |
|
73 | + $credentials = request_filesystem_credentials(''); |
|
74 | 74 | // store credentials form for the time being |
75 | 75 | EEH_File::$_credentials_form = ob_get_clean(); |
76 | 76 | // if credentials do NOT exist |
77 | - if ( $credentials === FALSE ) { |
|
78 | - add_action( 'admin_notices', array( 'EEH_File', 'display_request_filesystem_credentials_form' ), 999 ); |
|
79 | - throw new EE_Error( __('An attempt to access and/or write to a file on the server could not be completed due to a lack of sufficient credentials.', 'event_espresso')); |
|
77 | + if ($credentials === FALSE) { |
|
78 | + add_action('admin_notices', array('EEH_File', 'display_request_filesystem_credentials_form'), 999); |
|
79 | + throw new EE_Error(__('An attempt to access and/or write to a file on the server could not be completed due to a lack of sufficient credentials.', 'event_espresso')); |
|
80 | 80 | } |
81 | 81 | } |
82 | 82 | } |
@@ -89,8 +89,8 @@ discard block |
||
89 | 89 | * display_request_filesystem_credentials_form |
90 | 90 | */ |
91 | 91 | public static function display_request_filesystem_credentials_form() { |
92 | - if ( ! empty( EEH_File::$_credentials_form )) { |
|
93 | - echo '<div class="updated espresso-notices-attention"><p>' . EEH_File::$_credentials_form . '</p></div>'; |
|
92 | + if ( ! empty(EEH_File::$_credentials_form)) { |
|
93 | + echo '<div class="updated espresso-notices-attention"><p>'.EEH_File::$_credentials_form.'</p></div>'; |
|
94 | 94 | } |
95 | 95 | } |
96 | 96 | |
@@ -108,29 +108,29 @@ discard block |
||
108 | 108 | * @throws EE_Error |
109 | 109 | * @return bool |
110 | 110 | */ |
111 | - public static function verify_filepath_and_permissions( $full_file_path = '', $file_name = '', $file_ext = '', $type_of_file = '' ) { |
|
111 | + public static function verify_filepath_and_permissions($full_file_path = '', $file_name = '', $file_ext = '', $type_of_file = '') { |
|
112 | 112 | // load WP_Filesystem and set file permissions |
113 | 113 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
114 | - $full_file_path = EEH_File::standardise_directory_separators( $full_file_path ); |
|
115 | - if ( ! $wp_filesystem->is_readable( $full_file_path )) { |
|
116 | - $file_name = ! empty( $type_of_file ) ? $file_name . ' ' . $type_of_file : $file_name; |
|
117 | - $file_name .= ! empty( $file_ext ) ? ' file' : ' folder'; |
|
114 | + $full_file_path = EEH_File::standardise_directory_separators($full_file_path); |
|
115 | + if ( ! $wp_filesystem->is_readable($full_file_path)) { |
|
116 | + $file_name = ! empty($type_of_file) ? $file_name.' '.$type_of_file : $file_name; |
|
117 | + $file_name .= ! empty($file_ext) ? ' file' : ' folder'; |
|
118 | 118 | $msg = sprintf( |
119 | - __( 'The requested %1$s could not be found or is not readable, possibly due to an incorrect filepath, or incorrect file permissions.%2$s', 'event_espresso' ), |
|
119 | + __('The requested %1$s could not be found or is not readable, possibly due to an incorrect filepath, or incorrect file permissions.%2$s', 'event_espresso'), |
|
120 | 120 | $file_name, |
121 | 121 | '<br />' |
122 | 122 | ); |
123 | - if ( EEH_File::exists( $full_file_path )) { |
|
124 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_file_path, $type_of_file ); |
|
123 | + if (EEH_File::exists($full_file_path)) { |
|
124 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_file_path, $type_of_file); |
|
125 | 125 | } else { |
126 | 126 | // no file permissions means the file was not found |
127 | 127 | $msg .= sprintf( |
128 | - __( 'Please ensure the following path is correct: "%s".', 'event_espresso' ), |
|
128 | + __('Please ensure the following path is correct: "%s".', 'event_espresso'), |
|
129 | 129 | $full_file_path |
130 | 130 | ); |
131 | 131 | } |
132 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
133 | - throw new EE_Error( $msg . '||' . $msg ); |
|
132 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
133 | + throw new EE_Error($msg.'||'.$msg); |
|
134 | 134 | } |
135 | 135 | return FALSE; |
136 | 136 | } |
@@ -147,24 +147,24 @@ discard block |
||
147 | 147 | * @param string $type_of_file - general type of file (ie: "module"), this is only used to improve error messages |
148 | 148 | * @return string |
149 | 149 | */ |
150 | - private static function _permissions_error_for_unreadable_filepath( $full_file_path = '', $type_of_file = '' ){ |
|
150 | + private static function _permissions_error_for_unreadable_filepath($full_file_path = '', $type_of_file = '') { |
|
151 | 151 | // load WP_Filesystem and set file permissions |
152 | 152 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
153 | 153 | // check file permissions |
154 | - $perms = $wp_filesystem->getchmod( $full_file_path ); |
|
155 | - if ( $perms ) { |
|
154 | + $perms = $wp_filesystem->getchmod($full_file_path); |
|
155 | + if ($perms) { |
|
156 | 156 | // file permissions exist, but way be set incorrectly |
157 | - $type_of_file = ! empty( $type_of_file ) ? $type_of_file . ' ' : ''; |
|
158 | - $type_of_file .= ! empty( $type_of_file ) ? 'file' : 'folder'; |
|
157 | + $type_of_file = ! empty($type_of_file) ? $type_of_file.' ' : ''; |
|
158 | + $type_of_file .= ! empty($type_of_file) ? 'file' : 'folder'; |
|
159 | 159 | return sprintf( |
160 | - __( 'File permissions for the requested %1$s are currently set at "%2$s". The recommended permissions are 644 for files and 755 for folders.', 'event_espresso' ), |
|
160 | + __('File permissions for the requested %1$s are currently set at "%2$s". The recommended permissions are 644 for files and 755 for folders.', 'event_espresso'), |
|
161 | 161 | $type_of_file, |
162 | 162 | $perms |
163 | 163 | ); |
164 | 164 | } else { |
165 | 165 | // file exists but file permissions could not be read ?!?! |
166 | 166 | return sprintf( |
167 | - __( 'Please ensure that the server and/or PHP configuration allows the current process to access the following file: "%s".', 'event_espresso' ), |
|
167 | + __('Please ensure that the server and/or PHP configuration allows the current process to access the following file: "%s".', 'event_espresso'), |
|
168 | 168 | $full_file_path |
169 | 169 | ); |
170 | 170 | } |
@@ -179,33 +179,33 @@ discard block |
||
179 | 179 | * @throws EE_Error |
180 | 180 | * @return bool |
181 | 181 | */ |
182 | - public static function ensure_folder_exists_and_is_writable( $folder = '' ){ |
|
183 | - if ( empty( $folder )) { |
|
182 | + public static function ensure_folder_exists_and_is_writable($folder = '') { |
|
183 | + if (empty($folder)) { |
|
184 | 184 | return FALSE; |
185 | 185 | } |
186 | 186 | // remove ending DS |
187 | - $folder = EEH_File::standardise_directory_separators( rtrim( $folder, '/\\' )); |
|
187 | + $folder = EEH_File::standardise_directory_separators(rtrim($folder, '/\\')); |
|
188 | 188 | // determine parent folder |
189 | - $folder_segments = explode( DS, $folder ); |
|
190 | - array_pop( $folder_segments ); |
|
191 | - $parent_folder = implode( DS, $folder_segments ) . DS; |
|
189 | + $folder_segments = explode(DS, $folder); |
|
190 | + array_pop($folder_segments); |
|
191 | + $parent_folder = implode(DS, $folder_segments).DS; |
|
192 | 192 | // add DS to folder |
193 | - $folder = EEH_File::end_with_directory_separator( $folder ); |
|
193 | + $folder = EEH_File::end_with_directory_separator($folder); |
|
194 | 194 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
195 | - if ( ! $wp_filesystem->is_dir( $folder )) { |
|
196 | - if ( ! EEH_File::verify_is_writable( $parent_folder, 'folder' )) { |
|
195 | + if ( ! $wp_filesystem->is_dir($folder)) { |
|
196 | + if ( ! EEH_File::verify_is_writable($parent_folder, 'folder')) { |
|
197 | 197 | return FALSE; |
198 | 198 | } else { |
199 | - if ( ! $wp_filesystem->mkdir( $folder )) { |
|
200 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
201 | - $msg = sprintf( __( '"%s" could not be created.', 'event_espresso' ), $folder ); |
|
202 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $folder ); |
|
203 | - throw new EE_Error( $msg ); |
|
199 | + if ( ! $wp_filesystem->mkdir($folder)) { |
|
200 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
201 | + $msg = sprintf(__('"%s" could not be created.', 'event_espresso'), $folder); |
|
202 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($folder); |
|
203 | + throw new EE_Error($msg); |
|
204 | 204 | } |
205 | 205 | return FALSE; |
206 | 206 | } |
207 | 207 | } |
208 | - } elseif ( ! EEH_File::verify_is_writable( $folder, 'folder' )) { |
|
208 | + } elseif ( ! EEH_File::verify_is_writable($folder, 'folder')) { |
|
209 | 209 | return FALSE; |
210 | 210 | } |
211 | 211 | return TRUE; |
@@ -220,15 +220,15 @@ discard block |
||
220 | 220 | * @throws EE_Error |
221 | 221 | * @return bool |
222 | 222 | */ |
223 | - public static function verify_is_writable( $full_path = '', $file_or_folder = 'folder' ){ |
|
223 | + public static function verify_is_writable($full_path = '', $file_or_folder = 'folder') { |
|
224 | 224 | // load WP_Filesystem and set file permissions |
225 | 225 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
226 | - $full_path = EEH_File::standardise_directory_separators( $full_path ); |
|
227 | - if ( ! $wp_filesystem->is_writable( $full_path )) { |
|
228 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
229 | - $msg = sprintf( __( 'The "%1$s" %2$s is not writable.', 'event_espresso' ), $full_path, $file_or_folder ); |
|
230 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_path ); |
|
231 | - throw new EE_Error( $msg ); |
|
226 | + $full_path = EEH_File::standardise_directory_separators($full_path); |
|
227 | + if ( ! $wp_filesystem->is_writable($full_path)) { |
|
228 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
229 | + $msg = sprintf(__('The "%1$s" %2$s is not writable.', 'event_espresso'), $full_path, $file_or_folder); |
|
230 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_path); |
|
231 | + throw new EE_Error($msg); |
|
232 | 232 | } |
233 | 233 | return FALSE; |
234 | 234 | } |
@@ -244,21 +244,21 @@ discard block |
||
244 | 244 | * @throws EE_Error |
245 | 245 | * @return bool |
246 | 246 | */ |
247 | - public static function ensure_file_exists_and_is_writable( $full_file_path = '' ) { |
|
247 | + public static function ensure_file_exists_and_is_writable($full_file_path = '') { |
|
248 | 248 | // load WP_Filesystem and set file permissions |
249 | 249 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
250 | - $full_file_path = EEH_File::standardise_directory_separators( $full_file_path ); |
|
251 | - if ( ! EEH_File::exists( $full_file_path )) { |
|
252 | - if ( ! $wp_filesystem->touch( $full_file_path )) { |
|
253 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
254 | - $msg = sprintf( __( 'The "%s" file could not be created.', 'event_espresso' ), $full_file_path ); |
|
255 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_file_path ); |
|
256 | - throw new EE_Error( $msg ); |
|
250 | + $full_file_path = EEH_File::standardise_directory_separators($full_file_path); |
|
251 | + if ( ! EEH_File::exists($full_file_path)) { |
|
252 | + if ( ! $wp_filesystem->touch($full_file_path)) { |
|
253 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
254 | + $msg = sprintf(__('The "%s" file could not be created.', 'event_espresso'), $full_file_path); |
|
255 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_file_path); |
|
256 | + throw new EE_Error($msg); |
|
257 | 257 | } |
258 | 258 | return FALSE; |
259 | 259 | } |
260 | 260 | } |
261 | - if ( ! EEH_File::verify_is_writable( $full_file_path, 'file' )) { |
|
261 | + if ( ! EEH_File::verify_is_writable($full_file_path, 'file')) { |
|
262 | 262 | return FALSE; |
263 | 263 | } |
264 | 264 | return TRUE; |
@@ -271,12 +271,12 @@ discard block |
||
271 | 271 | * @param string $full_file_path |
272 | 272 | * @return string |
273 | 273 | */ |
274 | - public static function get_file_contents( $full_file_path = '' ){ |
|
275 | - $full_file_path = EEH_File::standardise_directory_separators( $full_file_path ); |
|
276 | - if ( EEH_File::verify_filepath_and_permissions( $full_file_path, EEH_File::get_filename_from_filepath( $full_file_path ) , EEH_File::get_file_extension( $full_file_path ))) { |
|
274 | + public static function get_file_contents($full_file_path = '') { |
|
275 | + $full_file_path = EEH_File::standardise_directory_separators($full_file_path); |
|
276 | + if (EEH_File::verify_filepath_and_permissions($full_file_path, EEH_File::get_filename_from_filepath($full_file_path), EEH_File::get_file_extension($full_file_path))) { |
|
277 | 277 | // load WP_Filesystem and set file permissions |
278 | 278 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
279 | - return $wp_filesystem->get_contents( $full_file_path ); |
|
279 | + return $wp_filesystem->get_contents($full_file_path); |
|
280 | 280 | } |
281 | 281 | return ''; |
282 | 282 | } |
@@ -291,26 +291,26 @@ discard block |
||
291 | 291 | * @throws EE_Error |
292 | 292 | * @return bool |
293 | 293 | */ |
294 | - public static function write_to_file( $full_file_path = '', $file_contents = '', $file_type = '' ){ |
|
295 | - $full_file_path = EEH_File::standardise_directory_separators( $full_file_path ); |
|
296 | - $file_type = ! empty( $file_type ) ? rtrim( $file_type, ' ' ) . ' ' : ''; |
|
297 | - $folder = EEH_File::remove_filename_from_filepath( $full_file_path ); |
|
298 | - if ( ! EEH_File::verify_is_writable( $folder, 'folder' )) { |
|
299 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
300 | - $msg = sprintf( __( 'The %1$sfile located at "%2$s" is not writable.', 'event_espresso' ), $file_type, $full_file_path ); |
|
301 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_file_path ); |
|
302 | - throw new EE_Error( $msg ); |
|
294 | + public static function write_to_file($full_file_path = '', $file_contents = '', $file_type = '') { |
|
295 | + $full_file_path = EEH_File::standardise_directory_separators($full_file_path); |
|
296 | + $file_type = ! empty($file_type) ? rtrim($file_type, ' ').' ' : ''; |
|
297 | + $folder = EEH_File::remove_filename_from_filepath($full_file_path); |
|
298 | + if ( ! EEH_File::verify_is_writable($folder, 'folder')) { |
|
299 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
300 | + $msg = sprintf(__('The %1$sfile located at "%2$s" is not writable.', 'event_espresso'), $file_type, $full_file_path); |
|
301 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_file_path); |
|
302 | + throw new EE_Error($msg); |
|
303 | 303 | } |
304 | 304 | return FALSE; |
305 | 305 | } |
306 | 306 | // load WP_Filesystem and set file permissions |
307 | 307 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
308 | 308 | // write the file |
309 | - if ( ! $wp_filesystem->put_contents( $full_file_path, $file_contents )) { |
|
310 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
311 | - $msg = sprintf( __( 'The %1$sfile located at "%2$s" could not be written to.', 'event_espresso' ), $file_type, $full_file_path ); |
|
312 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_file_path, 'f' ); |
|
313 | - throw new EE_Error( $msg ); |
|
309 | + if ( ! $wp_filesystem->put_contents($full_file_path, $file_contents)) { |
|
310 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
311 | + $msg = sprintf(__('The %1$sfile located at "%2$s" could not be written to.', 'event_espresso'), $file_type, $full_file_path); |
|
312 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_file_path, 'f'); |
|
313 | + throw new EE_Error($msg); |
|
314 | 314 | } |
315 | 315 | return FALSE; |
316 | 316 | } |
@@ -326,9 +326,9 @@ discard block |
||
326 | 326 | * @param string $full_file_path |
327 | 327 | * @return bool |
328 | 328 | */ |
329 | - public static function exists( $full_file_path = '' ) { |
|
329 | + public static function exists($full_file_path = '') { |
|
330 | 330 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
331 | - return $wp_filesystem->exists( $full_file_path ) ? TRUE : FALSE; |
|
331 | + return $wp_filesystem->exists($full_file_path) ? TRUE : FALSE; |
|
332 | 332 | } |
333 | 333 | |
334 | 334 | |
@@ -340,9 +340,9 @@ discard block |
||
340 | 340 | * @param string $full_file_path |
341 | 341 | * @return bool |
342 | 342 | */ |
343 | - public static function is_readable( $full_file_path = '' ) { |
|
343 | + public static function is_readable($full_file_path = '') { |
|
344 | 344 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
345 | - return $wp_filesystem->is_readable( $full_file_path ) ? TRUE : FALSE; |
|
345 | + return $wp_filesystem->is_readable($full_file_path) ? TRUE : FALSE; |
|
346 | 346 | } |
347 | 347 | |
348 | 348 | |
@@ -354,8 +354,8 @@ discard block |
||
354 | 354 | * @param string $full_file_path |
355 | 355 | * @return string |
356 | 356 | */ |
357 | - public static function remove_filename_from_filepath( $full_file_path = '' ) { |
|
358 | - return pathinfo( $full_file_path, PATHINFO_DIRNAME ); |
|
357 | + public static function remove_filename_from_filepath($full_file_path = '') { |
|
358 | + return pathinfo($full_file_path, PATHINFO_DIRNAME); |
|
359 | 359 | } |
360 | 360 | |
361 | 361 | |
@@ -365,8 +365,8 @@ discard block |
||
365 | 365 | * @param string $full_file_path |
366 | 366 | * @return string |
367 | 367 | */ |
368 | - public static function get_filename_from_filepath( $full_file_path = '' ) { |
|
369 | - return pathinfo( $full_file_path, PATHINFO_BASENAME ); |
|
368 | + public static function get_filename_from_filepath($full_file_path = '') { |
|
369 | + return pathinfo($full_file_path, PATHINFO_BASENAME); |
|
370 | 370 | } |
371 | 371 | |
372 | 372 | |
@@ -376,8 +376,8 @@ discard block |
||
376 | 376 | * @param string $full_file_path |
377 | 377 | * @return string |
378 | 378 | */ |
379 | - public static function get_file_extension( $full_file_path = '' ) { |
|
380 | - return pathinfo( $full_file_path, PATHINFO_EXTENSION ); |
|
379 | + public static function get_file_extension($full_file_path = '') { |
|
380 | + return pathinfo($full_file_path, PATHINFO_EXTENSION); |
|
381 | 381 | } |
382 | 382 | |
383 | 383 | |
@@ -387,10 +387,10 @@ discard block |
||
387 | 387 | * @param string $folder |
388 | 388 | * @return bool |
389 | 389 | */ |
390 | - public static function add_htaccess_deny_from_all( $folder = '' ) { |
|
391 | - $folder = EEH_File::standardise_and_end_with_directory_separator( $folder ); |
|
392 | - if ( ! EEH_File::exists( $folder . '.htaccess' ) ) { |
|
393 | - if ( ! EEH_File::write_to_file( $folder . '.htaccess', 'deny from all', '.htaccess' )) { |
|
390 | + public static function add_htaccess_deny_from_all($folder = '') { |
|
391 | + $folder = EEH_File::standardise_and_end_with_directory_separator($folder); |
|
392 | + if ( ! EEH_File::exists($folder.'.htaccess')) { |
|
393 | + if ( ! EEH_File::write_to_file($folder.'.htaccess', 'deny from all', '.htaccess')) { |
|
394 | 394 | return FALSE; |
395 | 395 | } |
396 | 396 | } |
@@ -405,11 +405,11 @@ discard block |
||
405 | 405 | * @param string $file_path |
406 | 406 | * @return string |
407 | 407 | */ |
408 | - public static function get_classname_from_filepath_with_standard_filename( $file_path ){ |
|
408 | + public static function get_classname_from_filepath_with_standard_filename($file_path) { |
|
409 | 409 | //extract file from path |
410 | - $filename = basename( $file_path ); |
|
410 | + $filename = basename($file_path); |
|
411 | 411 | //now remove the first period and everything after |
412 | - $pos_of_first_period = strpos( $filename,'.' ); |
|
412 | + $pos_of_first_period = strpos($filename, '.'); |
|
413 | 413 | return substr($filename, 0, $pos_of_first_period); |
414 | 414 | } |
415 | 415 | |
@@ -421,8 +421,8 @@ discard block |
||
421 | 421 | * @param string $file_path |
422 | 422 | * @return string |
423 | 423 | */ |
424 | - public static function standardise_directory_separators( $file_path ){ |
|
425 | - return str_replace( array( '\\', '/' ), DS, $file_path ); |
|
424 | + public static function standardise_directory_separators($file_path) { |
|
425 | + return str_replace(array('\\', '/'), DS, $file_path); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | |
@@ -433,8 +433,8 @@ discard block |
||
433 | 433 | * @param string $file_path |
434 | 434 | * @return string |
435 | 435 | */ |
436 | - public static function end_with_directory_separator( $file_path ){ |
|
437 | - return rtrim( $file_path, '/\\' ) . DS; |
|
436 | + public static function end_with_directory_separator($file_path) { |
|
437 | + return rtrim($file_path, '/\\').DS; |
|
438 | 438 | } |
439 | 439 | |
440 | 440 | |
@@ -444,8 +444,8 @@ discard block |
||
444 | 444 | * @param $file_path |
445 | 445 | * @return string |
446 | 446 | */ |
447 | - public static function standardise_and_end_with_directory_separator( $file_path ){ |
|
448 | - return self::end_with_directory_separator( self::standardise_directory_separators( $file_path )); |
|
447 | + public static function standardise_and_end_with_directory_separator($file_path) { |
|
448 | + return self::end_with_directory_separator(self::standardise_directory_separators($file_path)); |
|
449 | 449 | } |
450 | 450 | |
451 | 451 | |
@@ -462,21 +462,21 @@ discard block |
||
462 | 462 | * if $index_numerically == FALSE (Default) keys are what the class names SHOULD be; |
463 | 463 | * and values are their filepaths |
464 | 464 | */ |
465 | - public static function get_contents_of_folders( $folder_paths = array(), $index_numerically = FALSE ){ |
|
465 | + public static function get_contents_of_folders($folder_paths = array(), $index_numerically = FALSE) { |
|
466 | 466 | $class_to_folder_path = array(); |
467 | - foreach( $folder_paths as $folder_path ){ |
|
468 | - $folder_path = self::standardise_and_end_with_directory_separator( $folder_path ); |
|
467 | + foreach ($folder_paths as $folder_path) { |
|
468 | + $folder_path = self::standardise_and_end_with_directory_separator($folder_path); |
|
469 | 469 | // load WP_Filesystem and set file permissions |
470 | - $files_in_folder = glob( $folder_path . '*' ); |
|
470 | + $files_in_folder = glob($folder_path.'*'); |
|
471 | 471 | $class_to_folder_path = array(); |
472 | - if ( $files_in_folder ) { |
|
473 | - foreach( $files_in_folder as $file_path ){ |
|
472 | + if ($files_in_folder) { |
|
473 | + foreach ($files_in_folder as $file_path) { |
|
474 | 474 | //only add files, not folders |
475 | - if ( ! is_dir( $file_path )) { |
|
476 | - if ( $index_numerically ) { |
|
475 | + if ( ! is_dir($file_path)) { |
|
476 | + if ($index_numerically) { |
|
477 | 477 | $class_to_folder_path[] = $file_path; |
478 | 478 | } else { |
479 | - $classname = self::get_classname_from_filepath_with_standard_filename( $file_path ); |
|
479 | + $classname = self::get_classname_from_filepath_with_standard_filename($file_path); |
|
480 | 480 | $class_to_folder_path[$classname] = $file_path; |
481 | 481 | } |
482 | 482 | } |
@@ -496,24 +496,24 @@ discard block |
||
496 | 496 | * @return boolean success |
497 | 497 | * @throws EE_Error |
498 | 498 | */ |
499 | - public static function copy( $source_file, $destination_file, $overwrite = FALSE ){ |
|
500 | - $full_source_path = EEH_File::standardise_directory_separators( $source_file ); |
|
501 | - if( ! EEH_File::exists( $full_source_path ) ){ |
|
502 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
503 | - $msg = sprintf( __( 'The file located at "%2$s" is not readable or doesn\'t exist.', 'event_espresso' ), $full_source_path ); |
|
504 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_source_path ); |
|
505 | - throw new EE_Error( $msg ); |
|
499 | + public static function copy($source_file, $destination_file, $overwrite = FALSE) { |
|
500 | + $full_source_path = EEH_File::standardise_directory_separators($source_file); |
|
501 | + if ( ! EEH_File::exists($full_source_path)) { |
|
502 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
503 | + $msg = sprintf(__('The file located at "%2$s" is not readable or doesn\'t exist.', 'event_espresso'), $full_source_path); |
|
504 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_source_path); |
|
505 | + throw new EE_Error($msg); |
|
506 | 506 | } |
507 | 507 | return FALSE; |
508 | 508 | } |
509 | 509 | |
510 | - $full_dest_path = EEH_File::standardise_directory_separators( $destination_file ); |
|
511 | - $folder = EEH_File::remove_filename_from_filepath( $full_dest_path ); |
|
512 | - if ( ! EEH_File::verify_is_writable( $folder, 'folder' )) { |
|
513 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
514 | - $msg = sprintf( __( 'The file located at "%2$s" is not writable.', 'event_espresso' ), $full_dest_path ); |
|
515 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_dest_path ); |
|
516 | - throw new EE_Error( $msg ); |
|
510 | + $full_dest_path = EEH_File::standardise_directory_separators($destination_file); |
|
511 | + $folder = EEH_File::remove_filename_from_filepath($full_dest_path); |
|
512 | + if ( ! EEH_File::verify_is_writable($folder, 'folder')) { |
|
513 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
514 | + $msg = sprintf(__('The file located at "%2$s" is not writable.', 'event_espresso'), $full_dest_path); |
|
515 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_dest_path); |
|
516 | + throw new EE_Error($msg); |
|
517 | 517 | } |
518 | 518 | return FALSE; |
519 | 519 | } |
@@ -521,11 +521,11 @@ discard block |
||
521 | 521 | // load WP_Filesystem and set file permissions |
522 | 522 | $wp_filesystem = EEH_File::_get_wp_filesystem(); |
523 | 523 | // write the file |
524 | - if ( ! $wp_filesystem->copy( $full_source_path, $full_dest_path, $overwrite )) { |
|
525 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
526 | - $msg = sprintf( __( 'Attempted writing to file %1$s, but could not, probably because of permissions issues', 'event_espresso' ), $full_source_path ); |
|
527 | - $msg .= EEH_File::_permissions_error_for_unreadable_filepath( $full_source_path, 'f' ); |
|
528 | - throw new EE_Error( $msg ); |
|
524 | + if ( ! $wp_filesystem->copy($full_source_path, $full_dest_path, $overwrite)) { |
|
525 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
526 | + $msg = sprintf(__('Attempted writing to file %1$s, but could not, probably because of permissions issues', 'event_espresso'), $full_source_path); |
|
527 | + $msg .= EEH_File::_permissions_error_for_unreadable_filepath($full_source_path, 'f'); |
|
528 | + throw new EE_Error($msg); |
|
529 | 529 | } |
530 | 530 | return FALSE; |
531 | 531 | } |
@@ -1,4 +1,6 @@ |
||
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 | * |
@@ -1,21 +1,21 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | /** |
3 | - * |
|
4 | - * Class EEH_HTML |
|
5 | - * |
|
3 | + * |
|
4 | + * Class EEH_HTML |
|
5 | + * |
|
6 | 6 | * Sometimes when writing PHP you need to generate some standard HTML, |
7 | 7 | * but either not enough to warrant creating a template file, |
8 | 8 | * or the amount of PHP conditionals and/or loops peppered throughout the HTML |
9 | 9 | * just make it really ugly and difficult to read. |
10 | 10 | * This class simply adds a bunch of methods for generating basic HTML tags. |
11 | 11 | * Most of the methods have the same name as the HTML tag they generate, and most have the same set of parameters. |
12 | - * |
|
13 | - * @package Event Espresso |
|
14 | - * @subpackage core |
|
15 | - * @author Brent Christensen |
|
16 | - * @since $VID:$ |
|
17 | - * |
|
18 | - */ |
|
12 | + * |
|
13 | + * @package Event Espresso |
|
14 | + * @subpackage core |
|
15 | + * @author Brent Christensen |
|
16 | + * @since $VID:$ |
|
17 | + * |
|
18 | + */ |
|
19 | 19 | |
20 | 20 | class EEH_HTML { |
21 | 21 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public static function instance() { |
43 | 43 | // check if class object is instantiated, and instantiated properly |
44 | - if ( ! self::$_instance instanceof EEH_HTML ) { |
|
44 | + if ( ! self::$_instance instanceof EEH_HTML) { |
|
45 | 45 | self::$_instance = new EEH_HTML(); |
46 | 46 | } |
47 | 47 | return self::$_instance; |
@@ -93,15 +93,15 @@ discard block |
||
93 | 93 | * @param bool $force_close |
94 | 94 | * @return string |
95 | 95 | */ |
96 | - protected static function _open_tag( $tag = 'div', $content = '', $id = '', $class = '', $style = '', $other_attributes = '', $force_close = FALSE ) { |
|
97 | - $attributes = ! empty( $id ) ? ' id="' . EEH_HTML::sanitize_id( $id ) . '"' : ''; |
|
98 | - $attributes .= ! empty( $class ) ? ' class="' . $class . '"' : ''; |
|
99 | - $attributes .= ! empty( $style ) ? ' style="' . $style . '"' : ''; |
|
100 | - $attributes .= ! empty( $other_attributes ) ? ' ' . $other_attributes : ''; |
|
101 | - $html = EEH_HTML::nl( 0, $tag ) . '<' . $tag . $attributes . '>'; |
|
102 | - $html .= ! empty( $content ) ? EEH_HTML::nl( 1, $tag ) . $content : ''; |
|
103 | - $indent = ! empty( $content ) || $force_close ? TRUE : FALSE; |
|
104 | - $html .= ! empty( $content ) || $force_close ? EEH_HTML::_close_tag( $tag, $id, $class, $indent ) : ''; |
|
96 | + protected static function _open_tag($tag = 'div', $content = '', $id = '', $class = '', $style = '', $other_attributes = '', $force_close = FALSE) { |
|
97 | + $attributes = ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
98 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
99 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
100 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
101 | + $html = EEH_HTML::nl(0, $tag).'<'.$tag.$attributes.'>'; |
|
102 | + $html .= ! empty($content) ? EEH_HTML::nl(1, $tag).$content : ''; |
|
103 | + $indent = ! empty($content) || $force_close ? TRUE : FALSE; |
|
104 | + $html .= ! empty($content) || $force_close ? EEH_HTML::_close_tag($tag, $id, $class, $indent) : ''; |
|
105 | 105 | return $html; |
106 | 106 | } |
107 | 107 | |
@@ -117,16 +117,16 @@ discard block |
||
117 | 117 | * @param bool $indent |
118 | 118 | * @return string |
119 | 119 | */ |
120 | - protected static function _close_tag( $tag = 'div', $id = '', $class = '', $indent = TRUE ) { |
|
121 | - if ( $id ) { |
|
122 | - $comment = EEH_HTML::comment( 'close ' . $id ) . EEH_HTML::nl( 0, $tag ); |
|
123 | - } else if ( $class ) { |
|
124 | - $comment = EEH_HTML::comment( 'close ' . $class ) . EEH_HTML::nl( 0, $tag ); |
|
120 | + protected static function _close_tag($tag = 'div', $id = '', $class = '', $indent = TRUE) { |
|
121 | + if ($id) { |
|
122 | + $comment = EEH_HTML::comment('close '.$id).EEH_HTML::nl(0, $tag); |
|
123 | + } else if ($class) { |
|
124 | + $comment = EEH_HTML::comment('close '.$class).EEH_HTML::nl(0, $tag); |
|
125 | 125 | } else { |
126 | 126 | $comment = ''; |
127 | 127 | } |
128 | 128 | $html = $indent ? EEH_HTML::nl( -1, $tag ) : ''; |
129 | - $html .= '</' . $tag . '>' . $comment; |
|
129 | + $html .= '</'.$tag.'>'.$comment; |
|
130 | 130 | return $html; |
131 | 131 | } |
132 | 132 | |
@@ -145,8 +145,8 @@ discard block |
||
145 | 145 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
146 | 146 | * @return string |
147 | 147 | */ |
148 | - public static function div( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
149 | - return EEH_HTML::_open_tag( 'div', $content, $id, $class, $style, $other_attributes ); |
|
148 | + public static function div($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
149 | + return EEH_HTML::_open_tag('div', $content, $id, $class, $style, $other_attributes); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | * @param string $class - html class attribute |
160 | 160 | * @return string |
161 | 161 | */ |
162 | - public static function divx( $id = '', $class = '' ) { |
|
163 | - return EEH_HTML::_close_tag( 'div', $id, $class ); |
|
162 | + public static function divx($id = '', $class = '') { |
|
163 | + return EEH_HTML::_close_tag('div', $id, $class); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | |
@@ -176,23 +176,23 @@ discard block |
||
176 | 176 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
177 | 177 | * @return string |
178 | 178 | */ |
179 | - public static function h1( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
180 | - return EEH_HTML::_open_tag( 'h1', $content, $id, $class, $style, $other_attributes, TRUE ); |
|
179 | + public static function h1($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
180 | + return EEH_HTML::_open_tag('h1', $content, $id, $class, $style, $other_attributes, TRUE); |
|
181 | 181 | } |
182 | - public static function h2( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
183 | - return EEH_HTML::_open_tag( 'h2', $content, $id, $class, $style, $other_attributes, TRUE ); |
|
182 | + public static function h2($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
183 | + return EEH_HTML::_open_tag('h2', $content, $id, $class, $style, $other_attributes, TRUE); |
|
184 | 184 | } |
185 | - public static function h3( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
186 | - return EEH_HTML::_open_tag( 'h4', $content, $id, $class, $style, $other_attributes, TRUE ); |
|
185 | + public static function h3($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
186 | + return EEH_HTML::_open_tag('h4', $content, $id, $class, $style, $other_attributes, TRUE); |
|
187 | 187 | } |
188 | - public static function h4( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
189 | - return EEH_HTML::_open_tag( 'h4', $content, $id, $class, $style, $other_attributes, TRUE ); |
|
188 | + public static function h4($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
189 | + return EEH_HTML::_open_tag('h4', $content, $id, $class, $style, $other_attributes, TRUE); |
|
190 | 190 | } |
191 | - public static function h5( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
192 | - return EEH_HTML::_open_tag( 'h5', $content, $id, $class, $style, $other_attributes, TRUE ); |
|
191 | + public static function h5($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
192 | + return EEH_HTML::_open_tag('h5', $content, $id, $class, $style, $other_attributes, TRUE); |
|
193 | 193 | } |
194 | - public static function h6( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
195 | - return EEH_HTML::_open_tag( 'h6', $content, $id, $class, $style, $other_attributes, TRUE ); |
|
194 | + public static function h6($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
195 | + return EEH_HTML::_open_tag('h6', $content, $id, $class, $style, $other_attributes, TRUE); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | |
@@ -208,8 +208,8 @@ discard block |
||
208 | 208 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
209 | 209 | * @return string |
210 | 210 | */ |
211 | - public static function p( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
212 | - return EEH_HTML::_open_tag( 'p', $content, $id, $class, $style, $other_attributes, TRUE ); |
|
211 | + public static function p($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
212 | + return EEH_HTML::_open_tag('p', $content, $id, $class, $style, $other_attributes, TRUE); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | |
@@ -224,8 +224,8 @@ discard block |
||
224 | 224 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
225 | 225 | * @return string |
226 | 226 | */ |
227 | - public static function ul( $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
228 | - return EEH_HTML::_open_tag( 'ul', '', $id, $class, $style, $other_attributes ); |
|
227 | + public static function ul($id = '', $class = '', $style = '', $other_attributes = '') { |
|
228 | + return EEH_HTML::_open_tag('ul', '', $id, $class, $style, $other_attributes); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | |
@@ -238,8 +238,8 @@ discard block |
||
238 | 238 | * @param string $class - html class attribute |
239 | 239 | * @return string |
240 | 240 | */ |
241 | - public static function ulx( $id = '', $class = '' ) { |
|
242 | - return EEH_HTML::_close_tag( 'ul', $id, $class ); |
|
241 | + public static function ulx($id = '', $class = '') { |
|
242 | + return EEH_HTML::_close_tag('ul', $id, $class); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
257 | 257 | * @return string |
258 | 258 | */ |
259 | - public static function li( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
260 | - return EEH_HTML::_open_tag( 'li', $content, $id, $class, $style, $other_attributes ); |
|
259 | + public static function li($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
260 | + return EEH_HTML::_open_tag('li', $content, $id, $class, $style, $other_attributes); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | |
@@ -270,8 +270,8 @@ discard block |
||
270 | 270 | * @param string $class - html class attribute |
271 | 271 | * @return string |
272 | 272 | */ |
273 | - public static function lix( $id = '', $class = '' ) { |
|
274 | - return EEH_HTML::_close_tag( 'li', $id, $class ); |
|
273 | + public static function lix($id = '', $class = '') { |
|
274 | + return EEH_HTML::_close_tag('li', $id, $class); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | |
@@ -287,8 +287,8 @@ discard block |
||
287 | 287 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
288 | 288 | * @return string |
289 | 289 | */ |
290 | - public static function table( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
291 | - return EEH_HTML::_open_tag( 'table', $content, $id, $class, $style, $other_attributes ); |
|
290 | + public static function table($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
291 | + return EEH_HTML::_open_tag('table', $content, $id, $class, $style, $other_attributes); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | |
@@ -300,8 +300,8 @@ discard block |
||
300 | 300 | * @param string $class - html class attribute |
301 | 301 | * @return string |
302 | 302 | */ |
303 | - public static function tablex( $id = '', $class = '' ) { |
|
304 | - return EEH_HTML::_close_tag( 'table', $id, $class ); |
|
303 | + public static function tablex($id = '', $class = '') { |
|
304 | + return EEH_HTML::_close_tag('table', $id, $class); |
|
305 | 305 | } |
306 | 306 | |
307 | 307 | |
@@ -317,8 +317,8 @@ discard block |
||
317 | 317 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
318 | 318 | * @return string |
319 | 319 | */ |
320 | - public static function thead( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
321 | - return EEH_HTML::_open_tag( 'thead', $content, $id, $class, $style, $other_attributes ); |
|
320 | + public static function thead($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
321 | + return EEH_HTML::_open_tag('thead', $content, $id, $class, $style, $other_attributes); |
|
322 | 322 | } |
323 | 323 | |
324 | 324 | |
@@ -330,8 +330,8 @@ discard block |
||
330 | 330 | * @param string $class - html class attribute |
331 | 331 | * @return string |
332 | 332 | */ |
333 | - public static function theadx( $id = '', $class = '' ) { |
|
334 | - return EEH_HTML::_close_tag( 'thead', $id, $class ); |
|
333 | + public static function theadx($id = '', $class = '') { |
|
334 | + return EEH_HTML::_close_tag('thead', $id, $class); |
|
335 | 335 | } |
336 | 336 | |
337 | 337 | |
@@ -347,8 +347,8 @@ discard block |
||
347 | 347 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
348 | 348 | * @return string |
349 | 349 | */ |
350 | - public static function tbody( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
351 | - return EEH_HTML::_open_tag( 'tbody', $content, $id, $class, $style, $other_attributes ); |
|
350 | + public static function tbody($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
351 | + return EEH_HTML::_open_tag('tbody', $content, $id, $class, $style, $other_attributes); |
|
352 | 352 | } |
353 | 353 | |
354 | 354 | |
@@ -360,8 +360,8 @@ discard block |
||
360 | 360 | * @param string $class - html class attribute |
361 | 361 | * @return string |
362 | 362 | */ |
363 | - public static function tbodyx( $id = '', $class = '' ) { |
|
364 | - return EEH_HTML::_close_tag( 'tbody', $id, $class ); |
|
363 | + public static function tbodyx($id = '', $class = '') { |
|
364 | + return EEH_HTML::_close_tag('tbody', $id, $class); |
|
365 | 365 | } |
366 | 366 | |
367 | 367 | |
@@ -377,8 +377,8 @@ discard block |
||
377 | 377 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
378 | 378 | * @return string |
379 | 379 | */ |
380 | - public static function tr( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
381 | - return EEH_HTML::_open_tag( 'tr', $content, $id, $class, $style, $other_attributes ); |
|
380 | + public static function tr($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
381 | + return EEH_HTML::_open_tag('tr', $content, $id, $class, $style, $other_attributes); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | |
@@ -390,8 +390,8 @@ discard block |
||
390 | 390 | * @param string $class - html class attribute |
391 | 391 | * @return string |
392 | 392 | */ |
393 | - public static function trx( $id = '', $class = '' ) { |
|
394 | - return EEH_HTML::_close_tag( 'tr', $id, $class ); |
|
393 | + public static function trx($id = '', $class = '') { |
|
394 | + return EEH_HTML::_close_tag('tr', $id, $class); |
|
395 | 395 | } |
396 | 396 | |
397 | 397 | |
@@ -407,8 +407,8 @@ discard block |
||
407 | 407 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
408 | 408 | * @return string |
409 | 409 | */ |
410 | - public static function th( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
411 | - return EEH_HTML::_open_tag( 'th', $content, $id, $class, $style, $other_attributes ); |
|
410 | + public static function th($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
411 | + return EEH_HTML::_open_tag('th', $content, $id, $class, $style, $other_attributes); |
|
412 | 412 | } |
413 | 413 | |
414 | 414 | |
@@ -420,8 +420,8 @@ discard block |
||
420 | 420 | * @param string $class - html class attribute |
421 | 421 | * @return string |
422 | 422 | */ |
423 | - public static function thx( $id = '', $class = '' ) { |
|
424 | - return EEH_HTML::_close_tag( 'th', $id, $class ); |
|
423 | + public static function thx($id = '', $class = '') { |
|
424 | + return EEH_HTML::_close_tag('th', $id, $class); |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | |
@@ -437,8 +437,8 @@ discard block |
||
437 | 437 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
438 | 438 | * @return string |
439 | 439 | */ |
440 | - public static function td( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
441 | - return EEH_HTML::_open_tag( 'td', $content, $id, $class, $style, $other_attributes ); |
|
440 | + public static function td($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
441 | + return EEH_HTML::_open_tag('td', $content, $id, $class, $style, $other_attributes); |
|
442 | 442 | } |
443 | 443 | |
444 | 444 | |
@@ -450,8 +450,8 @@ discard block |
||
450 | 450 | * @param string $class - html class attribute |
451 | 451 | * @return string |
452 | 452 | */ |
453 | - public static function tdx( $id = '', $class = '' ) { |
|
454 | - return EEH_HTML::_close_tag( 'td', $id, $class ); |
|
453 | + public static function tdx($id = '', $class = '') { |
|
454 | + return EEH_HTML::_close_tag('td', $id, $class); |
|
455 | 455 | } |
456 | 456 | |
457 | 457 | |
@@ -465,10 +465,10 @@ discard block |
||
465 | 465 | * @param int $colspan |
466 | 466 | * @return string |
467 | 467 | */ |
468 | - public static function no_row( $content = '', $colspan = 2 ) { |
|
468 | + public static function no_row($content = '', $colspan = 2) { |
|
469 | 469 | return EEH_HTML::tr( |
470 | - EEH_HTML::td( $content, '', '', 'padding:0; border:none;', 'colspan="' . $colspan . '"' ), |
|
471 | - '', '', 'padding:0; border:none;' |
|
470 | + EEH_HTML::td($content, '', '', 'padding:0; border:none;', 'colspan="'.$colspan.'"'), |
|
471 | + '', '', 'padding:0; border:none;' |
|
472 | 472 | ); |
473 | 473 | } |
474 | 474 | |
@@ -488,14 +488,14 @@ discard block |
||
488 | 488 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
489 | 489 | * @return string |
490 | 490 | */ |
491 | - public static function link( $href = '', $link_text = '', $title = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
492 | - $link_text = ! empty( $link_text ) ? $link_text : $href; |
|
493 | - $attributes = ! empty( $id ) ? ' id="' . EEH_HTML::sanitize_id( $id ) . '"' : ''; |
|
494 | - $attributes .= ! empty( $class ) ? ' class="' . $class . '"' : ''; |
|
495 | - $attributes .= ! empty( $style ) ? ' style="' . $style . '"' : ''; |
|
496 | - $attributes .= ! empty( $title ) ? ' title="' . esc_attr( $title ) . '"' : ''; |
|
497 | - $attributes .= ! empty( $other_attributes ) ? ' ' . $other_attributes : ''; |
|
498 | - return '<a href="' . $href . '" ' . $attributes . '>' . $link_text . '</a>'; |
|
491 | + public static function link($href = '', $link_text = '', $title = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
492 | + $link_text = ! empty($link_text) ? $link_text : $href; |
|
493 | + $attributes = ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
494 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
495 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
496 | + $attributes .= ! empty($title) ? ' title="'.esc_attr($title).'"' : ''; |
|
497 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
498 | + return '<a href="'.$href.'" '.$attributes.'>'.$link_text.'</a>'; |
|
499 | 499 | } |
500 | 500 | |
501 | 501 | |
@@ -512,14 +512,14 @@ discard block |
||
512 | 512 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
513 | 513 | * @return string |
514 | 514 | */ |
515 | - public static function img( $src = '', $alt = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
516 | - $attributes = ! empty( $src ) ? ' src="' . esc_url_raw( $src ) . '"' : ''; |
|
517 | - $attributes .= ! empty( $alt ) ? ' alt="' . esc_attr( $alt ) . '"' : ''; |
|
518 | - $attributes .= ! empty( $id ) ? ' id="' . EEH_HTML::sanitize_id( $id ) . '"' : ''; |
|
519 | - $attributes .= ! empty( $class ) ? ' class="' . $class . '"' : ''; |
|
520 | - $attributes .= ! empty( $style ) ? ' style="' . $style . '"' : ''; |
|
521 | - $attributes .= ! empty( $other_attributes ) ? ' ' . $other_attributes : ''; |
|
522 | - return '<img' . $attributes . '/>'; |
|
515 | + public static function img($src = '', $alt = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
516 | + $attributes = ! empty($src) ? ' src="'.esc_url_raw($src).'"' : ''; |
|
517 | + $attributes .= ! empty($alt) ? ' alt="'.esc_attr($alt).'"' : ''; |
|
518 | + $attributes .= ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
519 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
520 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
521 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
522 | + return '<img'.$attributes.'/>'; |
|
523 | 523 | } |
524 | 524 | |
525 | 525 | |
@@ -537,12 +537,12 @@ discard block |
||
537 | 537 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
538 | 538 | * @return string |
539 | 539 | */ |
540 | - protected static function _inline_tag( $tag = 'span', $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
541 | - $attributes = ! empty( $id ) ? ' id="' . EEH_HTML::sanitize_id( $id ) . '"' : ''; |
|
542 | - $attributes .= ! empty( $class ) ? ' class="' . $class . '"' : ''; |
|
543 | - $attributes .= ! empty( $style ) ? ' style="' . $style . '"' : ''; |
|
544 | - $attributes .= ! empty( $other_attributes ) ? ' ' . $other_attributes : ''; |
|
545 | - return '<' . $tag . ' ' . $attributes . '>' . $content . '</' . $tag . '>'; |
|
540 | + protected static function _inline_tag($tag = 'span', $content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
541 | + $attributes = ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
542 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
543 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
544 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
545 | + return '<'.$tag.' '.$attributes.'>'.$content.'</'.$tag.'>'; |
|
546 | 546 | } |
547 | 547 | |
548 | 548 | |
@@ -558,8 +558,8 @@ discard block |
||
558 | 558 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
559 | 559 | * @return string |
560 | 560 | */ |
561 | - public static function label( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
562 | - return EEH_HTML::_inline_tag( 'label', $content, $id, $class, $style, $other_attributes ); |
|
561 | + public static function label($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
562 | + return EEH_HTML::_inline_tag('label', $content, $id, $class, $style, $other_attributes); |
|
563 | 563 | } |
564 | 564 | |
565 | 565 | |
@@ -575,8 +575,8 @@ discard block |
||
575 | 575 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
576 | 576 | * @return string |
577 | 577 | */ |
578 | - public static function span( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
579 | - return EEH_HTML::_inline_tag( 'span', $content, $id, $class, $style, $other_attributes ); |
|
578 | + public static function span($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
579 | + return EEH_HTML::_inline_tag('span', $content, $id, $class, $style, $other_attributes); |
|
580 | 580 | } |
581 | 581 | |
582 | 582 | |
@@ -592,8 +592,8 @@ discard block |
||
592 | 592 | * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
593 | 593 | * @return string |
594 | 594 | */ |
595 | - public static function strong( $content = '', $id = '', $class = '', $style = '', $other_attributes = '' ) { |
|
596 | - return EEH_HTML::_inline_tag( 'strong', $content, $id, $class, $style, $other_attributes ); |
|
595 | + public static function strong($content = '', $id = '', $class = '', $style = '', $other_attributes = '') { |
|
596 | + return EEH_HTML::_inline_tag('strong', $content, $id, $class, $style, $other_attributes); |
|
597 | 597 | } |
598 | 598 | |
599 | 599 | |
@@ -605,8 +605,8 @@ discard block |
||
605 | 605 | * @param string $comment |
606 | 606 | * @return string |
607 | 607 | */ |
608 | - public static function comment( $comment = '' ) { |
|
609 | - return ! empty( $comment ) ? EEH_HTML::nl() . '<!-- ' . $comment . ' -->' : ''; |
|
608 | + public static function comment($comment = '') { |
|
609 | + return ! empty($comment) ? EEH_HTML::nl().'<!-- '.$comment.' -->' : ''; |
|
610 | 610 | } |
611 | 611 | |
612 | 612 | |
@@ -617,8 +617,8 @@ discard block |
||
617 | 617 | * @param int $nmbr - the number of line breaks to return |
618 | 618 | * @return string |
619 | 619 | */ |
620 | - public static function br( $nmbr = 1 ) { |
|
621 | - return str_repeat( '<br />', $nmbr ); |
|
620 | + public static function br($nmbr = 1) { |
|
621 | + return str_repeat('<br />', $nmbr); |
|
622 | 622 | } |
623 | 623 | |
624 | 624 | |
@@ -629,8 +629,8 @@ discard block |
||
629 | 629 | * @param int $nmbr - the number of non-breaking spaces to return |
630 | 630 | * @return string |
631 | 631 | */ |
632 | - public static function nbsp( $nmbr = 1 ) { |
|
633 | - return str_repeat( ' ', $nmbr ); |
|
632 | + public static function nbsp($nmbr = 1) { |
|
633 | + return str_repeat(' ', $nmbr); |
|
634 | 634 | } |
635 | 635 | |
636 | 636 | |
@@ -644,9 +644,9 @@ discard block |
||
644 | 644 | * @param string $id |
645 | 645 | * @return string |
646 | 646 | */ |
647 | - public static function sanitize_id( $id = '' ) { |
|
648 | - $key = str_replace( ' ', '-', trim( $id ) ); |
|
649 | - return preg_replace( '/[^a-zA-Z0-9_\-]/', '', $key ); |
|
647 | + public static function sanitize_id($id = '') { |
|
648 | + $key = str_replace(' ', '-', trim($id)); |
|
649 | + return preg_replace('/[^a-zA-Z0-9_\-]/', '', $key); |
|
650 | 650 | } |
651 | 651 | |
652 | 652 | |
@@ -658,10 +658,10 @@ discard block |
||
658 | 658 | * @param string $tag |
659 | 659 | * @return string - newline character plus # of indents passed (can be + or -) |
660 | 660 | */ |
661 | - public static function nl( $indent = 0, $tag = 'none' ) { |
|
661 | + public static function nl($indent = 0, $tag = 'none') { |
|
662 | 662 | $html = "\n"; |
663 | - EEH_HTML::indent( $indent, $tag ); |
|
664 | - for ( $x = 0; $x < EEH_HTML::$_indent[ $tag ]; $x++ ) { |
|
663 | + EEH_HTML::indent($indent, $tag); |
|
664 | + for ($x = 0; $x < EEH_HTML::$_indent[$tag]; $x++) { |
|
665 | 665 | $html .= "\t"; |
666 | 666 | } |
667 | 667 | return $html; |
@@ -676,17 +676,17 @@ discard block |
||
676 | 676 | * @param int $indent can be negative to decrease the indentation level |
677 | 677 | * @param string $tag |
678 | 678 | */ |
679 | - public static function indent( $indent, $tag = 'none' ){ |
|
679 | + public static function indent($indent, $tag = 'none') { |
|
680 | 680 | static $default_indentation = FALSE; |
681 | - if ( ! $default_indentation ) { |
|
681 | + if ( ! $default_indentation) { |
|
682 | 682 | EEH_HTML::_set_default_indentation(); |
683 | 683 | $default_indentation = TRUE; |
684 | 684 | } |
685 | - if ( ! isset( EEH_HTML::$_indent[ $tag ] )) { |
|
686 | - EEH_HTML::$_indent[ $tag ] = 0; |
|
685 | + if ( ! isset(EEH_HTML::$_indent[$tag])) { |
|
686 | + EEH_HTML::$_indent[$tag] = 0; |
|
687 | 687 | } |
688 | - EEH_HTML::$_indent[ $tag ] += intval( $indent ); |
|
689 | - EEH_HTML::$_indent[ $tag ] = EEH_HTML::$_indent[ $tag ] >= 0 ? EEH_HTML::$_indent[ $tag ] : 0; |
|
688 | + EEH_HTML::$_indent[$tag] += intval($indent); |
|
689 | + EEH_HTML::$_indent[$tag] = EEH_HTML::$_indent[$tag] >= 0 ? EEH_HTML::$_indent[$tag] : 0; |
|
690 | 690 | } |
691 | 691 | |
692 | 692 |
@@ -1,6 +1,6 @@ discard block |
||
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 | /** |
@@ -46,20 +46,20 @@ discard block |
||
46 | 46 | * @throws \EE_Error |
47 | 47 | * @return array|bool array of data required for the redirect to the correct edit page or FALSE if encountering problems. |
48 | 48 | */ |
49 | - public static function generate_new_templates($messenger, $message_types, $GRP_ID = 0, $global = FALSE) { |
|
49 | + public static function generate_new_templates($messenger, $message_types, $GRP_ID = 0, $global = FALSE) { |
|
50 | 50 | |
51 | 51 | //make sure message_type is an array. |
52 | 52 | $message_types = (array) $message_types; |
53 | 53 | $templates = array(); |
54 | 54 | $success = TRUE; |
55 | 55 | |
56 | - if ( empty($messenger) ) { |
|
57 | - throw new EE_Error( __('We need a messenger to generate templates!', 'event_espresso') ); |
|
56 | + if (empty($messenger)) { |
|
57 | + throw new EE_Error(__('We need a messenger to generate templates!', 'event_espresso')); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | //if we STILL have empty $message_types then we need to generate an error message b/c we NEED message types to do the template files. |
61 | - if ( empty($message_types) ) { |
|
62 | - throw new EE_Error( __('We need at least one message type to generate templates!', 'event_espresso') ); |
|
61 | + if (empty($message_types)) { |
|
62 | + throw new EE_Error(__('We need at least one message type to generate templates!', 'event_espresso')); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | self::_set_autoloader(); |
@@ -67,25 +67,25 @@ discard block |
||
67 | 67 | |
68 | 68 | $MSG = new EE_messages(); |
69 | 69 | |
70 | - foreach ( $message_types as $message_type ) { |
|
70 | + foreach ($message_types as $message_type) { |
|
71 | 71 | //if global then let's attempt to get the GRP_ID for this combo IF GRP_ID is empty. |
72 | - if ( $global && empty( $GRP_ID ) ) { |
|
73 | - $GRP_ID = EEM_Message_Template_Group::instance()->get_one( array( array( 'MTP_messenger' => $messenger, 'MTP_message_type' => $message_type, 'MTP_is_global' => TRUE ) ) ); |
|
72 | + if ($global && empty($GRP_ID)) { |
|
73 | + $GRP_ID = EEM_Message_Template_Group::instance()->get_one(array(array('MTP_messenger' => $messenger, 'MTP_message_type' => $message_type, 'MTP_is_global' => TRUE))); |
|
74 | 74 | $GRP_ID = $GRP_ID instanceof EE_Message_Template_Group ? $GRP_ID->ID() : 0; |
75 | 75 | } |
76 | 76 | //if this is global template generation. First let's determine if we already HAVE global templates for this messenger and message_type combination. If we do then NO generation!! |
77 | - if ( $global && self::already_generated($messenger, $message_type, $GRP_ID ) ) { |
|
77 | + if ($global && self::already_generated($messenger, $message_type, $GRP_ID)) { |
|
78 | 78 | $templates = TRUE; |
79 | 79 | continue; //get out we've already got generated templates for this. |
80 | 80 | } |
81 | 81 | |
82 | 82 | $new_message_template_group = $MSG->create_new_templates($messenger, $message_type, $GRP_ID, $global); |
83 | 83 | |
84 | - if ( !$new_message_template_group ) { |
|
84 | + if ( ! $new_message_template_group) { |
|
85 | 85 | $success = FALSE; |
86 | 86 | continue; |
87 | 87 | } |
88 | - if ( $templates === TRUE ) $templates = array(); |
|
88 | + if ($templates === TRUE) $templates = array(); |
|
89 | 89 | $templates[] = $new_message_template_group; |
90 | 90 | } |
91 | 91 | |
@@ -101,18 +101,18 @@ discard block |
||
101 | 101 | * @param bool $update_to_active if true then we also toggle the template to active. |
102 | 102 | * @return bool true = generated, false = hasn't been generated. |
103 | 103 | */ |
104 | - public static function already_generated( $messenger, $message_type, $GRP_ID = 0, $update_to_active = TRUE ) { |
|
104 | + public static function already_generated($messenger, $message_type, $GRP_ID = 0, $update_to_active = TRUE) { |
|
105 | 105 | self::_set_autoloader(); |
106 | 106 | $MTP = EEM_Message_Template::instance(); |
107 | 107 | |
108 | 108 | //what method we use depends on whether we have an GRP_ID or not |
109 | - $count = empty( $GRP_ID ) ? EEM_Message_Template::instance()->count( array( array( 'Message_Template_Group.MTP_messenger' => $messenger, 'Message_Template_Group.MTP_message_type' => $message_type, 'Message_Template_Group.MTP_is_global' => TRUE ) ) ) : $MTP->count( array( array( 'GRP_ID' => $GRP_ID ) ) ); |
|
109 | + $count = empty($GRP_ID) ? EEM_Message_Template::instance()->count(array(array('Message_Template_Group.MTP_messenger' => $messenger, 'Message_Template_Group.MTP_message_type' => $message_type, 'Message_Template_Group.MTP_is_global' => TRUE))) : $MTP->count(array(array('GRP_ID' => $GRP_ID))); |
|
110 | 110 | |
111 | - if ( $update_to_active ) { |
|
112 | - self::update_to_active( $messenger, $message_type ); |
|
111 | + if ($update_to_active) { |
|
112 | + self::update_to_active($messenger, $message_type); |
|
113 | 113 | } |
114 | 114 | |
115 | - return ( $count > 0 ) ? TRUE : FALSE; |
|
115 | + return ($count > 0) ? TRUE : FALSE; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | * @static |
127 | 127 | * @return int count of updated records. |
128 | 128 | */ |
129 | - public static function update_to_active( $messenger, $message_type ) { |
|
130 | - return EEM_Message_Template_Group::instance()->update( array('MTP_is_active' => 1), array(array('MTP_messenger' => $messenger, 'MTP_message_type' => $message_type )) ); |
|
129 | + public static function update_to_active($messenger, $message_type) { |
|
130 | + return EEM_Message_Template_Group::instance()->update(array('MTP_is_active' => 1), array(array('MTP_messenger' => $messenger, 'MTP_message_type' => $message_type))); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | |
@@ -140,18 +140,18 @@ discard block |
||
140 | 140 | * |
141 | 141 | * @return int count of updated records. |
142 | 142 | */ |
143 | - public static function update_to_inactive( $messenger = '', $message_type = '' ) { |
|
143 | + public static function update_to_inactive($messenger = '', $message_type = '') { |
|
144 | 144 | $query_args = array(); |
145 | - if ( empty( $messenger ) && empty( $message_type ) ) |
|
145 | + if (empty($messenger) && empty($message_type)) |
|
146 | 146 | return 0; |
147 | - if ( ! empty( $messenger ) ) { |
|
147 | + if ( ! empty($messenger)) { |
|
148 | 148 | $query_args[0]['MTP_messenger'] = $messenger; |
149 | 149 | } |
150 | 150 | |
151 | - if ( ! empty( $message_type ) ) { |
|
151 | + if ( ! empty($message_type)) { |
|
152 | 152 | $query_args[0]['MTP_message_type'] = $message_type; |
153 | 153 | } |
154 | - return EEM_Message_Template_Group::instance()->update( array( 'MTP_is_active' => FALSE ), $query_args ); |
|
154 | + return EEM_Message_Template_Group::instance()->update(array('MTP_is_active' => FALSE), $query_args); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | |
@@ -189,39 +189,39 @@ discard block |
||
189 | 189 | * OR |
190 | 190 | * FALSE if no shortcodes found. |
191 | 191 | */ |
192 | - public static function get_shortcodes( $message_type, $messenger, $fields = array(), $context = 'admin', $merged = FALSE ) { |
|
192 | + public static function get_shortcodes($message_type, $messenger, $fields = array(), $context = 'admin', $merged = FALSE) { |
|
193 | 193 | |
194 | - $messenger_name = str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $messenger ) ) ); |
|
195 | - $mt_name = str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $message_type ) ) ); |
|
194 | + $messenger_name = str_replace(' ', '_', ucwords(str_replace('_', ' ', $messenger))); |
|
195 | + $mt_name = str_replace(' ', '_', ucwords(str_replace('_', ' ', $message_type))); |
|
196 | 196 | |
197 | 197 | //convert slug to object |
198 | - $messenger = self::messenger_obj( $messenger ); |
|
198 | + $messenger = self::messenger_obj($messenger); |
|
199 | 199 | |
200 | 200 | //validate class for getting our list of shortcodes |
201 | - $classname = 'EE_Messages_' . $messenger_name . '_' . $mt_name . '_Validator'; |
|
202 | - if ( !class_exists( $classname ) ) { |
|
203 | - $msg[] = __( 'The Validator class was unable to load', 'event_espresso'); |
|
204 | - $msg[] = sprintf( __('The class name compiled was %s. Please check and make sure the spelling and case is correct for the class name and that there is an autoloader in place for this class', 'event_espresso'), $classname ); |
|
205 | - throw new EE_Error( implode( '||', $msg ) ); |
|
201 | + $classname = 'EE_Messages_'.$messenger_name.'_'.$mt_name.'_Validator'; |
|
202 | + if ( ! class_exists($classname)) { |
|
203 | + $msg[] = __('The Validator class was unable to load', 'event_espresso'); |
|
204 | + $msg[] = sprintf(__('The class name compiled was %s. Please check and make sure the spelling and case is correct for the class name and that there is an autoloader in place for this class', 'event_espresso'), $classname); |
|
205 | + throw new EE_Error(implode('||', $msg)); |
|
206 | 206 | } |
207 | 207 | |
208 | - $a = new ReflectionClass( $classname ); |
|
209 | - $_VLD = $a->newInstance( array(), $context ); |
|
208 | + $a = new ReflectionClass($classname); |
|
209 | + $_VLD = $a->newInstance(array(), $context); |
|
210 | 210 | $valid_shortcodes = $_VLD->get_validators(); |
211 | 211 | |
212 | 212 | //let's make sure we're only getting the shortcode part of the validators |
213 | 213 | $shortcodes = array(); |
214 | - foreach( $valid_shortcodes as $field => $validators ) { |
|
214 | + foreach ($valid_shortcodes as $field => $validators) { |
|
215 | 215 | $shortcodes[$field] = $validators['shortcodes']; |
216 | 216 | $fields[] = $field; |
217 | 217 | } |
218 | 218 | $valid_shortcodes = $shortcodes; |
219 | 219 | |
220 | 220 | //if not all fields let's make sure we ONLY include the shortcodes for the specified fields. |
221 | - if ( ! empty( $fields ) ) { |
|
221 | + if ( ! empty($fields)) { |
|
222 | 222 | $specified_shortcodes = array(); |
223 | - foreach ( $fields as $field ) { |
|
224 | - if ( isset( $valid_shortcodes[$field] ) ) |
|
223 | + foreach ($fields as $field) { |
|
224 | + if (isset($valid_shortcodes[$field])) |
|
225 | 225 | $specified_shortcodes[$field] = $valid_shortcodes[$field]; |
226 | 226 | } |
227 | 227 | $valid_shortcodes = $specified_shortcodes; |
@@ -229,16 +229,16 @@ discard block |
||
229 | 229 | |
230 | 230 | |
231 | 231 | //if not merged then let's replace the fields with the localized fields |
232 | - if ( ! $merged ) { |
|
232 | + if ( ! $merged) { |
|
233 | 233 | //let's get all the fields for the set messenger so that we can get the localized label and use that in the returned array. |
234 | 234 | $field_settings = $messenger->get_template_fields(); |
235 | 235 | $localized = array(); |
236 | - foreach ( $valid_shortcodes as $field => $shortcodes ) { |
|
236 | + foreach ($valid_shortcodes as $field => $shortcodes) { |
|
237 | 237 | //get localized field label |
238 | - if ( isset( $field_settings[$field] ) ) { |
|
238 | + if (isset($field_settings[$field])) { |
|
239 | 239 | //possible that this is used as a main field. |
240 | - if ( empty( $field_settings[$field] ) ) { |
|
241 | - if ( isset( $field_settings['extra'][$field] ) ) { |
|
240 | + if (empty($field_settings[$field])) { |
|
241 | + if (isset($field_settings['extra'][$field])) { |
|
242 | 242 | $_field = $field_settings['extra'][$field]['main']['label']; |
243 | 243 | } else { |
244 | 244 | $_field = $field; |
@@ -246,10 +246,10 @@ discard block |
||
246 | 246 | } else { |
247 | 247 | $_field = $field_settings[$field]['label']; |
248 | 248 | } |
249 | - } else if ( isset( $field_settings['extra'] ) ) { |
|
249 | + } else if (isset($field_settings['extra'])) { |
|
250 | 250 | //loop through extra "main fields" and see if any of their children have our field |
251 | - foreach ( $field_settings['extra'] as $main_field => $fields ) { |
|
252 | - if ( isset( $fields[$field] ) ) |
|
251 | + foreach ($field_settings['extra'] as $main_field => $fields) { |
|
252 | + if (isset($fields[$field])) |
|
253 | 253 | $_field = $fields[$field]['label']; |
254 | 254 | else |
255 | 255 | $_field = $field; |
@@ -257,8 +257,8 @@ discard block |
||
257 | 257 | } else { |
258 | 258 | $_field = $field; |
259 | 259 | } |
260 | - if ( isset( $_field )) { |
|
261 | - $localized[ $_field ] = $shortcodes; |
|
260 | + if (isset($_field)) { |
|
261 | + $localized[$_field] = $shortcodes; |
|
262 | 262 | } |
263 | 263 | } |
264 | 264 | $valid_shortcodes = $localized; |
@@ -266,11 +266,11 @@ discard block |
||
266 | 266 | |
267 | 267 | |
268 | 268 | //if $merged then let's merge all the shortcodes into one list NOT indexed by field. |
269 | - if ( $merged ) { |
|
269 | + if ($merged) { |
|
270 | 270 | $merged_codes = array(); |
271 | - foreach ( $valid_shortcodes as $field => $shortcode ) { |
|
272 | - foreach ( $shortcode as $code => $label ) { |
|
273 | - if ( isset( $merged_codes[$code] ) ) |
|
271 | + foreach ($valid_shortcodes as $field => $shortcode) { |
|
272 | + foreach ($shortcode as $code => $label) { |
|
273 | + if (isset($merged_codes[$code])) |
|
274 | 274 | continue; |
275 | 275 | else |
276 | 276 | $merged_codes[$code] = $label; |
@@ -292,15 +292,15 @@ discard block |
||
292 | 292 | * @throws \EE_Error |
293 | 293 | * @return EE_messenger |
294 | 294 | */ |
295 | - public static function messenger_obj( $messenger ) { |
|
296 | - $ref = ucwords( str_replace( '_', ' ', $messenger ) ); |
|
297 | - $ref = str_replace( ' ', '_', $ref ); |
|
298 | - $classname = 'EE_' . $ref . '_messenger'; |
|
295 | + public static function messenger_obj($messenger) { |
|
296 | + $ref = ucwords(str_replace('_', ' ', $messenger)); |
|
297 | + $ref = str_replace(' ', '_', $ref); |
|
298 | + $classname = 'EE_'.$ref.'_messenger'; |
|
299 | 299 | |
300 | - if ( !class_exists($classname) ) { |
|
300 | + if ( ! class_exists($classname)) { |
|
301 | 301 | $msg[] = __('Messenger class loading fail.', 'event_espresso'); |
302 | - $msg[] = sprintf( __('The class name checked was "%s". Please check the spelling and case of this reference and make sure it matches the appropriate messenger file name (minus the extension) in the "/core/messages/messenger/" directory', 'event_espresso'), $classname ); |
|
303 | - throw new EE_Error( implode( '||', $msg ) ); |
|
302 | + $msg[] = sprintf(__('The class name checked was "%s". Please check the spelling and case of this reference and make sure it matches the appropriate messenger file name (minus the extension) in the "/core/messages/messenger/" directory', 'event_espresso'), $classname); |
|
303 | + throw new EE_Error(implode('||', $msg)); |
|
304 | 304 | } |
305 | 305 | |
306 | 306 | //made it here so let's instantiate the object and return it. |
@@ -318,15 +318,15 @@ discard block |
||
318 | 318 | * @throws \EE_Error |
319 | 319 | * @return EE_message_type |
320 | 320 | */ |
321 | - public static function message_type_obj( $message_type ) { |
|
322 | - $ref = ucwords( str_replace( '_', ' ', $message_type ) ); |
|
323 | - $ref = str_replace( ' ', '_', $ref ); |
|
324 | - $classname = 'EE_' . $ref . '_message_type'; |
|
321 | + public static function message_type_obj($message_type) { |
|
322 | + $ref = ucwords(str_replace('_', ' ', $message_type)); |
|
323 | + $ref = str_replace(' ', '_', $ref); |
|
324 | + $classname = 'EE_'.$ref.'_message_type'; |
|
325 | 325 | |
326 | - if ( !class_exists($classname) ) { |
|
326 | + if ( ! class_exists($classname)) { |
|
327 | 327 | $msg[] = __('Message Type class loading fail.', 'event_espresso'); |
328 | - $msg[] = sprintf( __('The class name checked was "%s". Please check the spelling and case of this reference and make sure it matches the appropriate message type file name (minus the extension) in the "/core/messages/message_type/" directory', 'event_espresso'), $classname ); |
|
329 | - throw new EE_Error( implode( '||', $msg ) ); |
|
328 | + $msg[] = sprintf(__('The class name checked was "%s". Please check the spelling and case of this reference and make sure it matches the appropriate message type file name (minus the extension) in the "/core/messages/message_type/" directory', 'event_espresso'), $classname); |
|
329 | + throw new EE_Error(implode('||', $msg)); |
|
330 | 330 | } |
331 | 331 | |
332 | 332 | //made it here so let's instantiate the object and return it. |
@@ -345,10 +345,10 @@ discard block |
||
345 | 345 | * @param string $message_type message type to check for. |
346 | 346 | * @return boolean |
347 | 347 | */ |
348 | - public static function is_mt_active( $message_type ) { |
|
348 | + public static function is_mt_active($message_type) { |
|
349 | 349 | self::_set_autoloader(); |
350 | - $active_mts = EE_Registry::instance()->load_lib( 'messages' )->get_active_message_types(); |
|
351 | - return in_array( $message_type, $active_mts ); |
|
350 | + $active_mts = EE_Registry::instance()->load_lib('messages')->get_active_message_types(); |
|
351 | + return in_array($message_type, $active_mts); |
|
352 | 352 | } |
353 | 353 | |
354 | 354 | |
@@ -361,10 +361,10 @@ discard block |
||
361 | 361 | * @param string $messenger slug for messenger to check. |
362 | 362 | * @return boolean |
363 | 363 | */ |
364 | - public static function is_messenger_active( $messenger ) { |
|
364 | + public static function is_messenger_active($messenger) { |
|
365 | 365 | self::_set_autoloader(); |
366 | 366 | $active_messengers = EE_Registry::instance()->load_lib('messages')->get_active_messengers(); |
367 | - return isset( $active_messengers[ $messenger ] ); |
|
367 | + return isset($active_messengers[$messenger]); |
|
368 | 368 | } |
369 | 369 | |
370 | 370 | |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | * @return array |
379 | 379 | */ |
380 | 380 | public static function get_active_messengers_in_db() { |
381 | - return apply_filters( 'FHEE__EEH_MSG_Template__get_active_messengers_in_db', get_option( 'ee_active_messengers', array() ) ); |
|
381 | + return apply_filters('FHEE__EEH_MSG_Template__get_active_messengers_in_db', get_option('ee_active_messengers', array())); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | |
@@ -393,8 +393,8 @@ discard block |
||
393 | 393 | * |
394 | 394 | * @return bool FALSE if not updated, TRUE if updated. |
395 | 395 | */ |
396 | - public static function update_active_messengers_in_db( $data_to_save ) { |
|
397 | - return update_option( 'ee_active_messengers', $data_to_save ); |
|
396 | + public static function update_active_messengers_in_db($data_to_save) { |
|
397 | + return update_option('ee_active_messengers', $data_to_save); |
|
398 | 398 | } |
399 | 399 | |
400 | 400 | |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | * |
414 | 414 | * @return string The generated url. |
415 | 415 | */ |
416 | - public static function generate_url_trigger( $sending_messenger, $generating_messenger, $context, $message_type, EE_Registration $registration, $message_template_group, $data_id ) { |
|
416 | + public static function generate_url_trigger($sending_messenger, $generating_messenger, $context, $message_type, EE_Registration $registration, $message_template_group, $data_id) { |
|
417 | 417 | $query_args = array( |
418 | 418 | 'ee' => 'msg_url_trigger', |
419 | 419 | 'snd_msgr' => $sending_messenger, |
@@ -424,10 +424,10 @@ discard block |
||
424 | 424 | 'GRP_ID' => $message_template_group, |
425 | 425 | 'id' => $data_id |
426 | 426 | ); |
427 | - $url = add_query_arg( $query_args, get_site_url() ); |
|
427 | + $url = add_query_arg($query_args, get_site_url()); |
|
428 | 428 | |
429 | 429 | //made it here so now we can just get the url and filter it. Filtered globally and by message type. |
430 | - $url = apply_filters( 'FHEE__EEH_MSG_Template__generate_url_trigger', $url, $sending_messenger, $generating_messenger, $context, $message_type, $registration, $message_template_group, $data_id ); |
|
430 | + $url = apply_filters('FHEE__EEH_MSG_Template__generate_url_trigger', $url, $sending_messenger, $generating_messenger, $context, $message_type, $registration, $message_template_group, $data_id); |
|
431 | 431 | |
432 | 432 | return $url; |
433 | 433 | } |
@@ -1,7 +1,8 @@ discard block |
||
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 |
@@ -85,7 +86,9 @@ discard block |
||
85 | 86 | $success = FALSE; |
86 | 87 | continue; |
87 | 88 | } |
88 | - if ( $templates === TRUE ) $templates = array(); |
|
89 | + if ( $templates === TRUE ) { |
|
90 | + $templates = array(); |
|
91 | + } |
|
89 | 92 | $templates[] = $new_message_template_group; |
90 | 93 | } |
91 | 94 | |
@@ -142,8 +145,9 @@ discard block |
||
142 | 145 | */ |
143 | 146 | public static function update_to_inactive( $messenger = '', $message_type = '' ) { |
144 | 147 | $query_args = array(); |
145 | - if ( empty( $messenger ) && empty( $message_type ) ) |
|
146 | - return 0; |
|
148 | + if ( empty( $messenger ) && empty( $message_type ) ) { |
|
149 | + return 0; |
|
150 | + } |
|
147 | 151 | if ( ! empty( $messenger ) ) { |
148 | 152 | $query_args[0]['MTP_messenger'] = $messenger; |
149 | 153 | } |
@@ -221,8 +225,9 @@ discard block |
||
221 | 225 | if ( ! empty( $fields ) ) { |
222 | 226 | $specified_shortcodes = array(); |
223 | 227 | foreach ( $fields as $field ) { |
224 | - if ( isset( $valid_shortcodes[$field] ) ) |
|
225 | - $specified_shortcodes[$field] = $valid_shortcodes[$field]; |
|
228 | + if ( isset( $valid_shortcodes[$field] ) ) { |
|
229 | + $specified_shortcodes[$field] = $valid_shortcodes[$field]; |
|
230 | + } |
|
226 | 231 | } |
227 | 232 | $valid_shortcodes = $specified_shortcodes; |
228 | 233 | } |
@@ -249,10 +254,11 @@ discard block |
||
249 | 254 | } else if ( isset( $field_settings['extra'] ) ) { |
250 | 255 | //loop through extra "main fields" and see if any of their children have our field |
251 | 256 | foreach ( $field_settings['extra'] as $main_field => $fields ) { |
252 | - if ( isset( $fields[$field] ) ) |
|
253 | - $_field = $fields[$field]['label']; |
|
254 | - else |
|
255 | - $_field = $field; |
|
257 | + if ( isset( $fields[$field] ) ) { |
|
258 | + $_field = $fields[$field]['label']; |
|
259 | + } else { |
|
260 | + $_field = $field; |
|
261 | + } |
|
256 | 262 | } |
257 | 263 | } else { |
258 | 264 | $_field = $field; |
@@ -270,10 +276,11 @@ discard block |
||
270 | 276 | $merged_codes = array(); |
271 | 277 | foreach ( $valid_shortcodes as $field => $shortcode ) { |
272 | 278 | foreach ( $shortcode as $code => $label ) { |
273 | - if ( isset( $merged_codes[$code] ) ) |
|
274 | - continue; |
|
275 | - else |
|
276 | - $merged_codes[$code] = $label; |
|
279 | + if ( isset( $merged_codes[$code] ) ) { |
|
280 | + continue; |
|
281 | + } else { |
|
282 | + $merged_codes[$code] = $label; |
|
283 | + } |
|
277 | 284 | } |
278 | 285 | } |
279 | 286 | $valid_shortcodes = $merged_codes; |