@@ -1,875 +1,875 @@ |
||
| 1 | 1 | <?php |
| 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 | - * |
|
| 17 | - * |
|
| 18 | - */ |
|
| 12 | + * |
|
| 13 | + * @package Event Espresso |
|
| 14 | + * @subpackage core |
|
| 15 | + * @author Brent Christensen |
|
| 16 | + * |
|
| 17 | + * |
|
| 18 | + */ |
|
| 19 | 19 | class EEH_HTML |
| 20 | 20 | { |
| 21 | 21 | |
| 22 | - /** |
|
| 23 | - * instance of the EEH_Autoloader object |
|
| 24 | - * @var $_instance |
|
| 25 | - * @access private |
|
| 26 | - */ |
|
| 27 | - private static $_instance; |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * @var array $_indent |
|
| 31 | - * @access private |
|
| 32 | - */ |
|
| 33 | - private static $_indent = array(); |
|
| 34 | - |
|
| 35 | - |
|
| 36 | - |
|
| 37 | - /** |
|
| 38 | - * @singleton method used to instantiate class object |
|
| 39 | - * @access public |
|
| 40 | - * @return EEH_HTML |
|
| 41 | - */ |
|
| 42 | - public static function instance() |
|
| 43 | - { |
|
| 44 | - // check if class object is instantiated, and instantiated properly |
|
| 45 | - if (! self::$_instance instanceof EEH_HTML) { |
|
| 46 | - self::$_instance = new EEH_HTML(); |
|
| 47 | - } |
|
| 48 | - return self::$_instance; |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * class constructor |
|
| 55 | - * |
|
| 56 | - * @access private |
|
| 57 | - * @return \EEH_HTML |
|
| 58 | - */ |
|
| 59 | - private function __construct() |
|
| 60 | - { |
|
| 61 | - // set some initial formatting for table indentation |
|
| 62 | - EEH_HTML::$_indent = array( |
|
| 63 | - 'table' => 0, |
|
| 64 | - 'thead' => 1, |
|
| 65 | - 'tbody' => 1, |
|
| 66 | - 'tr' => 2, |
|
| 67 | - 'th' => 3, |
|
| 68 | - 'td' => 3, |
|
| 69 | - 'div' => 0, |
|
| 70 | - 'h1' => 0, |
|
| 71 | - 'h2' => 0, |
|
| 72 | - 'h3' => 0, |
|
| 73 | - 'h4' => 0, |
|
| 74 | - 'h5' => 0, |
|
| 75 | - 'h6' => 0, |
|
| 76 | - 'p' => 0, |
|
| 77 | - 'ul' => 0, |
|
| 78 | - 'li' => 1 |
|
| 79 | - ); |
|
| 80 | - } |
|
| 81 | - |
|
| 82 | - |
|
| 83 | - |
|
| 84 | - /** |
|
| 85 | - * Generates an opening HTML <XX> tag and adds any passed attributes |
|
| 86 | - * if passed content, it will also add that, as well as the closing </XX> tag |
|
| 87 | - * |
|
| 88 | - * @access protected |
|
| 89 | - * @param string $tag |
|
| 90 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 91 | - * @param string $id - html id attribute |
|
| 92 | - * @param string $class - html class attribute |
|
| 93 | - * @param string $style - html style attribute for applying inline styles |
|
| 94 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 95 | - * @param bool $force_close |
|
| 96 | - * @return string |
|
| 97 | - */ |
|
| 98 | - protected static function _open_tag( |
|
| 99 | - $tag = 'div', |
|
| 100 | - $content = '', |
|
| 101 | - $id = '', |
|
| 102 | - $class = '', |
|
| 103 | - $style = '', |
|
| 104 | - $other_attributes = '', |
|
| 105 | - $force_close = false |
|
| 106 | - ) { |
|
| 107 | - $attributes = ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 108 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 109 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 110 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 111 | - $html = EEH_HTML::nl(0, $tag) . '<' . $tag . $attributes . '>'; |
|
| 112 | - $html .= ! empty($content) ? EEH_HTML::nl(1, $tag) . $content : ''; |
|
| 113 | - $indent = ! empty($content) || $force_close ? true : false; |
|
| 114 | - $html .= ! empty($content) || $force_close ? EEH_HTML::_close_tag($tag, $id, $class, $indent) : ''; |
|
| 115 | - return $html; |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - |
|
| 119 | - |
|
| 120 | - /** |
|
| 121 | - * Generates HTML closing </XX> tag - if passed the id or class attribute |
|
| 122 | - * used for the opening tag, will append a comment |
|
| 123 | - * |
|
| 22 | + /** |
|
| 23 | + * instance of the EEH_Autoloader object |
|
| 24 | + * @var $_instance |
|
| 25 | + * @access private |
|
| 26 | + */ |
|
| 27 | + private static $_instance; |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * @var array $_indent |
|
| 31 | + * @access private |
|
| 32 | + */ |
|
| 33 | + private static $_indent = array(); |
|
| 34 | + |
|
| 35 | + |
|
| 36 | + |
|
| 37 | + /** |
|
| 38 | + * @singleton method used to instantiate class object |
|
| 39 | + * @access public |
|
| 40 | + * @return EEH_HTML |
|
| 41 | + */ |
|
| 42 | + public static function instance() |
|
| 43 | + { |
|
| 44 | + // check if class object is instantiated, and instantiated properly |
|
| 45 | + if (! self::$_instance instanceof EEH_HTML) { |
|
| 46 | + self::$_instance = new EEH_HTML(); |
|
| 47 | + } |
|
| 48 | + return self::$_instance; |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * class constructor |
|
| 55 | + * |
|
| 56 | + * @access private |
|
| 57 | + * @return \EEH_HTML |
|
| 58 | + */ |
|
| 59 | + private function __construct() |
|
| 60 | + { |
|
| 61 | + // set some initial formatting for table indentation |
|
| 62 | + EEH_HTML::$_indent = array( |
|
| 63 | + 'table' => 0, |
|
| 64 | + 'thead' => 1, |
|
| 65 | + 'tbody' => 1, |
|
| 66 | + 'tr' => 2, |
|
| 67 | + 'th' => 3, |
|
| 68 | + 'td' => 3, |
|
| 69 | + 'div' => 0, |
|
| 70 | + 'h1' => 0, |
|
| 71 | + 'h2' => 0, |
|
| 72 | + 'h3' => 0, |
|
| 73 | + 'h4' => 0, |
|
| 74 | + 'h5' => 0, |
|
| 75 | + 'h6' => 0, |
|
| 76 | + 'p' => 0, |
|
| 77 | + 'ul' => 0, |
|
| 78 | + 'li' => 1 |
|
| 79 | + ); |
|
| 80 | + } |
|
| 81 | + |
|
| 82 | + |
|
| 83 | + |
|
| 84 | + /** |
|
| 85 | + * Generates an opening HTML <XX> tag and adds any passed attributes |
|
| 86 | + * if passed content, it will also add that, as well as the closing </XX> tag |
|
| 87 | + * |
|
| 88 | + * @access protected |
|
| 89 | + * @param string $tag |
|
| 90 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 91 | + * @param string $id - html id attribute |
|
| 92 | + * @param string $class - html class attribute |
|
| 93 | + * @param string $style - html style attribute for applying inline styles |
|
| 94 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 95 | + * @param bool $force_close |
|
| 96 | + * @return string |
|
| 97 | + */ |
|
| 98 | + protected static function _open_tag( |
|
| 99 | + $tag = 'div', |
|
| 100 | + $content = '', |
|
| 101 | + $id = '', |
|
| 102 | + $class = '', |
|
| 103 | + $style = '', |
|
| 104 | + $other_attributes = '', |
|
| 105 | + $force_close = false |
|
| 106 | + ) { |
|
| 107 | + $attributes = ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 108 | + $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 109 | + $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 110 | + $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 111 | + $html = EEH_HTML::nl(0, $tag) . '<' . $tag . $attributes . '>'; |
|
| 112 | + $html .= ! empty($content) ? EEH_HTML::nl(1, $tag) . $content : ''; |
|
| 113 | + $indent = ! empty($content) || $force_close ? true : false; |
|
| 114 | + $html .= ! empty($content) || $force_close ? EEH_HTML::_close_tag($tag, $id, $class, $indent) : ''; |
|
| 115 | + return $html; |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + |
|
| 119 | + |
|
| 120 | + /** |
|
| 121 | + * Generates HTML closing </XX> tag - if passed the id or class attribute |
|
| 122 | + * used for the opening tag, will append a comment |
|
| 123 | + * |
|
| 124 | 124 | *@access protected |
| 125 | - * @param string $tag |
|
| 126 | - * @param string $id - html id attribute |
|
| 127 | - * @param string $class - html class attribute |
|
| 128 | - * @param bool $indent |
|
| 129 | - * @return string |
|
| 130 | - */ |
|
| 131 | - protected static function _close_tag($tag = 'div', $id = '', $class = '', $indent = true) |
|
| 132 | - { |
|
| 133 | - $comment = ''; |
|
| 134 | - if ($id) { |
|
| 135 | - $comment = EEH_HTML::comment('close ' . $id) . EEH_HTML::nl(0, $tag); |
|
| 136 | - } elseif ($class) { |
|
| 137 | - $comment = EEH_HTML::comment('close ' . $class) . EEH_HTML::nl(0, $tag); |
|
| 138 | - } |
|
| 139 | - $html = $indent ? EEH_HTML::nl(-1, $tag) : ''; |
|
| 140 | - $html .= '</' . $tag . '>' . $comment; |
|
| 141 | - return $html; |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - |
|
| 145 | - |
|
| 146 | - /** |
|
| 147 | - * div - generates HTML opening <div> tag and adds any passed attributes |
|
| 148 | - * to add an id use: echo EEH_HTML::div( 'this is some content', 'footer' ); |
|
| 149 | - * to add a class use: echo EEH_HTML::div( 'this is some content', '', 'float_left' ); |
|
| 150 | - * to add a both an id and a class use: echo EEH_HTML::div( 'this is some content', 'footer', 'float_left' ); |
|
| 151 | - * |
|
| 152 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 153 | - * @param string $id - html id attribute |
|
| 154 | - * @param string $class - html class attribute |
|
| 155 | - * @param string $style - html style attribute for applying inline styles |
|
| 156 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 157 | - * @return string |
|
| 158 | - */ |
|
| 159 | - public static function div($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 160 | - { |
|
| 161 | - return EEH_HTML::_open_tag('div', $content, $id, $class, $style, $other_attributes); |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - |
|
| 165 | - |
|
| 166 | - /** |
|
| 167 | - * Generates HTML closing </div> tag - if passed the id or class attribute used for the opening div tag, will append a comment |
|
| 168 | - * usage: echo EEH_HTML::divx(); |
|
| 169 | - * |
|
| 170 | - * @param string $id - html id attribute |
|
| 171 | - * @param string $class - html class attribute |
|
| 172 | - * @return string |
|
| 173 | - */ |
|
| 174 | - public static function divx($id = '', $class = '') |
|
| 175 | - { |
|
| 176 | - return EEH_HTML::_close_tag('div', $id, $class); |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - |
|
| 180 | - |
|
| 181 | - /** |
|
| 182 | - * Generates HTML <h1></h1> tags, inserts content, and adds any passed attributes |
|
| 183 | - * usage: echo EEH_HTML::h1( 'This is a Heading' ); |
|
| 184 | - * |
|
| 185 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 186 | - * @param string $id - html id attribute |
|
| 187 | - * @param string $class - html class attribute |
|
| 188 | - * @param string $style - html style attribute for applying inline styles |
|
| 189 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 190 | - * @return string |
|
| 191 | - */ |
|
| 192 | - public static function h1($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 193 | - { |
|
| 194 | - return EEH_HTML::_open_tag('h1', $content, $id, $class, $style, $other_attributes, true); |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - |
|
| 198 | - |
|
| 199 | - /** |
|
| 200 | - * Generates HTML <h2></h2> tags, inserts content, and adds any passed attributes |
|
| 201 | - * usage: echo EEH_HTML::h2( 'This is a Heading' ); |
|
| 202 | - * |
|
| 203 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 204 | - * @param string $id - html id attribute |
|
| 205 | - * @param string $class - html class attribute |
|
| 206 | - * @param string $style - html style attribute for applying inline styles |
|
| 207 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 208 | - * @return string |
|
| 209 | - */ |
|
| 210 | - public static function h2($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 211 | - { |
|
| 212 | - return EEH_HTML::_open_tag('h2', $content, $id, $class, $style, $other_attributes, true); |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - |
|
| 216 | - |
|
| 217 | - /** |
|
| 218 | - * Generates HTML <h3></h3> tags, inserts content, and adds any passed attributes |
|
| 219 | - * usage: echo EEH_HTML::h3( 'This is a Heading' ); |
|
| 220 | - * |
|
| 221 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 222 | - * @param string $id - html id attribute |
|
| 223 | - * @param string $class - html class attribute |
|
| 224 | - * @param string $style - html style attribute for applying inline styles |
|
| 225 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 226 | - * @return string |
|
| 227 | - */ |
|
| 228 | - public static function h3($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 229 | - { |
|
| 230 | - return EEH_HTML::_open_tag('h3', $content, $id, $class, $style, $other_attributes, true); |
|
| 231 | - } |
|
| 232 | - |
|
| 233 | - |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Generates HTML <h4></h4> tags, inserts content, and adds any passed attributes |
|
| 237 | - * usage: echo EEH_HTML::h4( 'This is a Heading' ); |
|
| 238 | - * |
|
| 239 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 240 | - * @param string $id - html id attribute |
|
| 241 | - * @param string $class - html class attribute |
|
| 242 | - * @param string $style - html style attribute for applying inline styles |
|
| 243 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 244 | - * @return string |
|
| 245 | - */ |
|
| 246 | - public static function h4($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 247 | - { |
|
| 248 | - return EEH_HTML::_open_tag('h4', $content, $id, $class, $style, $other_attributes, true); |
|
| 249 | - } |
|
| 250 | - |
|
| 251 | - |
|
| 252 | - |
|
| 253 | - /** |
|
| 254 | - * Generates HTML <h5></h5> tags, inserts content, and adds any passed attributes |
|
| 255 | - * usage: echo EEH_HTML::h5( 'This is a Heading' ); |
|
| 256 | - * |
|
| 257 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 258 | - * @param string $id - html id attribute |
|
| 259 | - * @param string $class - html class attribute |
|
| 260 | - * @param string $style - html style attribute for applying inline styles |
|
| 261 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 262 | - * @return string |
|
| 263 | - */ |
|
| 264 | - public static function h5($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 265 | - { |
|
| 266 | - return EEH_HTML::_open_tag('h5', $content, $id, $class, $style, $other_attributes, true); |
|
| 267 | - } |
|
| 268 | - |
|
| 269 | - |
|
| 270 | - |
|
| 271 | - /** |
|
| 272 | - * Generates HTML <h6></h6> tags, inserts content, and adds any passed attributes |
|
| 273 | - * usage: echo EEH_HTML::h6( 'This is a Heading' ); |
|
| 274 | - * |
|
| 275 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 276 | - * @param string $id - html id attribute |
|
| 277 | - * @param string $class - html class attribute |
|
| 278 | - * @param string $style - html style attribute for applying inline styles |
|
| 279 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 280 | - * @return string |
|
| 281 | - */ |
|
| 282 | - public static function h6($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 283 | - { |
|
| 284 | - return EEH_HTML::_open_tag('h6', $content, $id, $class, $style, $other_attributes, true); |
|
| 285 | - } |
|
| 286 | - |
|
| 287 | - |
|
| 288 | - |
|
| 289 | - /** |
|
| 290 | - * Generates HTML <p></p> tags, inserts content, and adds any passed attributes |
|
| 291 | - * usage: echo EEH_HTML::p( 'this is a paragraph' ); |
|
| 292 | - * |
|
| 293 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 294 | - * @param string $id - html id attribute |
|
| 295 | - * @param string $class - html class attribute |
|
| 296 | - * @param string $style - html style attribute for applying inline styles |
|
| 297 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 298 | - * @return string |
|
| 299 | - */ |
|
| 300 | - public static function p($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 301 | - { |
|
| 302 | - return EEH_HTML::_open_tag('p', $content, $id, $class, $style, $other_attributes, true); |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - |
|
| 306 | - |
|
| 307 | - /** |
|
| 308 | - * ul - generates HTML opening <ul> tag and adds any passed attributes |
|
| 309 | - * usage: echo EEH_HTML::ul( 'my-list-id', 'my-list-class' ); |
|
| 310 | - * |
|
| 311 | - * @param string $id - html id attribute |
|
| 312 | - * @param string $class - html class attribute |
|
| 313 | - * @param string $style - html style attribute for applying inline styles |
|
| 314 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 315 | - * @return string |
|
| 316 | - */ |
|
| 317 | - public static function ul($id = '', $class = '', $style = '', $other_attributes = '') |
|
| 318 | - { |
|
| 319 | - return EEH_HTML::_open_tag('ul', '', $id, $class, $style, $other_attributes); |
|
| 320 | - } |
|
| 321 | - |
|
| 322 | - |
|
| 323 | - |
|
| 324 | - /** |
|
| 325 | - * Generates HTML closing </ul> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 326 | - * usage: echo EEH_HTML::ulx(); |
|
| 327 | - * |
|
| 328 | - * @param string $id - html id attribute |
|
| 329 | - * @param string $class - html class attribute |
|
| 330 | - * @return string |
|
| 331 | - */ |
|
| 332 | - public static function ulx($id = '', $class = '') |
|
| 333 | - { |
|
| 334 | - return EEH_HTML::_close_tag('ul', $id, $class); |
|
| 335 | - } |
|
| 336 | - |
|
| 337 | - |
|
| 338 | - |
|
| 339 | - /** |
|
| 340 | - * Generates HTML <li> tag, inserts content, and adds any passed attributes |
|
| 341 | - * if passed content, it will also add that, as well as the closing </li> tag |
|
| 342 | - * usage: echo EEH_HTML::li( 'this is a line item' ); |
|
| 343 | - * |
|
| 344 | - * @param string $id - html id attribute |
|
| 345 | - * @param string $class - html class attribute |
|
| 346 | - * @param string $style - html style attribute for applying inline styles |
|
| 347 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 348 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 349 | - * @return string |
|
| 350 | - */ |
|
| 351 | - public static function li($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 352 | - { |
|
| 353 | - return EEH_HTML::_open_tag('li', $content, $id, $class, $style, $other_attributes); |
|
| 354 | - } |
|
| 355 | - |
|
| 356 | - |
|
| 357 | - |
|
| 358 | - /** |
|
| 359 | - * Generates HTML closing </li> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 360 | - * usage: echo EEH_HTML::lix(); |
|
| 361 | - * |
|
| 362 | - * @param string $id - html id attribute |
|
| 363 | - * @param string $class - html class attribute |
|
| 364 | - * @return string |
|
| 365 | - */ |
|
| 366 | - public static function lix($id = '', $class = '') |
|
| 367 | - { |
|
| 368 | - return EEH_HTML::_close_tag('li', $id, $class); |
|
| 369 | - } |
|
| 370 | - |
|
| 371 | - |
|
| 372 | - |
|
| 373 | - /** |
|
| 374 | - * table - generates an HTML <table> tag and adds any passed attributes |
|
| 375 | - * usage: echo EEH_HTML::table(); |
|
| 376 | - * |
|
| 377 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 378 | - * @param string $id - html id attribute |
|
| 379 | - * @param string $class - html class attribute |
|
| 380 | - * @param string $style - html style attribute for applying inline styles |
|
| 381 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 382 | - * @return string |
|
| 383 | - */ |
|
| 384 | - public static function table($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 385 | - { |
|
| 386 | - return EEH_HTML::_open_tag('table', $content, $id, $class, $style, $other_attributes); |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - |
|
| 390 | - |
|
| 391 | - /** |
|
| 392 | - * tablex - generates an HTML </table> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 393 | - * |
|
| 394 | - * @param string $id - html id attribute |
|
| 395 | - * @param string $class - html class attribute |
|
| 396 | - * @return string |
|
| 397 | - */ |
|
| 398 | - public static function tablex($id = '', $class = '') |
|
| 399 | - { |
|
| 400 | - return EEH_HTML::_close_tag('table', $id, $class); |
|
| 401 | - } |
|
| 402 | - |
|
| 403 | - |
|
| 404 | - |
|
| 405 | - /** |
|
| 406 | - * thead - generates an HTML <thead> tag and adds any passed attributes |
|
| 407 | - * usage: echo EEH_HTML::thead(); |
|
| 408 | - * |
|
| 409 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 410 | - * @param string $id - html id attribute |
|
| 411 | - * @param string $class - html class attribute |
|
| 412 | - * @param string $style - html style attribute for applying inline styles |
|
| 413 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 414 | - * @return string |
|
| 415 | - */ |
|
| 416 | - public static function thead($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 417 | - { |
|
| 418 | - return EEH_HTML::_open_tag('thead', $content, $id, $class, $style, $other_attributes); |
|
| 419 | - } |
|
| 420 | - |
|
| 421 | - |
|
| 422 | - |
|
| 423 | - /** |
|
| 424 | - * theadx - generates an HTML </thead> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 425 | - * |
|
| 426 | - * @param string $id - html id attribute |
|
| 427 | - * @param string $class - html class attribute |
|
| 428 | - * @return string |
|
| 429 | - */ |
|
| 430 | - public static function theadx($id = '', $class = '') |
|
| 431 | - { |
|
| 432 | - return EEH_HTML::_close_tag('thead', $id, $class); |
|
| 433 | - } |
|
| 434 | - |
|
| 435 | - |
|
| 436 | - |
|
| 437 | - /** |
|
| 438 | - * tbody - generates an HTML <tbody> tag and adds any passed attributes |
|
| 439 | - * usage: echo EEH_HTML::tbody(); |
|
| 440 | - * |
|
| 441 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 442 | - * @param string $id - html id attribute |
|
| 443 | - * @param string $class - html class attribute |
|
| 444 | - * @param string $style - html style attribute for applying inline styles |
|
| 445 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 446 | - * @return string |
|
| 447 | - */ |
|
| 448 | - public static function tbody($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 449 | - { |
|
| 450 | - return EEH_HTML::_open_tag('tbody', $content, $id, $class, $style, $other_attributes); |
|
| 451 | - } |
|
| 452 | - |
|
| 453 | - |
|
| 454 | - |
|
| 455 | - /** |
|
| 456 | - * tbodyx - generates an HTML </tbody> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 457 | - * |
|
| 458 | - * @param string $id - html id attribute |
|
| 459 | - * @param string $class - html class attribute |
|
| 460 | - * @return string |
|
| 461 | - */ |
|
| 462 | - public static function tbodyx($id = '', $class = '') |
|
| 463 | - { |
|
| 464 | - return EEH_HTML::_close_tag('tbody', $id, $class); |
|
| 465 | - } |
|
| 466 | - |
|
| 467 | - |
|
| 468 | - |
|
| 469 | - /** |
|
| 470 | - * tr - generates an HTML <tr> tag and adds any passed attributes |
|
| 471 | - * usage: echo EEH_HTML::tr(); |
|
| 472 | - * |
|
| 473 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 474 | - * @param string $id - html id attribute |
|
| 475 | - * @param string $class - html class attribute |
|
| 476 | - * @param string $style - html style attribute for applying inline styles |
|
| 477 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 478 | - * @return string |
|
| 479 | - */ |
|
| 480 | - public static function tr($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 481 | - { |
|
| 482 | - return EEH_HTML::_open_tag('tr', $content, $id, $class, $style, $other_attributes); |
|
| 483 | - } |
|
| 484 | - |
|
| 485 | - |
|
| 486 | - |
|
| 487 | - /** |
|
| 488 | - * trx - generates an HTML </tr> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 489 | - * |
|
| 490 | - * @param string $id - html id attribute |
|
| 491 | - * @param string $class - html class attribute |
|
| 492 | - * @return string |
|
| 493 | - */ |
|
| 494 | - public static function trx($id = '', $class = '') |
|
| 495 | - { |
|
| 496 | - return EEH_HTML::_close_tag('tr', $id, $class); |
|
| 497 | - } |
|
| 498 | - |
|
| 499 | - |
|
| 500 | - |
|
| 501 | - /** |
|
| 502 | - * th - generates an HTML <th> tag and adds any passed attributes |
|
| 503 | - * usage: echo EEH_HTML::th(); |
|
| 504 | - * |
|
| 505 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 506 | - * @param string $id - html id attribute |
|
| 507 | - * @param string $class - html class attribute |
|
| 508 | - * @param string $style - html style attribute for applying inline styles |
|
| 509 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 510 | - * @return string |
|
| 511 | - */ |
|
| 512 | - public static function th($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 513 | - { |
|
| 514 | - return EEH_HTML::_open_tag('th', $content, $id, $class, $style, $other_attributes); |
|
| 515 | - } |
|
| 516 | - |
|
| 517 | - |
|
| 518 | - |
|
| 519 | - /** |
|
| 520 | - * thx - generates an HTML </th> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 521 | - * |
|
| 522 | - * @param string $id - html id attribute |
|
| 523 | - * @param string $class - html class attribute |
|
| 524 | - * @return string |
|
| 525 | - */ |
|
| 526 | - public static function thx($id = '', $class = '') |
|
| 527 | - { |
|
| 528 | - return EEH_HTML::_close_tag('th', $id, $class); |
|
| 529 | - } |
|
| 530 | - |
|
| 531 | - |
|
| 532 | - |
|
| 533 | - /** |
|
| 534 | - * td - generates an HTML <td> tag and adds any passed attributes |
|
| 535 | - * usage: echo EEH_HTML::td(); |
|
| 536 | - * |
|
| 537 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 538 | - * @param string $id - html id attribute |
|
| 539 | - * @param string $class - html class attribute |
|
| 540 | - * @param string $style - html style attribute for applying inline styles |
|
| 541 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 542 | - * @return string |
|
| 543 | - */ |
|
| 544 | - public static function td($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 545 | - { |
|
| 546 | - return EEH_HTML::_open_tag('td', $content, $id, $class, $style, $other_attributes); |
|
| 547 | - } |
|
| 548 | - |
|
| 549 | - |
|
| 550 | - |
|
| 551 | - /** |
|
| 552 | - * tdx - generates an HTML </td> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 553 | - * |
|
| 554 | - * @param string $id - html id attribute |
|
| 555 | - * @param string $class - html class attribute |
|
| 556 | - * @return string |
|
| 557 | - */ |
|
| 558 | - public static function tdx($id = '', $class = '') |
|
| 559 | - { |
|
| 560 | - return EEH_HTML::_close_tag('td', $id, $class); |
|
| 561 | - } |
|
| 562 | - |
|
| 563 | - |
|
| 564 | - |
|
| 565 | - /** |
|
| 566 | - * no_row - for generating a "hidden" table row, good for embedding tables within tables |
|
| 567 | - * generates a new table row with one td cell that spans however many columns you set |
|
| 568 | - * removes all styles from the tr and td |
|
| 569 | - * |
|
| 570 | - * @param string $content |
|
| 571 | - * @param int $colspan |
|
| 572 | - * @return string |
|
| 573 | - */ |
|
| 574 | - public static function no_row($content = '', $colspan = 2) |
|
| 575 | - { |
|
| 576 | - return EEH_HTML::tr( |
|
| 577 | - EEH_HTML::td($content, '', '', 'padding:0; border:none;', 'colspan="' . $colspan . '"'), |
|
| 578 | - '', |
|
| 579 | - '', |
|
| 580 | - 'padding:0; border:none;' |
|
| 581 | - ); |
|
| 582 | - } |
|
| 583 | - |
|
| 584 | - |
|
| 585 | - |
|
| 586 | - /** |
|
| 587 | - * Generates HTML <label></label> tags, inserts content, and adds any passed attributes |
|
| 588 | - * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 589 | - * |
|
| 590 | - * @access public |
|
| 591 | - * @param string $href URL to link to |
|
| 592 | - * @param string $link_text - the text that will become "hyperlinked" |
|
| 593 | - * @param string $title - html title attribute |
|
| 594 | - * @param string $id - html id attribute |
|
| 595 | - * @param string $class - html class attribute |
|
| 596 | - * @param string $style - html style attribute for applying inline styles |
|
| 597 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 598 | - * @return string |
|
| 599 | - */ |
|
| 600 | - public static function link($href = '', $link_text = '', $title = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 601 | - { |
|
| 602 | - $link_text = ! empty($link_text) ? $link_text : $href; |
|
| 603 | - $attributes = ! empty($href) ? ' href="' . $href . '"' : ''; |
|
| 604 | - $attributes .= ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 605 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 606 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 607 | - $attributes .= ! empty($title) ? ' title="' . esc_attr($title) . '"' : ''; |
|
| 608 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 609 | - return "<a{$attributes}>{$link_text}</a>"; |
|
| 610 | - } |
|
| 611 | - |
|
| 612 | - |
|
| 613 | - |
|
| 614 | - /** |
|
| 615 | - * img - generates an HTML <img> tag and adds any passed attributes |
|
| 616 | - * usage: echo EEH_HTML::img(); |
|
| 617 | - * |
|
| 618 | - * @param string $src - html src attribute ie: the path or URL to the image |
|
| 619 | - * @param string $alt - html alt attribute |
|
| 620 | - * @param string $id - html id attribute |
|
| 621 | - * @param string $class - html class attribute |
|
| 622 | - * @param string $style - html style attribute for applying inline styles |
|
| 623 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 624 | - * @return string |
|
| 625 | - */ |
|
| 626 | - public static function img($src = '', $alt = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 627 | - { |
|
| 628 | - $attributes = ! empty($src) ? ' src="' . esc_url_raw($src) . '"' : ''; |
|
| 629 | - $attributes .= ! empty($alt) ? ' alt="' . esc_attr($alt) . '"' : ''; |
|
| 630 | - $attributes .= ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 631 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 632 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 633 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 634 | - return '<img' . $attributes . '/>'; |
|
| 635 | - } |
|
| 636 | - |
|
| 637 | - |
|
| 638 | - |
|
| 639 | - /** |
|
| 640 | - * Generates HTML <label></label> tags, inserts content, and adds any passed attributes |
|
| 641 | - * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 642 | - * |
|
| 643 | - * @access protected |
|
| 644 | - * @param string $tag |
|
| 645 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 646 | - * @param string $id - html id attribute |
|
| 647 | - * @param string $class - html class attribute |
|
| 648 | - * @param string $style - html style attribute for applying inline styles |
|
| 649 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 650 | - * @return string |
|
| 651 | - */ |
|
| 652 | - protected static function _inline_tag($tag = 'span', $content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 653 | - { |
|
| 654 | - $attributes = ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 655 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 656 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 657 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 658 | - return '<' . $tag . ' ' . $attributes . '>' . $content . '</' . $tag . '>'; |
|
| 659 | - } |
|
| 660 | - |
|
| 661 | - |
|
| 662 | - |
|
| 663 | - /** |
|
| 664 | - * Generates HTML <label></label> tags, inserts content, and adds any passed attributes |
|
| 665 | - * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 666 | - * |
|
| 667 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 668 | - * @param string $id - html id attribute |
|
| 669 | - * @param string $class - html class attribute |
|
| 670 | - * @param string $style - html style attribute for applying inline styles |
|
| 671 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 672 | - * @return string |
|
| 673 | - */ |
|
| 674 | - public static function label($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 675 | - { |
|
| 676 | - return EEH_HTML::_inline_tag('label', $content, $id, $class, $style, $other_attributes); |
|
| 677 | - } |
|
| 678 | - |
|
| 679 | - |
|
| 680 | - |
|
| 681 | - /** |
|
| 682 | - * Generates HTML <span></span> tags, inserts content, and adds any passed attributes |
|
| 683 | - * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 684 | - * |
|
| 685 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 686 | - * @param string $id - html id attribute |
|
| 687 | - * @param string $class - html class attribute |
|
| 688 | - * @param string $style - html style attribute for applying inline styles |
|
| 689 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 690 | - * @return string |
|
| 691 | - */ |
|
| 692 | - public static function span($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 693 | - { |
|
| 694 | - return EEH_HTML::_inline_tag('span', $content, $id, $class, $style, $other_attributes); |
|
| 695 | - } |
|
| 696 | - |
|
| 697 | - |
|
| 698 | - |
|
| 699 | - /** |
|
| 700 | - * Generates HTML <span></span> tags, inserts content, and adds any passed attributes |
|
| 701 | - * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 702 | - * |
|
| 703 | - * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 704 | - * @param string $id - html id attribute |
|
| 705 | - * @param string $class - html class attribute |
|
| 706 | - * @param string $style - html style attribute for applying inline styles |
|
| 707 | - * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 708 | - * @return string |
|
| 709 | - */ |
|
| 710 | - public static function strong($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 711 | - { |
|
| 712 | - return EEH_HTML::_inline_tag('strong', $content, $id, $class, $style, $other_attributes); |
|
| 713 | - } |
|
| 714 | - |
|
| 715 | - |
|
| 716 | - |
|
| 717 | - /** |
|
| 718 | - * Generates an html <-- comment --> tag |
|
| 719 | - * usage: echo comment( 'this is a comment' ); |
|
| 720 | - * |
|
| 721 | - * @param string $comment |
|
| 722 | - * @return string |
|
| 723 | - */ |
|
| 724 | - public static function comment($comment = '') |
|
| 725 | - { |
|
| 726 | - return ! empty($comment) ? EEH_HTML::nl() . '<!-- ' . $comment . ' -->' : ''; |
|
| 727 | - } |
|
| 728 | - |
|
| 729 | - |
|
| 730 | - |
|
| 731 | - /** |
|
| 732 | - * br - generates a line break |
|
| 733 | - * |
|
| 734 | - * @param int $nmbr - the number of line breaks to return |
|
| 735 | - * @return string |
|
| 736 | - */ |
|
| 737 | - public static function br($nmbr = 1) |
|
| 738 | - { |
|
| 739 | - return str_repeat('<br />', $nmbr); |
|
| 740 | - } |
|
| 741 | - |
|
| 742 | - |
|
| 743 | - |
|
| 744 | - /** |
|
| 745 | - * nbsp - generates non-breaking space entities based on number supplied |
|
| 746 | - * |
|
| 747 | - * @param int $nmbr - the number of non-breaking spaces to return |
|
| 748 | - * @return string |
|
| 749 | - */ |
|
| 750 | - public static function nbsp($nmbr = 1) |
|
| 751 | - { |
|
| 752 | - return str_repeat(' ', $nmbr); |
|
| 753 | - } |
|
| 754 | - |
|
| 755 | - |
|
| 756 | - |
|
| 757 | - /** |
|
| 758 | - * sanitize_id |
|
| 759 | - * |
|
| 760 | - * functionally does the same as the wp_core function sanitize_key except it does NOT use |
|
| 761 | - * strtolower and allows capitals. |
|
| 762 | - * |
|
| 763 | - * @param string $id |
|
| 764 | - * @return string |
|
| 765 | - */ |
|
| 766 | - public static function sanitize_id($id = '') |
|
| 767 | - { |
|
| 768 | - $key = str_replace(' ', '-', trim($id)); |
|
| 769 | - return preg_replace('/[^a-zA-Z0-9_\-]/', '', $key); |
|
| 770 | - } |
|
| 771 | - |
|
| 772 | - |
|
| 773 | - |
|
| 774 | - /** |
|
| 775 | - * return a newline and tabs ("nl" stands for "new line") |
|
| 776 | - * |
|
| 777 | - * @param int $indent the number of tabs to ADD to the current indent (can be negative or zero) |
|
| 778 | - * @param string $tag |
|
| 779 | - * @return string - newline character plus # of indents passed (can be + or -) |
|
| 780 | - */ |
|
| 781 | - public static function nl($indent = 0, $tag = 'none') |
|
| 782 | - { |
|
| 783 | - $html = "\n"; |
|
| 784 | - EEH_HTML::indent($indent, $tag); |
|
| 785 | - for ($x = 0; $x < EEH_HTML::$_indent[ $tag ]; $x++) { |
|
| 786 | - $html .= "\t"; |
|
| 787 | - } |
|
| 788 | - return $html; |
|
| 789 | - } |
|
| 790 | - |
|
| 791 | - |
|
| 792 | - |
|
| 793 | - /** |
|
| 794 | - * Changes the indents used in EEH_HTML::nl. Often its convenient to change |
|
| 795 | - * the indentation level without actually creating a new line |
|
| 796 | - * |
|
| 797 | - * @param int $indent can be negative to decrease the indentation level |
|
| 798 | - * @param string $tag |
|
| 799 | - */ |
|
| 800 | - public static function indent($indent, $tag = 'none') |
|
| 801 | - { |
|
| 802 | - static $default_indentation = false; |
|
| 803 | - if (! $default_indentation) { |
|
| 804 | - EEH_HTML::_set_default_indentation(); |
|
| 805 | - $default_indentation = true; |
|
| 806 | - } |
|
| 807 | - if (! isset(EEH_HTML::$_indent[ $tag ])) { |
|
| 808 | - EEH_HTML::$_indent[ $tag ] = 0; |
|
| 809 | - } |
|
| 810 | - EEH_HTML::$_indent[ $tag ] += (int) $indent; |
|
| 811 | - EEH_HTML::$_indent[ $tag ] = EEH_HTML::$_indent[ $tag ] >= 0 ? EEH_HTML::$_indent[ $tag ] : 0; |
|
| 812 | - } |
|
| 813 | - |
|
| 814 | - |
|
| 815 | - /** |
|
| 816 | - * class _set_default_indentation |
|
| 817 | - * |
|
| 818 | - * @access private |
|
| 819 | - */ |
|
| 820 | - private static function _set_default_indentation() |
|
| 821 | - { |
|
| 822 | - // set some initial formatting for table indentation |
|
| 823 | - EEH_HTML::$_indent = array( |
|
| 824 | - 'none' => 0, |
|
| 825 | - 'form' => 0, |
|
| 826 | - 'radio' => 0, |
|
| 827 | - 'checkbox' => 0, |
|
| 828 | - 'select' => 0, |
|
| 829 | - 'option' => 0, |
|
| 830 | - 'optgroup' => 0, |
|
| 831 | - 'table' => 1, |
|
| 832 | - 'thead' => 2, |
|
| 833 | - 'tbody' => 2, |
|
| 834 | - 'tr' => 3, |
|
| 835 | - 'th' => 4, |
|
| 836 | - 'td' => 4, |
|
| 837 | - 'div' => 0, |
|
| 838 | - 'h1' => 0, |
|
| 839 | - 'h2' => 0, |
|
| 840 | - 'h3' => 0, |
|
| 841 | - 'h4' => 0, |
|
| 842 | - 'h5' => 0, |
|
| 843 | - 'h6' => 0, |
|
| 844 | - 'p' => 0, |
|
| 845 | - 'ul' => 0, |
|
| 846 | - 'li' => 1 |
|
| 847 | - ); |
|
| 848 | - } |
|
| 849 | - |
|
| 850 | - |
|
| 851 | - |
|
| 852 | - /** |
|
| 853 | - * Retrieves the list of tags considered "simple", that are probably safe for |
|
| 854 | - * use in inputs |
|
| 855 | - * @global array $allowedtags |
|
| 856 | - * @return array |
|
| 857 | - */ |
|
| 858 | - public static function get_simple_tags() |
|
| 859 | - { |
|
| 860 | - global $allowedtags; |
|
| 861 | - $tags_we_allow['p']=array(); |
|
| 862 | - $tags_we_allow = array_merge_recursive( |
|
| 863 | - $allowedtags, |
|
| 864 | - array( |
|
| 865 | - 'ol' => array(), |
|
| 866 | - 'ul' => array(), |
|
| 867 | - 'li' => array(), |
|
| 868 | - 'br' => array(), |
|
| 869 | - 'p' => array(), |
|
| 870 | - 'a' => array('target') |
|
| 871 | - ) |
|
| 872 | - ); |
|
| 873 | - return apply_filters('FHEE__EEH_HTML__get_simple_tags', $tags_we_allow); |
|
| 874 | - } |
|
| 125 | + * @param string $tag |
|
| 126 | + * @param string $id - html id attribute |
|
| 127 | + * @param string $class - html class attribute |
|
| 128 | + * @param bool $indent |
|
| 129 | + * @return string |
|
| 130 | + */ |
|
| 131 | + protected static function _close_tag($tag = 'div', $id = '', $class = '', $indent = true) |
|
| 132 | + { |
|
| 133 | + $comment = ''; |
|
| 134 | + if ($id) { |
|
| 135 | + $comment = EEH_HTML::comment('close ' . $id) . EEH_HTML::nl(0, $tag); |
|
| 136 | + } elseif ($class) { |
|
| 137 | + $comment = EEH_HTML::comment('close ' . $class) . EEH_HTML::nl(0, $tag); |
|
| 138 | + } |
|
| 139 | + $html = $indent ? EEH_HTML::nl(-1, $tag) : ''; |
|
| 140 | + $html .= '</' . $tag . '>' . $comment; |
|
| 141 | + return $html; |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + |
|
| 145 | + |
|
| 146 | + /** |
|
| 147 | + * div - generates HTML opening <div> tag and adds any passed attributes |
|
| 148 | + * to add an id use: echo EEH_HTML::div( 'this is some content', 'footer' ); |
|
| 149 | + * to add a class use: echo EEH_HTML::div( 'this is some content', '', 'float_left' ); |
|
| 150 | + * to add a both an id and a class use: echo EEH_HTML::div( 'this is some content', 'footer', 'float_left' ); |
|
| 151 | + * |
|
| 152 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 153 | + * @param string $id - html id attribute |
|
| 154 | + * @param string $class - html class attribute |
|
| 155 | + * @param string $style - html style attribute for applying inline styles |
|
| 156 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 157 | + * @return string |
|
| 158 | + */ |
|
| 159 | + public static function div($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 160 | + { |
|
| 161 | + return EEH_HTML::_open_tag('div', $content, $id, $class, $style, $other_attributes); |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + |
|
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * Generates HTML closing </div> tag - if passed the id or class attribute used for the opening div tag, will append a comment |
|
| 168 | + * usage: echo EEH_HTML::divx(); |
|
| 169 | + * |
|
| 170 | + * @param string $id - html id attribute |
|
| 171 | + * @param string $class - html class attribute |
|
| 172 | + * @return string |
|
| 173 | + */ |
|
| 174 | + public static function divx($id = '', $class = '') |
|
| 175 | + { |
|
| 176 | + return EEH_HTML::_close_tag('div', $id, $class); |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + |
|
| 180 | + |
|
| 181 | + /** |
|
| 182 | + * Generates HTML <h1></h1> tags, inserts content, and adds any passed attributes |
|
| 183 | + * usage: echo EEH_HTML::h1( 'This is a Heading' ); |
|
| 184 | + * |
|
| 185 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 186 | + * @param string $id - html id attribute |
|
| 187 | + * @param string $class - html class attribute |
|
| 188 | + * @param string $style - html style attribute for applying inline styles |
|
| 189 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 190 | + * @return string |
|
| 191 | + */ |
|
| 192 | + public static function h1($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 193 | + { |
|
| 194 | + return EEH_HTML::_open_tag('h1', $content, $id, $class, $style, $other_attributes, true); |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + |
|
| 198 | + |
|
| 199 | + /** |
|
| 200 | + * Generates HTML <h2></h2> tags, inserts content, and adds any passed attributes |
|
| 201 | + * usage: echo EEH_HTML::h2( 'This is a Heading' ); |
|
| 202 | + * |
|
| 203 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 204 | + * @param string $id - html id attribute |
|
| 205 | + * @param string $class - html class attribute |
|
| 206 | + * @param string $style - html style attribute for applying inline styles |
|
| 207 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 208 | + * @return string |
|
| 209 | + */ |
|
| 210 | + public static function h2($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 211 | + { |
|
| 212 | + return EEH_HTML::_open_tag('h2', $content, $id, $class, $style, $other_attributes, true); |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + |
|
| 216 | + |
|
| 217 | + /** |
|
| 218 | + * Generates HTML <h3></h3> tags, inserts content, and adds any passed attributes |
|
| 219 | + * usage: echo EEH_HTML::h3( 'This is a Heading' ); |
|
| 220 | + * |
|
| 221 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 222 | + * @param string $id - html id attribute |
|
| 223 | + * @param string $class - html class attribute |
|
| 224 | + * @param string $style - html style attribute for applying inline styles |
|
| 225 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 226 | + * @return string |
|
| 227 | + */ |
|
| 228 | + public static function h3($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 229 | + { |
|
| 230 | + return EEH_HTML::_open_tag('h3', $content, $id, $class, $style, $other_attributes, true); |
|
| 231 | + } |
|
| 232 | + |
|
| 233 | + |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Generates HTML <h4></h4> tags, inserts content, and adds any passed attributes |
|
| 237 | + * usage: echo EEH_HTML::h4( 'This is a Heading' ); |
|
| 238 | + * |
|
| 239 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 240 | + * @param string $id - html id attribute |
|
| 241 | + * @param string $class - html class attribute |
|
| 242 | + * @param string $style - html style attribute for applying inline styles |
|
| 243 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 244 | + * @return string |
|
| 245 | + */ |
|
| 246 | + public static function h4($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 247 | + { |
|
| 248 | + return EEH_HTML::_open_tag('h4', $content, $id, $class, $style, $other_attributes, true); |
|
| 249 | + } |
|
| 250 | + |
|
| 251 | + |
|
| 252 | + |
|
| 253 | + /** |
|
| 254 | + * Generates HTML <h5></h5> tags, inserts content, and adds any passed attributes |
|
| 255 | + * usage: echo EEH_HTML::h5( 'This is a Heading' ); |
|
| 256 | + * |
|
| 257 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 258 | + * @param string $id - html id attribute |
|
| 259 | + * @param string $class - html class attribute |
|
| 260 | + * @param string $style - html style attribute for applying inline styles |
|
| 261 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 262 | + * @return string |
|
| 263 | + */ |
|
| 264 | + public static function h5($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 265 | + { |
|
| 266 | + return EEH_HTML::_open_tag('h5', $content, $id, $class, $style, $other_attributes, true); |
|
| 267 | + } |
|
| 268 | + |
|
| 269 | + |
|
| 270 | + |
|
| 271 | + /** |
|
| 272 | + * Generates HTML <h6></h6> tags, inserts content, and adds any passed attributes |
|
| 273 | + * usage: echo EEH_HTML::h6( 'This is a Heading' ); |
|
| 274 | + * |
|
| 275 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 276 | + * @param string $id - html id attribute |
|
| 277 | + * @param string $class - html class attribute |
|
| 278 | + * @param string $style - html style attribute for applying inline styles |
|
| 279 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 280 | + * @return string |
|
| 281 | + */ |
|
| 282 | + public static function h6($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 283 | + { |
|
| 284 | + return EEH_HTML::_open_tag('h6', $content, $id, $class, $style, $other_attributes, true); |
|
| 285 | + } |
|
| 286 | + |
|
| 287 | + |
|
| 288 | + |
|
| 289 | + /** |
|
| 290 | + * Generates HTML <p></p> tags, inserts content, and adds any passed attributes |
|
| 291 | + * usage: echo EEH_HTML::p( 'this is a paragraph' ); |
|
| 292 | + * |
|
| 293 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 294 | + * @param string $id - html id attribute |
|
| 295 | + * @param string $class - html class attribute |
|
| 296 | + * @param string $style - html style attribute for applying inline styles |
|
| 297 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 298 | + * @return string |
|
| 299 | + */ |
|
| 300 | + public static function p($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 301 | + { |
|
| 302 | + return EEH_HTML::_open_tag('p', $content, $id, $class, $style, $other_attributes, true); |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + |
|
| 306 | + |
|
| 307 | + /** |
|
| 308 | + * ul - generates HTML opening <ul> tag and adds any passed attributes |
|
| 309 | + * usage: echo EEH_HTML::ul( 'my-list-id', 'my-list-class' ); |
|
| 310 | + * |
|
| 311 | + * @param string $id - html id attribute |
|
| 312 | + * @param string $class - html class attribute |
|
| 313 | + * @param string $style - html style attribute for applying inline styles |
|
| 314 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 315 | + * @return string |
|
| 316 | + */ |
|
| 317 | + public static function ul($id = '', $class = '', $style = '', $other_attributes = '') |
|
| 318 | + { |
|
| 319 | + return EEH_HTML::_open_tag('ul', '', $id, $class, $style, $other_attributes); |
|
| 320 | + } |
|
| 321 | + |
|
| 322 | + |
|
| 323 | + |
|
| 324 | + /** |
|
| 325 | + * Generates HTML closing </ul> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 326 | + * usage: echo EEH_HTML::ulx(); |
|
| 327 | + * |
|
| 328 | + * @param string $id - html id attribute |
|
| 329 | + * @param string $class - html class attribute |
|
| 330 | + * @return string |
|
| 331 | + */ |
|
| 332 | + public static function ulx($id = '', $class = '') |
|
| 333 | + { |
|
| 334 | + return EEH_HTML::_close_tag('ul', $id, $class); |
|
| 335 | + } |
|
| 336 | + |
|
| 337 | + |
|
| 338 | + |
|
| 339 | + /** |
|
| 340 | + * Generates HTML <li> tag, inserts content, and adds any passed attributes |
|
| 341 | + * if passed content, it will also add that, as well as the closing </li> tag |
|
| 342 | + * usage: echo EEH_HTML::li( 'this is a line item' ); |
|
| 343 | + * |
|
| 344 | + * @param string $id - html id attribute |
|
| 345 | + * @param string $class - html class attribute |
|
| 346 | + * @param string $style - html style attribute for applying inline styles |
|
| 347 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 348 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 349 | + * @return string |
|
| 350 | + */ |
|
| 351 | + public static function li($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 352 | + { |
|
| 353 | + return EEH_HTML::_open_tag('li', $content, $id, $class, $style, $other_attributes); |
|
| 354 | + } |
|
| 355 | + |
|
| 356 | + |
|
| 357 | + |
|
| 358 | + /** |
|
| 359 | + * Generates HTML closing </li> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 360 | + * usage: echo EEH_HTML::lix(); |
|
| 361 | + * |
|
| 362 | + * @param string $id - html id attribute |
|
| 363 | + * @param string $class - html class attribute |
|
| 364 | + * @return string |
|
| 365 | + */ |
|
| 366 | + public static function lix($id = '', $class = '') |
|
| 367 | + { |
|
| 368 | + return EEH_HTML::_close_tag('li', $id, $class); |
|
| 369 | + } |
|
| 370 | + |
|
| 371 | + |
|
| 372 | + |
|
| 373 | + /** |
|
| 374 | + * table - generates an HTML <table> tag and adds any passed attributes |
|
| 375 | + * usage: echo EEH_HTML::table(); |
|
| 376 | + * |
|
| 377 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 378 | + * @param string $id - html id attribute |
|
| 379 | + * @param string $class - html class attribute |
|
| 380 | + * @param string $style - html style attribute for applying inline styles |
|
| 381 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 382 | + * @return string |
|
| 383 | + */ |
|
| 384 | + public static function table($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 385 | + { |
|
| 386 | + return EEH_HTML::_open_tag('table', $content, $id, $class, $style, $other_attributes); |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + |
|
| 390 | + |
|
| 391 | + /** |
|
| 392 | + * tablex - generates an HTML </table> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 393 | + * |
|
| 394 | + * @param string $id - html id attribute |
|
| 395 | + * @param string $class - html class attribute |
|
| 396 | + * @return string |
|
| 397 | + */ |
|
| 398 | + public static function tablex($id = '', $class = '') |
|
| 399 | + { |
|
| 400 | + return EEH_HTML::_close_tag('table', $id, $class); |
|
| 401 | + } |
|
| 402 | + |
|
| 403 | + |
|
| 404 | + |
|
| 405 | + /** |
|
| 406 | + * thead - generates an HTML <thead> tag and adds any passed attributes |
|
| 407 | + * usage: echo EEH_HTML::thead(); |
|
| 408 | + * |
|
| 409 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 410 | + * @param string $id - html id attribute |
|
| 411 | + * @param string $class - html class attribute |
|
| 412 | + * @param string $style - html style attribute for applying inline styles |
|
| 413 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 414 | + * @return string |
|
| 415 | + */ |
|
| 416 | + public static function thead($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 417 | + { |
|
| 418 | + return EEH_HTML::_open_tag('thead', $content, $id, $class, $style, $other_attributes); |
|
| 419 | + } |
|
| 420 | + |
|
| 421 | + |
|
| 422 | + |
|
| 423 | + /** |
|
| 424 | + * theadx - generates an HTML </thead> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 425 | + * |
|
| 426 | + * @param string $id - html id attribute |
|
| 427 | + * @param string $class - html class attribute |
|
| 428 | + * @return string |
|
| 429 | + */ |
|
| 430 | + public static function theadx($id = '', $class = '') |
|
| 431 | + { |
|
| 432 | + return EEH_HTML::_close_tag('thead', $id, $class); |
|
| 433 | + } |
|
| 434 | + |
|
| 435 | + |
|
| 436 | + |
|
| 437 | + /** |
|
| 438 | + * tbody - generates an HTML <tbody> tag and adds any passed attributes |
|
| 439 | + * usage: echo EEH_HTML::tbody(); |
|
| 440 | + * |
|
| 441 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 442 | + * @param string $id - html id attribute |
|
| 443 | + * @param string $class - html class attribute |
|
| 444 | + * @param string $style - html style attribute for applying inline styles |
|
| 445 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 446 | + * @return string |
|
| 447 | + */ |
|
| 448 | + public static function tbody($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 449 | + { |
|
| 450 | + return EEH_HTML::_open_tag('tbody', $content, $id, $class, $style, $other_attributes); |
|
| 451 | + } |
|
| 452 | + |
|
| 453 | + |
|
| 454 | + |
|
| 455 | + /** |
|
| 456 | + * tbodyx - generates an HTML </tbody> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 457 | + * |
|
| 458 | + * @param string $id - html id attribute |
|
| 459 | + * @param string $class - html class attribute |
|
| 460 | + * @return string |
|
| 461 | + */ |
|
| 462 | + public static function tbodyx($id = '', $class = '') |
|
| 463 | + { |
|
| 464 | + return EEH_HTML::_close_tag('tbody', $id, $class); |
|
| 465 | + } |
|
| 466 | + |
|
| 467 | + |
|
| 468 | + |
|
| 469 | + /** |
|
| 470 | + * tr - generates an HTML <tr> tag and adds any passed attributes |
|
| 471 | + * usage: echo EEH_HTML::tr(); |
|
| 472 | + * |
|
| 473 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 474 | + * @param string $id - html id attribute |
|
| 475 | + * @param string $class - html class attribute |
|
| 476 | + * @param string $style - html style attribute for applying inline styles |
|
| 477 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 478 | + * @return string |
|
| 479 | + */ |
|
| 480 | + public static function tr($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 481 | + { |
|
| 482 | + return EEH_HTML::_open_tag('tr', $content, $id, $class, $style, $other_attributes); |
|
| 483 | + } |
|
| 484 | + |
|
| 485 | + |
|
| 486 | + |
|
| 487 | + /** |
|
| 488 | + * trx - generates an HTML </tr> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 489 | + * |
|
| 490 | + * @param string $id - html id attribute |
|
| 491 | + * @param string $class - html class attribute |
|
| 492 | + * @return string |
|
| 493 | + */ |
|
| 494 | + public static function trx($id = '', $class = '') |
|
| 495 | + { |
|
| 496 | + return EEH_HTML::_close_tag('tr', $id, $class); |
|
| 497 | + } |
|
| 498 | + |
|
| 499 | + |
|
| 500 | + |
|
| 501 | + /** |
|
| 502 | + * th - generates an HTML <th> tag and adds any passed attributes |
|
| 503 | + * usage: echo EEH_HTML::th(); |
|
| 504 | + * |
|
| 505 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 506 | + * @param string $id - html id attribute |
|
| 507 | + * @param string $class - html class attribute |
|
| 508 | + * @param string $style - html style attribute for applying inline styles |
|
| 509 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 510 | + * @return string |
|
| 511 | + */ |
|
| 512 | + public static function th($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 513 | + { |
|
| 514 | + return EEH_HTML::_open_tag('th', $content, $id, $class, $style, $other_attributes); |
|
| 515 | + } |
|
| 516 | + |
|
| 517 | + |
|
| 518 | + |
|
| 519 | + /** |
|
| 520 | + * thx - generates an HTML </th> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 521 | + * |
|
| 522 | + * @param string $id - html id attribute |
|
| 523 | + * @param string $class - html class attribute |
|
| 524 | + * @return string |
|
| 525 | + */ |
|
| 526 | + public static function thx($id = '', $class = '') |
|
| 527 | + { |
|
| 528 | + return EEH_HTML::_close_tag('th', $id, $class); |
|
| 529 | + } |
|
| 530 | + |
|
| 531 | + |
|
| 532 | + |
|
| 533 | + /** |
|
| 534 | + * td - generates an HTML <td> tag and adds any passed attributes |
|
| 535 | + * usage: echo EEH_HTML::td(); |
|
| 536 | + * |
|
| 537 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 538 | + * @param string $id - html id attribute |
|
| 539 | + * @param string $class - html class attribute |
|
| 540 | + * @param string $style - html style attribute for applying inline styles |
|
| 541 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 542 | + * @return string |
|
| 543 | + */ |
|
| 544 | + public static function td($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 545 | + { |
|
| 546 | + return EEH_HTML::_open_tag('td', $content, $id, $class, $style, $other_attributes); |
|
| 547 | + } |
|
| 548 | + |
|
| 549 | + |
|
| 550 | + |
|
| 551 | + /** |
|
| 552 | + * tdx - generates an HTML </td> tag - if passed the id or class attribute used for the opening ul tag, will append a comment |
|
| 553 | + * |
|
| 554 | + * @param string $id - html id attribute |
|
| 555 | + * @param string $class - html class attribute |
|
| 556 | + * @return string |
|
| 557 | + */ |
|
| 558 | + public static function tdx($id = '', $class = '') |
|
| 559 | + { |
|
| 560 | + return EEH_HTML::_close_tag('td', $id, $class); |
|
| 561 | + } |
|
| 562 | + |
|
| 563 | + |
|
| 564 | + |
|
| 565 | + /** |
|
| 566 | + * no_row - for generating a "hidden" table row, good for embedding tables within tables |
|
| 567 | + * generates a new table row with one td cell that spans however many columns you set |
|
| 568 | + * removes all styles from the tr and td |
|
| 569 | + * |
|
| 570 | + * @param string $content |
|
| 571 | + * @param int $colspan |
|
| 572 | + * @return string |
|
| 573 | + */ |
|
| 574 | + public static function no_row($content = '', $colspan = 2) |
|
| 575 | + { |
|
| 576 | + return EEH_HTML::tr( |
|
| 577 | + EEH_HTML::td($content, '', '', 'padding:0; border:none;', 'colspan="' . $colspan . '"'), |
|
| 578 | + '', |
|
| 579 | + '', |
|
| 580 | + 'padding:0; border:none;' |
|
| 581 | + ); |
|
| 582 | + } |
|
| 583 | + |
|
| 584 | + |
|
| 585 | + |
|
| 586 | + /** |
|
| 587 | + * Generates HTML <label></label> tags, inserts content, and adds any passed attributes |
|
| 588 | + * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 589 | + * |
|
| 590 | + * @access public |
|
| 591 | + * @param string $href URL to link to |
|
| 592 | + * @param string $link_text - the text that will become "hyperlinked" |
|
| 593 | + * @param string $title - html title attribute |
|
| 594 | + * @param string $id - html id attribute |
|
| 595 | + * @param string $class - html class attribute |
|
| 596 | + * @param string $style - html style attribute for applying inline styles |
|
| 597 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 598 | + * @return string |
|
| 599 | + */ |
|
| 600 | + public static function link($href = '', $link_text = '', $title = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 601 | + { |
|
| 602 | + $link_text = ! empty($link_text) ? $link_text : $href; |
|
| 603 | + $attributes = ! empty($href) ? ' href="' . $href . '"' : ''; |
|
| 604 | + $attributes .= ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 605 | + $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 606 | + $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 607 | + $attributes .= ! empty($title) ? ' title="' . esc_attr($title) . '"' : ''; |
|
| 608 | + $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 609 | + return "<a{$attributes}>{$link_text}</a>"; |
|
| 610 | + } |
|
| 611 | + |
|
| 612 | + |
|
| 613 | + |
|
| 614 | + /** |
|
| 615 | + * img - generates an HTML <img> tag and adds any passed attributes |
|
| 616 | + * usage: echo EEH_HTML::img(); |
|
| 617 | + * |
|
| 618 | + * @param string $src - html src attribute ie: the path or URL to the image |
|
| 619 | + * @param string $alt - html alt attribute |
|
| 620 | + * @param string $id - html id attribute |
|
| 621 | + * @param string $class - html class attribute |
|
| 622 | + * @param string $style - html style attribute for applying inline styles |
|
| 623 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 624 | + * @return string |
|
| 625 | + */ |
|
| 626 | + public static function img($src = '', $alt = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 627 | + { |
|
| 628 | + $attributes = ! empty($src) ? ' src="' . esc_url_raw($src) . '"' : ''; |
|
| 629 | + $attributes .= ! empty($alt) ? ' alt="' . esc_attr($alt) . '"' : ''; |
|
| 630 | + $attributes .= ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 631 | + $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 632 | + $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 633 | + $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 634 | + return '<img' . $attributes . '/>'; |
|
| 635 | + } |
|
| 636 | + |
|
| 637 | + |
|
| 638 | + |
|
| 639 | + /** |
|
| 640 | + * Generates HTML <label></label> tags, inserts content, and adds any passed attributes |
|
| 641 | + * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 642 | + * |
|
| 643 | + * @access protected |
|
| 644 | + * @param string $tag |
|
| 645 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 646 | + * @param string $id - html id attribute |
|
| 647 | + * @param string $class - html class attribute |
|
| 648 | + * @param string $style - html style attribute for applying inline styles |
|
| 649 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 650 | + * @return string |
|
| 651 | + */ |
|
| 652 | + protected static function _inline_tag($tag = 'span', $content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 653 | + { |
|
| 654 | + $attributes = ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 655 | + $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 656 | + $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 657 | + $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 658 | + return '<' . $tag . ' ' . $attributes . '>' . $content . '</' . $tag . '>'; |
|
| 659 | + } |
|
| 660 | + |
|
| 661 | + |
|
| 662 | + |
|
| 663 | + /** |
|
| 664 | + * Generates HTML <label></label> tags, inserts content, and adds any passed attributes |
|
| 665 | + * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 666 | + * |
|
| 667 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 668 | + * @param string $id - html id attribute |
|
| 669 | + * @param string $class - html class attribute |
|
| 670 | + * @param string $style - html style attribute for applying inline styles |
|
| 671 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 672 | + * @return string |
|
| 673 | + */ |
|
| 674 | + public static function label($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 675 | + { |
|
| 676 | + return EEH_HTML::_inline_tag('label', $content, $id, $class, $style, $other_attributes); |
|
| 677 | + } |
|
| 678 | + |
|
| 679 | + |
|
| 680 | + |
|
| 681 | + /** |
|
| 682 | + * Generates HTML <span></span> tags, inserts content, and adds any passed attributes |
|
| 683 | + * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 684 | + * |
|
| 685 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 686 | + * @param string $id - html id attribute |
|
| 687 | + * @param string $class - html class attribute |
|
| 688 | + * @param string $style - html style attribute for applying inline styles |
|
| 689 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 690 | + * @return string |
|
| 691 | + */ |
|
| 692 | + public static function span($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 693 | + { |
|
| 694 | + return EEH_HTML::_inline_tag('span', $content, $id, $class, $style, $other_attributes); |
|
| 695 | + } |
|
| 696 | + |
|
| 697 | + |
|
| 698 | + |
|
| 699 | + /** |
|
| 700 | + * Generates HTML <span></span> tags, inserts content, and adds any passed attributes |
|
| 701 | + * usage: echo EEH_HTML::span( 'this is some inline text' ); |
|
| 702 | + * |
|
| 703 | + * @param string $content - inserted after opening tag, and appends closing tag, otherwise tag is left open |
|
| 704 | + * @param string $id - html id attribute |
|
| 705 | + * @param string $class - html class attribute |
|
| 706 | + * @param string $style - html style attribute for applying inline styles |
|
| 707 | + * @param string $other_attributes - additional attributes like "colspan", inline JS, "rel" tags, etc |
|
| 708 | + * @return string |
|
| 709 | + */ |
|
| 710 | + public static function strong($content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
|
| 711 | + { |
|
| 712 | + return EEH_HTML::_inline_tag('strong', $content, $id, $class, $style, $other_attributes); |
|
| 713 | + } |
|
| 714 | + |
|
| 715 | + |
|
| 716 | + |
|
| 717 | + /** |
|
| 718 | + * Generates an html <-- comment --> tag |
|
| 719 | + * usage: echo comment( 'this is a comment' ); |
|
| 720 | + * |
|
| 721 | + * @param string $comment |
|
| 722 | + * @return string |
|
| 723 | + */ |
|
| 724 | + public static function comment($comment = '') |
|
| 725 | + { |
|
| 726 | + return ! empty($comment) ? EEH_HTML::nl() . '<!-- ' . $comment . ' -->' : ''; |
|
| 727 | + } |
|
| 728 | + |
|
| 729 | + |
|
| 730 | + |
|
| 731 | + /** |
|
| 732 | + * br - generates a line break |
|
| 733 | + * |
|
| 734 | + * @param int $nmbr - the number of line breaks to return |
|
| 735 | + * @return string |
|
| 736 | + */ |
|
| 737 | + public static function br($nmbr = 1) |
|
| 738 | + { |
|
| 739 | + return str_repeat('<br />', $nmbr); |
|
| 740 | + } |
|
| 741 | + |
|
| 742 | + |
|
| 743 | + |
|
| 744 | + /** |
|
| 745 | + * nbsp - generates non-breaking space entities based on number supplied |
|
| 746 | + * |
|
| 747 | + * @param int $nmbr - the number of non-breaking spaces to return |
|
| 748 | + * @return string |
|
| 749 | + */ |
|
| 750 | + public static function nbsp($nmbr = 1) |
|
| 751 | + { |
|
| 752 | + return str_repeat(' ', $nmbr); |
|
| 753 | + } |
|
| 754 | + |
|
| 755 | + |
|
| 756 | + |
|
| 757 | + /** |
|
| 758 | + * sanitize_id |
|
| 759 | + * |
|
| 760 | + * functionally does the same as the wp_core function sanitize_key except it does NOT use |
|
| 761 | + * strtolower and allows capitals. |
|
| 762 | + * |
|
| 763 | + * @param string $id |
|
| 764 | + * @return string |
|
| 765 | + */ |
|
| 766 | + public static function sanitize_id($id = '') |
|
| 767 | + { |
|
| 768 | + $key = str_replace(' ', '-', trim($id)); |
|
| 769 | + return preg_replace('/[^a-zA-Z0-9_\-]/', '', $key); |
|
| 770 | + } |
|
| 771 | + |
|
| 772 | + |
|
| 773 | + |
|
| 774 | + /** |
|
| 775 | + * return a newline and tabs ("nl" stands for "new line") |
|
| 776 | + * |
|
| 777 | + * @param int $indent the number of tabs to ADD to the current indent (can be negative or zero) |
|
| 778 | + * @param string $tag |
|
| 779 | + * @return string - newline character plus # of indents passed (can be + or -) |
|
| 780 | + */ |
|
| 781 | + public static function nl($indent = 0, $tag = 'none') |
|
| 782 | + { |
|
| 783 | + $html = "\n"; |
|
| 784 | + EEH_HTML::indent($indent, $tag); |
|
| 785 | + for ($x = 0; $x < EEH_HTML::$_indent[ $tag ]; $x++) { |
|
| 786 | + $html .= "\t"; |
|
| 787 | + } |
|
| 788 | + return $html; |
|
| 789 | + } |
|
| 790 | + |
|
| 791 | + |
|
| 792 | + |
|
| 793 | + /** |
|
| 794 | + * Changes the indents used in EEH_HTML::nl. Often its convenient to change |
|
| 795 | + * the indentation level without actually creating a new line |
|
| 796 | + * |
|
| 797 | + * @param int $indent can be negative to decrease the indentation level |
|
| 798 | + * @param string $tag |
|
| 799 | + */ |
|
| 800 | + public static function indent($indent, $tag = 'none') |
|
| 801 | + { |
|
| 802 | + static $default_indentation = false; |
|
| 803 | + if (! $default_indentation) { |
|
| 804 | + EEH_HTML::_set_default_indentation(); |
|
| 805 | + $default_indentation = true; |
|
| 806 | + } |
|
| 807 | + if (! isset(EEH_HTML::$_indent[ $tag ])) { |
|
| 808 | + EEH_HTML::$_indent[ $tag ] = 0; |
|
| 809 | + } |
|
| 810 | + EEH_HTML::$_indent[ $tag ] += (int) $indent; |
|
| 811 | + EEH_HTML::$_indent[ $tag ] = EEH_HTML::$_indent[ $tag ] >= 0 ? EEH_HTML::$_indent[ $tag ] : 0; |
|
| 812 | + } |
|
| 813 | + |
|
| 814 | + |
|
| 815 | + /** |
|
| 816 | + * class _set_default_indentation |
|
| 817 | + * |
|
| 818 | + * @access private |
|
| 819 | + */ |
|
| 820 | + private static function _set_default_indentation() |
|
| 821 | + { |
|
| 822 | + // set some initial formatting for table indentation |
|
| 823 | + EEH_HTML::$_indent = array( |
|
| 824 | + 'none' => 0, |
|
| 825 | + 'form' => 0, |
|
| 826 | + 'radio' => 0, |
|
| 827 | + 'checkbox' => 0, |
|
| 828 | + 'select' => 0, |
|
| 829 | + 'option' => 0, |
|
| 830 | + 'optgroup' => 0, |
|
| 831 | + 'table' => 1, |
|
| 832 | + 'thead' => 2, |
|
| 833 | + 'tbody' => 2, |
|
| 834 | + 'tr' => 3, |
|
| 835 | + 'th' => 4, |
|
| 836 | + 'td' => 4, |
|
| 837 | + 'div' => 0, |
|
| 838 | + 'h1' => 0, |
|
| 839 | + 'h2' => 0, |
|
| 840 | + 'h3' => 0, |
|
| 841 | + 'h4' => 0, |
|
| 842 | + 'h5' => 0, |
|
| 843 | + 'h6' => 0, |
|
| 844 | + 'p' => 0, |
|
| 845 | + 'ul' => 0, |
|
| 846 | + 'li' => 1 |
|
| 847 | + ); |
|
| 848 | + } |
|
| 849 | + |
|
| 850 | + |
|
| 851 | + |
|
| 852 | + /** |
|
| 853 | + * Retrieves the list of tags considered "simple", that are probably safe for |
|
| 854 | + * use in inputs |
|
| 855 | + * @global array $allowedtags |
|
| 856 | + * @return array |
|
| 857 | + */ |
|
| 858 | + public static function get_simple_tags() |
|
| 859 | + { |
|
| 860 | + global $allowedtags; |
|
| 861 | + $tags_we_allow['p']=array(); |
|
| 862 | + $tags_we_allow = array_merge_recursive( |
|
| 863 | + $allowedtags, |
|
| 864 | + array( |
|
| 865 | + 'ol' => array(), |
|
| 866 | + 'ul' => array(), |
|
| 867 | + 'li' => array(), |
|
| 868 | + 'br' => array(), |
|
| 869 | + 'p' => array(), |
|
| 870 | + 'a' => array('target') |
|
| 871 | + ) |
|
| 872 | + ); |
|
| 873 | + return apply_filters('FHEE__EEH_HTML__get_simple_tags', $tags_we_allow); |
|
| 874 | + } |
|
| 875 | 875 | } |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | public static function instance() |
| 43 | 43 | { |
| 44 | 44 | // check if class object is instantiated, and instantiated properly |
| 45 | - if (! self::$_instance instanceof EEH_HTML) { |
|
| 45 | + if ( ! self::$_instance instanceof EEH_HTML) { |
|
| 46 | 46 | self::$_instance = new EEH_HTML(); |
| 47 | 47 | } |
| 48 | 48 | return self::$_instance; |
@@ -104,12 +104,12 @@ discard block |
||
| 104 | 104 | $other_attributes = '', |
| 105 | 105 | $force_close = false |
| 106 | 106 | ) { |
| 107 | - $attributes = ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 108 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 109 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 110 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 111 | - $html = EEH_HTML::nl(0, $tag) . '<' . $tag . $attributes . '>'; |
|
| 112 | - $html .= ! empty($content) ? EEH_HTML::nl(1, $tag) . $content : ''; |
|
| 107 | + $attributes = ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
| 108 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
| 109 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
| 110 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
| 111 | + $html = EEH_HTML::nl(0, $tag).'<'.$tag.$attributes.'>'; |
|
| 112 | + $html .= ! empty($content) ? EEH_HTML::nl(1, $tag).$content : ''; |
|
| 113 | 113 | $indent = ! empty($content) || $force_close ? true : false; |
| 114 | 114 | $html .= ! empty($content) || $force_close ? EEH_HTML::_close_tag($tag, $id, $class, $indent) : ''; |
| 115 | 115 | return $html; |
@@ -132,12 +132,12 @@ discard block |
||
| 132 | 132 | { |
| 133 | 133 | $comment = ''; |
| 134 | 134 | if ($id) { |
| 135 | - $comment = EEH_HTML::comment('close ' . $id) . EEH_HTML::nl(0, $tag); |
|
| 135 | + $comment = EEH_HTML::comment('close '.$id).EEH_HTML::nl(0, $tag); |
|
| 136 | 136 | } elseif ($class) { |
| 137 | - $comment = EEH_HTML::comment('close ' . $class) . EEH_HTML::nl(0, $tag); |
|
| 137 | + $comment = EEH_HTML::comment('close '.$class).EEH_HTML::nl(0, $tag); |
|
| 138 | 138 | } |
| 139 | 139 | $html = $indent ? EEH_HTML::nl(-1, $tag) : ''; |
| 140 | - $html .= '</' . $tag . '>' . $comment; |
|
| 140 | + $html .= '</'.$tag.'>'.$comment; |
|
| 141 | 141 | return $html; |
| 142 | 142 | } |
| 143 | 143 | |
@@ -574,7 +574,7 @@ discard block |
||
| 574 | 574 | public static function no_row($content = '', $colspan = 2) |
| 575 | 575 | { |
| 576 | 576 | return EEH_HTML::tr( |
| 577 | - EEH_HTML::td($content, '', '', 'padding:0; border:none;', 'colspan="' . $colspan . '"'), |
|
| 577 | + EEH_HTML::td($content, '', '', 'padding:0; border:none;', 'colspan="'.$colspan.'"'), |
|
| 578 | 578 | '', |
| 579 | 579 | '', |
| 580 | 580 | 'padding:0; border:none;' |
@@ -600,12 +600,12 @@ discard block |
||
| 600 | 600 | public static function link($href = '', $link_text = '', $title = '', $id = '', $class = '', $style = '', $other_attributes = '') |
| 601 | 601 | { |
| 602 | 602 | $link_text = ! empty($link_text) ? $link_text : $href; |
| 603 | - $attributes = ! empty($href) ? ' href="' . $href . '"' : ''; |
|
| 604 | - $attributes .= ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 605 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 606 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 607 | - $attributes .= ! empty($title) ? ' title="' . esc_attr($title) . '"' : ''; |
|
| 608 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 603 | + $attributes = ! empty($href) ? ' href="'.$href.'"' : ''; |
|
| 604 | + $attributes .= ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
| 605 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
| 606 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
| 607 | + $attributes .= ! empty($title) ? ' title="'.esc_attr($title).'"' : ''; |
|
| 608 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
| 609 | 609 | return "<a{$attributes}>{$link_text}</a>"; |
| 610 | 610 | } |
| 611 | 611 | |
@@ -625,13 +625,13 @@ discard block |
||
| 625 | 625 | */ |
| 626 | 626 | public static function img($src = '', $alt = '', $id = '', $class = '', $style = '', $other_attributes = '') |
| 627 | 627 | { |
| 628 | - $attributes = ! empty($src) ? ' src="' . esc_url_raw($src) . '"' : ''; |
|
| 629 | - $attributes .= ! empty($alt) ? ' alt="' . esc_attr($alt) . '"' : ''; |
|
| 630 | - $attributes .= ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 631 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 632 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 633 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 634 | - return '<img' . $attributes . '/>'; |
|
| 628 | + $attributes = ! empty($src) ? ' src="'.esc_url_raw($src).'"' : ''; |
|
| 629 | + $attributes .= ! empty($alt) ? ' alt="'.esc_attr($alt).'"' : ''; |
|
| 630 | + $attributes .= ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
| 631 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
| 632 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
| 633 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
| 634 | + return '<img'.$attributes.'/>'; |
|
| 635 | 635 | } |
| 636 | 636 | |
| 637 | 637 | |
@@ -651,11 +651,11 @@ discard block |
||
| 651 | 651 | */ |
| 652 | 652 | protected static function _inline_tag($tag = 'span', $content = '', $id = '', $class = '', $style = '', $other_attributes = '') |
| 653 | 653 | { |
| 654 | - $attributes = ! empty($id) ? ' id="' . EEH_HTML::sanitize_id($id) . '"' : ''; |
|
| 655 | - $attributes .= ! empty($class) ? ' class="' . $class . '"' : ''; |
|
| 656 | - $attributes .= ! empty($style) ? ' style="' . $style . '"' : ''; |
|
| 657 | - $attributes .= ! empty($other_attributes) ? ' ' . $other_attributes : ''; |
|
| 658 | - return '<' . $tag . ' ' . $attributes . '>' . $content . '</' . $tag . '>'; |
|
| 654 | + $attributes = ! empty($id) ? ' id="'.EEH_HTML::sanitize_id($id).'"' : ''; |
|
| 655 | + $attributes .= ! empty($class) ? ' class="'.$class.'"' : ''; |
|
| 656 | + $attributes .= ! empty($style) ? ' style="'.$style.'"' : ''; |
|
| 657 | + $attributes .= ! empty($other_attributes) ? ' '.$other_attributes : ''; |
|
| 658 | + return '<'.$tag.' '.$attributes.'>'.$content.'</'.$tag.'>'; |
|
| 659 | 659 | } |
| 660 | 660 | |
| 661 | 661 | |
@@ -723,7 +723,7 @@ discard block |
||
| 723 | 723 | */ |
| 724 | 724 | public static function comment($comment = '') |
| 725 | 725 | { |
| 726 | - return ! empty($comment) ? EEH_HTML::nl() . '<!-- ' . $comment . ' -->' : ''; |
|
| 726 | + return ! empty($comment) ? EEH_HTML::nl().'<!-- '.$comment.' -->' : ''; |
|
| 727 | 727 | } |
| 728 | 728 | |
| 729 | 729 | |
@@ -782,7 +782,7 @@ discard block |
||
| 782 | 782 | { |
| 783 | 783 | $html = "\n"; |
| 784 | 784 | EEH_HTML::indent($indent, $tag); |
| 785 | - for ($x = 0; $x < EEH_HTML::$_indent[ $tag ]; $x++) { |
|
| 785 | + for ($x = 0; $x < EEH_HTML::$_indent[$tag]; $x++) { |
|
| 786 | 786 | $html .= "\t"; |
| 787 | 787 | } |
| 788 | 788 | return $html; |
@@ -800,15 +800,15 @@ discard block |
||
| 800 | 800 | public static function indent($indent, $tag = 'none') |
| 801 | 801 | { |
| 802 | 802 | static $default_indentation = false; |
| 803 | - if (! $default_indentation) { |
|
| 803 | + if ( ! $default_indentation) { |
|
| 804 | 804 | EEH_HTML::_set_default_indentation(); |
| 805 | 805 | $default_indentation = true; |
| 806 | 806 | } |
| 807 | - if (! isset(EEH_HTML::$_indent[ $tag ])) { |
|
| 808 | - EEH_HTML::$_indent[ $tag ] = 0; |
|
| 807 | + if ( ! isset(EEH_HTML::$_indent[$tag])) { |
|
| 808 | + EEH_HTML::$_indent[$tag] = 0; |
|
| 809 | 809 | } |
| 810 | - EEH_HTML::$_indent[ $tag ] += (int) $indent; |
|
| 811 | - EEH_HTML::$_indent[ $tag ] = EEH_HTML::$_indent[ $tag ] >= 0 ? EEH_HTML::$_indent[ $tag ] : 0; |
|
| 810 | + EEH_HTML::$_indent[$tag] += (int) $indent; |
|
| 811 | + EEH_HTML::$_indent[$tag] = EEH_HTML::$_indent[$tag] >= 0 ? EEH_HTML::$_indent[$tag] : 0; |
|
| 812 | 812 | } |
| 813 | 813 | |
| 814 | 814 | |
@@ -858,7 +858,7 @@ discard block |
||
| 858 | 858 | public static function get_simple_tags() |
| 859 | 859 | { |
| 860 | 860 | global $allowedtags; |
| 861 | - $tags_we_allow['p']=array(); |
|
| 861 | + $tags_we_allow['p'] = array(); |
|
| 862 | 862 | $tags_we_allow = array_merge_recursive( |
| 863 | 863 | $allowedtags, |
| 864 | 864 | array( |
@@ -3,4 +3,4 @@ |
||
| 3 | 3 | * @var EE_Checkbox_Multi_Input $input |
| 4 | 4 | */ |
| 5 | 5 | ?> |
| 6 | -<div class="ee-privacy-consent-assertion"><?php echo $input->get_html_for_input();?></div> |
|
| 6 | +<div class="ee-privacy-consent-assertion"><?php echo $input->get_html_for_input(); ?></div> |
|
@@ -14,62 +14,62 @@ |
||
| 14 | 14 | class EE_Full_HTML_Validation_Strategy extends EE_Validation_Strategy_Base |
| 15 | 15 | { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * @param null $validation_error_message |
|
| 19 | - */ |
|
| 20 | - public function __construct($validation_error_message = null) |
|
| 21 | - { |
|
| 22 | - if (! $validation_error_message) { |
|
| 23 | - $validation_error_message = sprintf( |
|
| 24 | - __('Only the following HTML tags are allowed:%1$s%2$s', "event_espresso"), |
|
| 25 | - '<br />', |
|
| 26 | - $this->get_list_of_allowed_tags() |
|
| 27 | - ); |
|
| 28 | - } |
|
| 29 | - parent::__construct($validation_error_message); |
|
| 30 | - } |
|
| 17 | + /** |
|
| 18 | + * @param null $validation_error_message |
|
| 19 | + */ |
|
| 20 | + public function __construct($validation_error_message = null) |
|
| 21 | + { |
|
| 22 | + if (! $validation_error_message) { |
|
| 23 | + $validation_error_message = sprintf( |
|
| 24 | + __('Only the following HTML tags are allowed:%1$s%2$s', "event_espresso"), |
|
| 25 | + '<br />', |
|
| 26 | + $this->get_list_of_allowed_tags() |
|
| 27 | + ); |
|
| 28 | + } |
|
| 29 | + parent::__construct($validation_error_message); |
|
| 30 | + } |
|
| 31 | 31 | |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * get_list_of_allowed_tags |
|
| 35 | - * |
|
| 36 | - * generates and returns a string that lists the top-level HTML tags that are allowable for this input |
|
| 37 | - * |
|
| 38 | - * @return string |
|
| 39 | - */ |
|
| 40 | - public function get_list_of_allowed_tags() |
|
| 41 | - { |
|
| 42 | - $tags_we_allow = $this->getAllowedTags(); |
|
| 43 | - ksort($tags_we_allow); |
|
| 44 | - return implode(', ', array_keys($tags_we_allow)); |
|
| 45 | - } |
|
| 33 | + /** |
|
| 34 | + * get_list_of_allowed_tags |
|
| 35 | + * |
|
| 36 | + * generates and returns a string that lists the top-level HTML tags that are allowable for this input |
|
| 37 | + * |
|
| 38 | + * @return string |
|
| 39 | + */ |
|
| 40 | + public function get_list_of_allowed_tags() |
|
| 41 | + { |
|
| 42 | + $tags_we_allow = $this->getAllowedTags(); |
|
| 43 | + ksort($tags_we_allow); |
|
| 44 | + return implode(', ', array_keys($tags_we_allow)); |
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * Returns an array whose keys are allowed tags and values are an array of allowed attributes |
|
| 50 | - * |
|
| 51 | - * @return array |
|
| 52 | - */ |
|
| 53 | - protected function getAllowedTags() |
|
| 54 | - { |
|
| 55 | - global $allowedposttags; |
|
| 56 | - return array_merge_recursive( |
|
| 57 | - $allowedposttags, |
|
| 58 | - EEH_HTML::get_simple_tags() |
|
| 59 | - ); |
|
| 60 | - } |
|
| 48 | + /** |
|
| 49 | + * Returns an array whose keys are allowed tags and values are an array of allowed attributes |
|
| 50 | + * |
|
| 51 | + * @return array |
|
| 52 | + */ |
|
| 53 | + protected function getAllowedTags() |
|
| 54 | + { |
|
| 55 | + global $allowedposttags; |
|
| 56 | + return array_merge_recursive( |
|
| 57 | + $allowedposttags, |
|
| 58 | + EEH_HTML::get_simple_tags() |
|
| 59 | + ); |
|
| 60 | + } |
|
| 61 | 61 | |
| 62 | 62 | |
| 63 | - /** |
|
| 64 | - * @param $normalized_value |
|
| 65 | - * @throws \EE_Validation_Error |
|
| 66 | - */ |
|
| 67 | - public function validate($normalized_value) |
|
| 68 | - { |
|
| 69 | - parent::validate($normalized_value); |
|
| 70 | - $normalized_value_sans_tags = wp_kses("$normalized_value", $this->getAllowedTags()); |
|
| 71 | - if (strlen($normalized_value) > strlen($normalized_value_sans_tags)) { |
|
| 72 | - throw new EE_Validation_Error($this->get_validation_error_message(), 'complex_html_tags'); |
|
| 73 | - } |
|
| 74 | - } |
|
| 63 | + /** |
|
| 64 | + * @param $normalized_value |
|
| 65 | + * @throws \EE_Validation_Error |
|
| 66 | + */ |
|
| 67 | + public function validate($normalized_value) |
|
| 68 | + { |
|
| 69 | + parent::validate($normalized_value); |
|
| 70 | + $normalized_value_sans_tags = wp_kses("$normalized_value", $this->getAllowedTags()); |
|
| 71 | + if (strlen($normalized_value) > strlen($normalized_value_sans_tags)) { |
|
| 72 | + throw new EE_Validation_Error($this->get_validation_error_message(), 'complex_html_tags'); |
|
| 73 | + } |
|
| 74 | + } |
|
| 75 | 75 | } |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | public function __construct($validation_error_message = null) |
| 21 | 21 | { |
| 22 | - if (! $validation_error_message) { |
|
| 22 | + if ( ! $validation_error_message) { |
|
| 23 | 23 | $validation_error_message = sprintf( |
| 24 | 24 | __('Only the following HTML tags are allowed:%1$s%2$s', "event_espresso"), |
| 25 | 25 | '<br />', |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | public static function instance() |
| 146 | 146 | { |
| 147 | 147 | // check if class object is instantiated, and instantiated properly |
| 148 | - if (! self::$_instance instanceof EE_Config) { |
|
| 148 | + if ( ! self::$_instance instanceof EE_Config) { |
|
| 149 | 149 | self::$_instance = new self(); |
| 150 | 150 | } |
| 151 | 151 | return self::$_instance; |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | $this |
| 284 | 284 | ); |
| 285 | 285 | if (is_object($settings) && property_exists($this, $config)) { |
| 286 | - $this->{$config} = apply_filters('FHEE__EE_Config___load_core_config__' . $config, $settings); |
|
| 286 | + $this->{$config} = apply_filters('FHEE__EE_Config___load_core_config__'.$config, $settings); |
|
| 287 | 287 | // call configs populate method to ensure any defaults are set for empty values. |
| 288 | 288 | if (method_exists($settings, 'populate')) { |
| 289 | 289 | $this->{$config}->populate(); |
@@ -556,7 +556,7 @@ discard block |
||
| 556 | 556 | break; |
| 557 | 557 | // TEST #2 : check that settings section exists |
| 558 | 558 | case 2: |
| 559 | - if (! isset($this->{$section})) { |
|
| 559 | + if ( ! isset($this->{$section})) { |
|
| 560 | 560 | if ($display_errors) { |
| 561 | 561 | throw new EE_Error( |
| 562 | 562 | sprintf( |
@@ -570,7 +570,7 @@ discard block |
||
| 570 | 570 | break; |
| 571 | 571 | // TEST #3 : check that section is the proper format |
| 572 | 572 | case 3: |
| 573 | - if (! ($this->{$section} instanceof EE_Config_Base || $this->{$section} instanceof stdClass) |
|
| 573 | + if ( ! ($this->{$section} instanceof EE_Config_Base || $this->{$section} instanceof stdClass) |
|
| 574 | 574 | ) { |
| 575 | 575 | if ($display_errors) { |
| 576 | 576 | throw new EE_Error( |
@@ -616,7 +616,7 @@ discard block |
||
| 616 | 616 | break; |
| 617 | 617 | // TEST #6 : verify config class is accessible |
| 618 | 618 | case 6: |
| 619 | - if (! class_exists($config_class)) { |
|
| 619 | + if ( ! class_exists($config_class)) { |
|
| 620 | 620 | if ($display_errors) { |
| 621 | 621 | throw new EE_Error( |
| 622 | 622 | sprintf( |
@@ -633,7 +633,7 @@ discard block |
||
| 633 | 633 | break; |
| 634 | 634 | // TEST #7 : check that config has even been set |
| 635 | 635 | case 7: |
| 636 | - if (! isset($this->{$section}->{$name})) { |
|
| 636 | + if ( ! isset($this->{$section}->{$name})) { |
|
| 637 | 637 | if ($display_errors) { |
| 638 | 638 | throw new EE_Error( |
| 639 | 639 | sprintf( |
@@ -651,7 +651,7 @@ discard block |
||
| 651 | 651 | break; |
| 652 | 652 | // TEST #8 : check that config is the requested type |
| 653 | 653 | case 8: |
| 654 | - if (! $this->{$section}->{$name} instanceof $config_class) { |
|
| 654 | + if ( ! $this->{$section}->{$name} instanceof $config_class) { |
|
| 655 | 655 | if ($display_errors) { |
| 656 | 656 | throw new EE_Error( |
| 657 | 657 | sprintf( |
@@ -670,7 +670,7 @@ discard block |
||
| 670 | 670 | break; |
| 671 | 671 | // TEST #9 : verify config object |
| 672 | 672 | case 9: |
| 673 | - if (! $config_obj instanceof EE_Config_Base) { |
|
| 673 | + if ( ! $config_obj instanceof EE_Config_Base) { |
|
| 674 | 674 | if ($display_errors) { |
| 675 | 675 | throw new EE_Error( |
| 676 | 676 | sprintf( |
@@ -702,7 +702,7 @@ discard block |
||
| 702 | 702 | */ |
| 703 | 703 | private function _generate_config_option_name($section = '', $name = '') |
| 704 | 704 | { |
| 705 | - return 'ee_config-' . strtolower($section . '-' . str_replace(array('EE_', 'EED_'), '', $name)); |
|
| 705 | + return 'ee_config-'.strtolower($section.'-'.str_replace(array('EE_', 'EED_'), '', $name)); |
|
| 706 | 706 | } |
| 707 | 707 | |
| 708 | 708 | |
@@ -719,7 +719,7 @@ discard block |
||
| 719 | 719 | { |
| 720 | 720 | return ! empty($config_class) |
| 721 | 721 | ? $config_class |
| 722 | - : str_replace(' ', '_', ucwords(str_replace('_', ' ', $name))) . '_Config'; |
|
| 722 | + : str_replace(' ', '_', ucwords(str_replace('_', ' ', $name))).'_Config'; |
|
| 723 | 723 | } |
| 724 | 724 | |
| 725 | 725 | |
@@ -738,17 +738,17 @@ discard block |
||
| 738 | 738 | // ensure config class is set to something |
| 739 | 739 | $config_class = $this->_set_config_class($config_class, $name); |
| 740 | 740 | // run tests 1-4, 6, and 7 to verify all config params are set and valid |
| 741 | - if (! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 741 | + if ( ! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 742 | 742 | return null; |
| 743 | 743 | } |
| 744 | 744 | $config_option_name = $this->_generate_config_option_name($section, $name); |
| 745 | 745 | // if the config option name hasn't been added yet to the list of option names we're tracking, then do so now |
| 746 | - if (! isset($this->_addon_option_names[ $config_option_name ])) { |
|
| 747 | - $this->_addon_option_names[ $config_option_name ] = $config_class; |
|
| 746 | + if ( ! isset($this->_addon_option_names[$config_option_name])) { |
|
| 747 | + $this->_addon_option_names[$config_option_name] = $config_class; |
|
| 748 | 748 | $this->update_addon_option_names(); |
| 749 | 749 | } |
| 750 | 750 | // verify the incoming config object but suppress errors |
| 751 | - if (! $this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), false)) { |
|
| 751 | + if ( ! $this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), false)) { |
|
| 752 | 752 | $config_obj = new $config_class(); |
| 753 | 753 | } |
| 754 | 754 | if (get_option($config_option_name)) { |
@@ -795,7 +795,7 @@ discard block |
||
| 795 | 795 | // get class name of the incoming object |
| 796 | 796 | $config_class = get_class($config_obj); |
| 797 | 797 | // run tests 1-5 and 9 to verify config |
| 798 | - if (! $this->_verify_config_params( |
|
| 798 | + if ( ! $this->_verify_config_params( |
|
| 799 | 799 | $section, |
| 800 | 800 | $name, |
| 801 | 801 | $config_class, |
@@ -807,7 +807,7 @@ discard block |
||
| 807 | 807 | } |
| 808 | 808 | $config_option_name = $this->_generate_config_option_name($section, $name); |
| 809 | 809 | // check if config object has been added to db by seeing if config option name is in $this->_addon_option_names array |
| 810 | - if (! isset($this->_addon_option_names[ $config_option_name ])) { |
|
| 810 | + if ( ! isset($this->_addon_option_names[$config_option_name])) { |
|
| 811 | 811 | // save new config to db |
| 812 | 812 | if ($this->set_config($section, $name, $config_class, $config_obj)) { |
| 813 | 813 | return true; |
@@ -833,7 +833,7 @@ discard block |
||
| 833 | 833 | 'event_espresso' |
| 834 | 834 | ), |
| 835 | 835 | $config_class, |
| 836 | - 'EE_Config->' . $section . '->' . $name |
|
| 836 | + 'EE_Config->'.$section.'->'.$name |
|
| 837 | 837 | ), |
| 838 | 838 | __FILE__, |
| 839 | 839 | __FUNCTION__, |
@@ -859,7 +859,7 @@ discard block |
||
| 859 | 859 | // ensure config class is set to something |
| 860 | 860 | $config_class = $this->_set_config_class($config_class, $name); |
| 861 | 861 | // run tests 1-4, 6 and 7 to verify that all params have been set |
| 862 | - if (! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 862 | + if ( ! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 863 | 863 | return null; |
| 864 | 864 | } |
| 865 | 865 | // now test if the requested config object exists, but suppress errors |
@@ -904,7 +904,7 @@ discard block |
||
| 904 | 904 | // retrieve the wp-option for this config class. |
| 905 | 905 | $config_option = maybe_unserialize(get_option($config_option_name, array())); |
| 906 | 906 | if (empty($config_option)) { |
| 907 | - EE_Config::log($config_option_name . '-NOT-FOUND'); |
|
| 907 | + EE_Config::log($config_option_name.'-NOT-FOUND'); |
|
| 908 | 908 | } |
| 909 | 909 | return $config_option; |
| 910 | 910 | } |
@@ -922,7 +922,7 @@ discard block |
||
| 922 | 922 | // copy incoming $_REQUEST and sanitize it so we can save it |
| 923 | 923 | $_request = $_REQUEST; |
| 924 | 924 | array_walk_recursive($_request, 'sanitize_text_field'); |
| 925 | - $config_log[ (string) microtime(true) ] = array( |
|
| 925 | + $config_log[(string) microtime(true)] = array( |
|
| 926 | 926 | 'config_name' => $config_option_name, |
| 927 | 927 | 'request' => $_request, |
| 928 | 928 | ); |
@@ -937,7 +937,7 @@ discard block |
||
| 937 | 937 | */ |
| 938 | 938 | public static function trim_log() |
| 939 | 939 | { |
| 940 | - if (! EE_Config::logging_enabled()) { |
|
| 940 | + if ( ! EE_Config::logging_enabled()) { |
|
| 941 | 941 | return; |
| 942 | 942 | } |
| 943 | 943 | $config_log = maybe_unserialize(get_option(EE_Config::LOG_NAME, array())); |
@@ -961,7 +961,7 @@ discard block |
||
| 961 | 961 | public static function get_page_for_posts() |
| 962 | 962 | { |
| 963 | 963 | $page_for_posts = get_option('page_for_posts'); |
| 964 | - if (! $page_for_posts) { |
|
| 964 | + if ( ! $page_for_posts) { |
|
| 965 | 965 | return 'posts'; |
| 966 | 966 | } |
| 967 | 967 | /** @type WPDB $wpdb */ |
@@ -1011,20 +1011,20 @@ discard block |
||
| 1011 | 1011 | { |
| 1012 | 1012 | // only init widgets on admin pages when not in complete maintenance, and |
| 1013 | 1013 | // on frontend when not in any maintenance mode |
| 1014 | - if (! EE_Maintenance_Mode::instance()->level() |
|
| 1014 | + if ( ! EE_Maintenance_Mode::instance()->level() |
|
| 1015 | 1015 | || ( |
| 1016 | 1016 | is_admin() |
| 1017 | 1017 | && EE_Maintenance_Mode::instance()->level() !== EE_Maintenance_Mode::level_2_complete_maintenance |
| 1018 | 1018 | ) |
| 1019 | 1019 | ) { |
| 1020 | 1020 | // grab list of installed widgets |
| 1021 | - $widgets_to_register = glob(EE_WIDGETS . '*', GLOB_ONLYDIR); |
|
| 1021 | + $widgets_to_register = glob(EE_WIDGETS.'*', GLOB_ONLYDIR); |
|
| 1022 | 1022 | // filter list of modules to register |
| 1023 | 1023 | $widgets_to_register = apply_filters( |
| 1024 | 1024 | 'FHEE__EE_Config__register_widgets__widgets_to_register', |
| 1025 | 1025 | $widgets_to_register |
| 1026 | 1026 | ); |
| 1027 | - if (! empty($widgets_to_register)) { |
|
| 1027 | + if ( ! empty($widgets_to_register)) { |
|
| 1028 | 1028 | // cycle thru widget folders |
| 1029 | 1029 | foreach ($widgets_to_register as $widget_path) { |
| 1030 | 1030 | // add to list of installed widget modules |
@@ -1074,31 +1074,31 @@ discard block |
||
| 1074 | 1074 | // create classname from widget directory name |
| 1075 | 1075 | $widget = str_replace(' ', '_', ucwords(str_replace('_', ' ', $widget))); |
| 1076 | 1076 | // add class prefix |
| 1077 | - $widget_class = 'EEW_' . $widget; |
|
| 1077 | + $widget_class = 'EEW_'.$widget; |
|
| 1078 | 1078 | // does the widget exist ? |
| 1079 | - if (! is_readable($widget_path . DS . $widget_class . $widget_ext)) { |
|
| 1079 | + if ( ! is_readable($widget_path.DS.$widget_class.$widget_ext)) { |
|
| 1080 | 1080 | $msg = sprintf( |
| 1081 | 1081 | __( |
| 1082 | 1082 | 'The requested %s widget file could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', |
| 1083 | 1083 | 'event_espresso' |
| 1084 | 1084 | ), |
| 1085 | 1085 | $widget_class, |
| 1086 | - $widget_path . DS . $widget_class . $widget_ext |
|
| 1086 | + $widget_path.DS.$widget_class.$widget_ext |
|
| 1087 | 1087 | ); |
| 1088 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1088 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1089 | 1089 | return; |
| 1090 | 1090 | } |
| 1091 | 1091 | // load the widget class file |
| 1092 | - require_once($widget_path . DS . $widget_class . $widget_ext); |
|
| 1092 | + require_once($widget_path.DS.$widget_class.$widget_ext); |
|
| 1093 | 1093 | // verify that class exists |
| 1094 | - if (! class_exists($widget_class)) { |
|
| 1094 | + if ( ! class_exists($widget_class)) { |
|
| 1095 | 1095 | $msg = sprintf(__('The requested %s widget class does not exist.', 'event_espresso'), $widget_class); |
| 1096 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1096 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1097 | 1097 | return; |
| 1098 | 1098 | } |
| 1099 | 1099 | register_widget($widget_class); |
| 1100 | 1100 | // add to array of registered widgets |
| 1101 | - EE_Registry::instance()->widgets->{$widget_class} = $widget_path . DS . $widget_class . $widget_ext; |
|
| 1101 | + EE_Registry::instance()->widgets->{$widget_class} = $widget_path.DS.$widget_class.$widget_ext; |
|
| 1102 | 1102 | } |
| 1103 | 1103 | |
| 1104 | 1104 | |
@@ -1111,18 +1111,18 @@ discard block |
||
| 1111 | 1111 | private function _register_modules() |
| 1112 | 1112 | { |
| 1113 | 1113 | // grab list of installed modules |
| 1114 | - $modules_to_register = glob(EE_MODULES . '*', GLOB_ONLYDIR); |
|
| 1114 | + $modules_to_register = glob(EE_MODULES.'*', GLOB_ONLYDIR); |
|
| 1115 | 1115 | // filter list of modules to register |
| 1116 | 1116 | $modules_to_register = apply_filters( |
| 1117 | 1117 | 'FHEE__EE_Config__register_modules__modules_to_register', |
| 1118 | 1118 | $modules_to_register |
| 1119 | 1119 | ); |
| 1120 | - if (! empty($modules_to_register)) { |
|
| 1120 | + if ( ! empty($modules_to_register)) { |
|
| 1121 | 1121 | // loop through folders |
| 1122 | 1122 | foreach ($modules_to_register as $module_path) { |
| 1123 | 1123 | /**TEMPORARILY EXCLUDE gateways from modules for time being**/ |
| 1124 | - if ($module_path !== EE_MODULES . 'zzz-copy-this-module-template' |
|
| 1125 | - && $module_path !== EE_MODULES . 'gateways' |
|
| 1124 | + if ($module_path !== EE_MODULES.'zzz-copy-this-module-template' |
|
| 1125 | + && $module_path !== EE_MODULES.'gateways' |
|
| 1126 | 1126 | ) { |
| 1127 | 1127 | // add to list of installed modules |
| 1128 | 1128 | EE_Config::register_module($module_path); |
@@ -1159,25 +1159,25 @@ discard block |
||
| 1159 | 1159 | // remove last segment |
| 1160 | 1160 | array_pop($module_path); |
| 1161 | 1161 | // glue it back together |
| 1162 | - $module_path = implode(DS, $module_path) . DS; |
|
| 1162 | + $module_path = implode(DS, $module_path).DS; |
|
| 1163 | 1163 | // take first segment from file name pieces and sanitize it |
| 1164 | 1164 | $module = preg_replace('/[^a-zA-Z0-9_\-]/', '', $module_file[0]); |
| 1165 | 1165 | // ensure class prefix is added |
| 1166 | - $module_class = strpos($module, 'EED_') !== 0 ? 'EED_' . $module : $module; |
|
| 1166 | + $module_class = strpos($module, 'EED_') !== 0 ? 'EED_'.$module : $module; |
|
| 1167 | 1167 | } else { |
| 1168 | 1168 | // we need to generate the filename based off of the folder name |
| 1169 | 1169 | // grab and sanitize module name |
| 1170 | 1170 | $module = strtolower(basename($module_path)); |
| 1171 | 1171 | $module = preg_replace('/[^a-z0-9_\-]/', '', $module); |
| 1172 | 1172 | // like trailingslashit() |
| 1173 | - $module_path = rtrim($module_path, DS) . DS; |
|
| 1173 | + $module_path = rtrim($module_path, DS).DS; |
|
| 1174 | 1174 | // create classname from module directory name |
| 1175 | 1175 | $module = str_replace(' ', '_', ucwords(str_replace('_', ' ', $module))); |
| 1176 | 1176 | // add class prefix |
| 1177 | - $module_class = 'EED_' . $module; |
|
| 1177 | + $module_class = 'EED_'.$module; |
|
| 1178 | 1178 | } |
| 1179 | 1179 | // does the module exist ? |
| 1180 | - if (! is_readable($module_path . DS . $module_class . $module_ext)) { |
|
| 1180 | + if ( ! is_readable($module_path.DS.$module_class.$module_ext)) { |
|
| 1181 | 1181 | $msg = sprintf( |
| 1182 | 1182 | __( |
| 1183 | 1183 | 'The requested %s module file could not be found or is not readable due to file permissions.', |
@@ -1185,19 +1185,19 @@ discard block |
||
| 1185 | 1185 | ), |
| 1186 | 1186 | $module |
| 1187 | 1187 | ); |
| 1188 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1188 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1189 | 1189 | return false; |
| 1190 | 1190 | } |
| 1191 | 1191 | // load the module class file |
| 1192 | - require_once($module_path . $module_class . $module_ext); |
|
| 1192 | + require_once($module_path.$module_class.$module_ext); |
|
| 1193 | 1193 | // verify that class exists |
| 1194 | - if (! class_exists($module_class)) { |
|
| 1194 | + if ( ! class_exists($module_class)) { |
|
| 1195 | 1195 | $msg = sprintf(__('The requested %s module class does not exist.', 'event_espresso'), $module_class); |
| 1196 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1196 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1197 | 1197 | return false; |
| 1198 | 1198 | } |
| 1199 | 1199 | // add to array of registered modules |
| 1200 | - EE_Registry::instance()->modules->{$module_class} = $module_path . $module_class . $module_ext; |
|
| 1200 | + EE_Registry::instance()->modules->{$module_class} = $module_path.$module_class.$module_ext; |
|
| 1201 | 1201 | do_action( |
| 1202 | 1202 | 'AHEE__EE_Config__register_module__complete', |
| 1203 | 1203 | $module_class, |
@@ -1248,26 +1248,26 @@ discard block |
||
| 1248 | 1248 | { |
| 1249 | 1249 | do_action('AHEE__EE_Config__register_route__begin', $route, $module, $method_name); |
| 1250 | 1250 | $module = str_replace('EED_', '', $module); |
| 1251 | - $module_class = 'EED_' . $module; |
|
| 1252 | - if (! isset(EE_Registry::instance()->modules->{$module_class})) { |
|
| 1251 | + $module_class = 'EED_'.$module; |
|
| 1252 | + if ( ! isset(EE_Registry::instance()->modules->{$module_class})) { |
|
| 1253 | 1253 | $msg = sprintf(__('The module %s has not been registered.', 'event_espresso'), $module); |
| 1254 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1254 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1255 | 1255 | return false; |
| 1256 | 1256 | } |
| 1257 | 1257 | if (empty($route)) { |
| 1258 | 1258 | $msg = sprintf(__('No route has been supplied.', 'event_espresso'), $route); |
| 1259 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1259 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1260 | 1260 | return false; |
| 1261 | 1261 | } |
| 1262 | - if (! method_exists('EED_' . $module, $method_name)) { |
|
| 1262 | + if ( ! method_exists('EED_'.$module, $method_name)) { |
|
| 1263 | 1263 | $msg = sprintf( |
| 1264 | 1264 | __('A valid class method for the %s route has not been supplied.', 'event_espresso'), |
| 1265 | 1265 | $route |
| 1266 | 1266 | ); |
| 1267 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1267 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1268 | 1268 | return false; |
| 1269 | 1269 | } |
| 1270 | - EE_Config::$_module_route_map[ $key ][ $route ] = array('EED_' . $module, $method_name); |
|
| 1270 | + EE_Config::$_module_route_map[$key][$route] = array('EED_'.$module, $method_name); |
|
| 1271 | 1271 | return true; |
| 1272 | 1272 | } |
| 1273 | 1273 | |
@@ -1284,8 +1284,8 @@ discard block |
||
| 1284 | 1284 | { |
| 1285 | 1285 | do_action('AHEE__EE_Config__get_route__begin', $route); |
| 1286 | 1286 | $route = (string) apply_filters('FHEE__EE_Config__get_route', $route); |
| 1287 | - if (isset(EE_Config::$_module_route_map[ $key ][ $route ])) { |
|
| 1288 | - return EE_Config::$_module_route_map[ $key ][ $route ]; |
|
| 1287 | + if (isset(EE_Config::$_module_route_map[$key][$route])) { |
|
| 1288 | + return EE_Config::$_module_route_map[$key][$route]; |
|
| 1289 | 1289 | } |
| 1290 | 1290 | return null; |
| 1291 | 1291 | } |
@@ -1317,47 +1317,47 @@ discard block |
||
| 1317 | 1317 | public static function register_forward($route = null, $status = 0, $forward = null, $key = 'ee') |
| 1318 | 1318 | { |
| 1319 | 1319 | do_action('AHEE__EE_Config__register_forward', $route, $status, $forward); |
| 1320 | - if (! isset(EE_Config::$_module_route_map[ $key ][ $route ]) || empty($route)) { |
|
| 1320 | + if ( ! isset(EE_Config::$_module_route_map[$key][$route]) || empty($route)) { |
|
| 1321 | 1321 | $msg = sprintf( |
| 1322 | 1322 | __('The module route %s for this forward has not been registered.', 'event_espresso'), |
| 1323 | 1323 | $route |
| 1324 | 1324 | ); |
| 1325 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1325 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1326 | 1326 | return false; |
| 1327 | 1327 | } |
| 1328 | 1328 | if (empty($forward)) { |
| 1329 | 1329 | $msg = sprintf(__('No forwarding route has been supplied.', 'event_espresso'), $route); |
| 1330 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1330 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1331 | 1331 | return false; |
| 1332 | 1332 | } |
| 1333 | 1333 | if (is_array($forward)) { |
| 1334 | - if (! isset($forward[1])) { |
|
| 1334 | + if ( ! isset($forward[1])) { |
|
| 1335 | 1335 | $msg = sprintf( |
| 1336 | 1336 | __('A class method for the %s forwarding route has not been supplied.', 'event_espresso'), |
| 1337 | 1337 | $route |
| 1338 | 1338 | ); |
| 1339 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1339 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1340 | 1340 | return false; |
| 1341 | 1341 | } |
| 1342 | - if (! method_exists($forward[0], $forward[1])) { |
|
| 1342 | + if ( ! method_exists($forward[0], $forward[1])) { |
|
| 1343 | 1343 | $msg = sprintf( |
| 1344 | 1344 | __('The class method %s for the %s forwarding route is in invalid.', 'event_espresso'), |
| 1345 | 1345 | $forward[1], |
| 1346 | 1346 | $route |
| 1347 | 1347 | ); |
| 1348 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1348 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1349 | 1349 | return false; |
| 1350 | 1350 | } |
| 1351 | - } elseif (! function_exists($forward)) { |
|
| 1351 | + } elseif ( ! function_exists($forward)) { |
|
| 1352 | 1352 | $msg = sprintf( |
| 1353 | 1353 | __('The function %s for the %s forwarding route is in invalid.', 'event_espresso'), |
| 1354 | 1354 | $forward, |
| 1355 | 1355 | $route |
| 1356 | 1356 | ); |
| 1357 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1357 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1358 | 1358 | return false; |
| 1359 | 1359 | } |
| 1360 | - EE_Config::$_module_forward_map[ $key ][ $route ][ absint($status) ] = $forward; |
|
| 1360 | + EE_Config::$_module_forward_map[$key][$route][absint($status)] = $forward; |
|
| 1361 | 1361 | return true; |
| 1362 | 1362 | } |
| 1363 | 1363 | |
@@ -1375,10 +1375,10 @@ discard block |
||
| 1375 | 1375 | public static function get_forward($route = null, $status = 0, $key = 'ee') |
| 1376 | 1376 | { |
| 1377 | 1377 | do_action('AHEE__EE_Config__get_forward__begin', $route, $status); |
| 1378 | - if (isset(EE_Config::$_module_forward_map[ $key ][ $route ][ $status ])) { |
|
| 1378 | + if (isset(EE_Config::$_module_forward_map[$key][$route][$status])) { |
|
| 1379 | 1379 | return apply_filters( |
| 1380 | 1380 | 'FHEE__EE_Config__get_forward', |
| 1381 | - EE_Config::$_module_forward_map[ $key ][ $route ][ $status ], |
|
| 1381 | + EE_Config::$_module_forward_map[$key][$route][$status], |
|
| 1382 | 1382 | $route, |
| 1383 | 1383 | $status |
| 1384 | 1384 | ); |
@@ -1402,15 +1402,15 @@ discard block |
||
| 1402 | 1402 | public static function register_view($route = null, $status = 0, $view = null, $key = 'ee') |
| 1403 | 1403 | { |
| 1404 | 1404 | do_action('AHEE__EE_Config__register_view__begin', $route, $status, $view); |
| 1405 | - if (! isset(EE_Config::$_module_route_map[ $key ][ $route ]) || empty($route)) { |
|
| 1405 | + if ( ! isset(EE_Config::$_module_route_map[$key][$route]) || empty($route)) { |
|
| 1406 | 1406 | $msg = sprintf( |
| 1407 | 1407 | __('The module route %s for this view has not been registered.', 'event_espresso'), |
| 1408 | 1408 | $route |
| 1409 | 1409 | ); |
| 1410 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1410 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1411 | 1411 | return false; |
| 1412 | 1412 | } |
| 1413 | - if (! is_readable($view)) { |
|
| 1413 | + if ( ! is_readable($view)) { |
|
| 1414 | 1414 | $msg = sprintf( |
| 1415 | 1415 | __( |
| 1416 | 1416 | 'The %s view file could not be found or is not readable due to file permissions.', |
@@ -1418,10 +1418,10 @@ discard block |
||
| 1418 | 1418 | ), |
| 1419 | 1419 | $view |
| 1420 | 1420 | ); |
| 1421 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1421 | + EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1422 | 1422 | return false; |
| 1423 | 1423 | } |
| 1424 | - EE_Config::$_module_view_map[ $key ][ $route ][ absint($status) ] = $view; |
|
| 1424 | + EE_Config::$_module_view_map[$key][$route][absint($status)] = $view; |
|
| 1425 | 1425 | return true; |
| 1426 | 1426 | } |
| 1427 | 1427 | |
@@ -1439,10 +1439,10 @@ discard block |
||
| 1439 | 1439 | public static function get_view($route = null, $status = 0, $key = 'ee') |
| 1440 | 1440 | { |
| 1441 | 1441 | do_action('AHEE__EE_Config__get_view__begin', $route, $status); |
| 1442 | - if (isset(EE_Config::$_module_view_map[ $key ][ $route ][ $status ])) { |
|
| 1442 | + if (isset(EE_Config::$_module_view_map[$key][$route][$status])) { |
|
| 1443 | 1443 | return apply_filters( |
| 1444 | 1444 | 'FHEE__EE_Config__get_view', |
| 1445 | - EE_Config::$_module_view_map[ $key ][ $route ][ $status ], |
|
| 1445 | + EE_Config::$_module_view_map[$key][$route][$status], |
|
| 1446 | 1446 | $route, |
| 1447 | 1447 | $status |
| 1448 | 1448 | ); |
@@ -1469,7 +1469,7 @@ discard block |
||
| 1469 | 1469 | public static function getLegacyShortcodesManager() |
| 1470 | 1470 | { |
| 1471 | 1471 | |
| 1472 | - if (! EE_Config::instance()->legacy_shortcodes_manager instanceof LegacyShortcodesManager) { |
|
| 1472 | + if ( ! EE_Config::instance()->legacy_shortcodes_manager instanceof LegacyShortcodesManager) { |
|
| 1473 | 1473 | EE_Config::instance()->legacy_shortcodes_manager = new LegacyShortcodesManager( |
| 1474 | 1474 | EE_Registry::instance() |
| 1475 | 1475 | ); |
@@ -1516,7 +1516,7 @@ discard block |
||
| 1516 | 1516 | */ |
| 1517 | 1517 | public function get_pretty($property) |
| 1518 | 1518 | { |
| 1519 | - if (! property_exists($this, $property)) { |
|
| 1519 | + if ( ! property_exists($this, $property)) { |
|
| 1520 | 1520 | throw new EE_Error( |
| 1521 | 1521 | sprintf( |
| 1522 | 1522 | __( |
@@ -1742,11 +1742,11 @@ discard block |
||
| 1742 | 1742 | */ |
| 1743 | 1743 | public function reg_page_url() |
| 1744 | 1744 | { |
| 1745 | - if (! $this->reg_page_url) { |
|
| 1745 | + if ( ! $this->reg_page_url) { |
|
| 1746 | 1746 | $this->reg_page_url = add_query_arg( |
| 1747 | 1747 | array('uts' => time()), |
| 1748 | 1748 | get_permalink($this->reg_page_id) |
| 1749 | - ) . '#checkout'; |
|
| 1749 | + ).'#checkout'; |
|
| 1750 | 1750 | } |
| 1751 | 1751 | return $this->reg_page_url; |
| 1752 | 1752 | } |
@@ -1762,7 +1762,7 @@ discard block |
||
| 1762 | 1762 | */ |
| 1763 | 1763 | public function txn_page_url($query_args = array()) |
| 1764 | 1764 | { |
| 1765 | - if (! $this->txn_page_url) { |
|
| 1765 | + if ( ! $this->txn_page_url) { |
|
| 1766 | 1766 | $this->txn_page_url = get_permalink($this->txn_page_id); |
| 1767 | 1767 | } |
| 1768 | 1768 | if ($query_args) { |
@@ -1783,7 +1783,7 @@ discard block |
||
| 1783 | 1783 | */ |
| 1784 | 1784 | public function thank_you_page_url($query_args = array()) |
| 1785 | 1785 | { |
| 1786 | - if (! $this->thank_you_page_url) { |
|
| 1786 | + if ( ! $this->thank_you_page_url) { |
|
| 1787 | 1787 | $this->thank_you_page_url = get_permalink($this->thank_you_page_id); |
| 1788 | 1788 | } |
| 1789 | 1789 | if ($query_args) { |
@@ -1802,7 +1802,7 @@ discard block |
||
| 1802 | 1802 | */ |
| 1803 | 1803 | public function cancel_page_url() |
| 1804 | 1804 | { |
| 1805 | - if (! $this->cancel_page_url) { |
|
| 1805 | + if ( ! $this->cancel_page_url) { |
|
| 1806 | 1806 | $this->cancel_page_url = get_permalink($this->cancel_page_id); |
| 1807 | 1807 | } |
| 1808 | 1808 | return $this->cancel_page_url; |
@@ -1837,7 +1837,7 @@ discard block |
||
| 1837 | 1837 | return get_option('ee_ueip_optin', false); |
| 1838 | 1838 | } |
| 1839 | 1839 | // is this already cached for this request? If so use it. |
| 1840 | - if (! empty(EE_Core_Config::$ee_ueip_option)) { |
|
| 1840 | + if ( ! empty(EE_Core_Config::$ee_ueip_option)) { |
|
| 1841 | 1841 | return EE_Core_Config::$ee_ueip_option; |
| 1842 | 1842 | } |
| 1843 | 1843 | global $wpdb; |
@@ -1845,13 +1845,13 @@ discard block |
||
| 1845 | 1845 | $current_main_site_id = ! empty($current_network_main_site) ? $current_network_main_site->blog_id : 1; |
| 1846 | 1846 | $option = 'ee_ueip_optin'; |
| 1847 | 1847 | // set correct table for query |
| 1848 | - $table_name = $wpdb->get_blog_prefix($current_main_site_id) . 'options'; |
|
| 1848 | + $table_name = $wpdb->get_blog_prefix($current_main_site_id).'options'; |
|
| 1849 | 1849 | // rather than getting blog option for the $current_main_site_id, we do a direct $wpdb query because |
| 1850 | 1850 | // get_blog_option() does a switch_to_blog an that could cause infinite recursion because EE_Core_Config might be |
| 1851 | 1851 | // re-constructed on the blog switch. Note, we are still executing any core wp filters on this option retrieval. |
| 1852 | 1852 | // this bit of code is basically a direct copy of get_option without any caching because we are NOT switched to the blog |
| 1853 | 1853 | // for the purpose of caching. |
| 1854 | - $pre = apply_filters('pre_option_' . $option, false, $option); |
|
| 1854 | + $pre = apply_filters('pre_option_'.$option, false, $option); |
|
| 1855 | 1855 | if (false !== $pre) { |
| 1856 | 1856 | EE_Core_Config::$ee_ueip_option = $pre; |
| 1857 | 1857 | return EE_Core_Config::$ee_ueip_option; |
@@ -1865,9 +1865,9 @@ discard block |
||
| 1865 | 1865 | if (is_object($row)) { |
| 1866 | 1866 | $value = $row->option_value; |
| 1867 | 1867 | } else { // option does not exist so use default. |
| 1868 | - return apply_filters('default_option_' . $option, false, $option); |
|
| 1868 | + return apply_filters('default_option_'.$option, false, $option); |
|
| 1869 | 1869 | } |
| 1870 | - EE_Core_Config::$ee_ueip_option = apply_filters('option_' . $option, maybe_unserialize($value), $option); |
|
| 1870 | + EE_Core_Config::$ee_ueip_option = apply_filters('option_'.$option, maybe_unserialize($value), $option); |
|
| 1871 | 1871 | return EE_Core_Config::$ee_ueip_option; |
| 1872 | 1872 | } |
| 1873 | 1873 | |
@@ -2136,37 +2136,37 @@ discard block |
||
| 2136 | 2136 | // but override if requested |
| 2137 | 2137 | $CNT_ISO = ! empty($CNT_ISO) ? $CNT_ISO : $ORG_CNT; |
| 2138 | 2138 | // so if that all went well, and we are not in M-Mode (cuz you can't query the db in M-Mode) and double-check the countries table exists |
| 2139 | - if (! empty($CNT_ISO) |
|
| 2139 | + if ( ! empty($CNT_ISO) |
|
| 2140 | 2140 | && EE_Maintenance_Mode::instance()->models_can_query() |
| 2141 | 2141 | && $table_analysis->tableExists(EE_Registry::instance()->load_model('Country')->table()) |
| 2142 | 2142 | ) { |
| 2143 | 2143 | // retrieve the country settings from the db, just in case they have been customized |
| 2144 | 2144 | $country = EE_Registry::instance()->load_model('Country')->get_one_by_ID($CNT_ISO); |
| 2145 | 2145 | if ($country instanceof EE_Country) { |
| 2146 | - $this->code = $country->currency_code(); // currency code: USD, CAD, EUR |
|
| 2147 | - $this->name = $country->currency_name_single(); // Dollar |
|
| 2148 | - $this->plural = $country->currency_name_plural(); // Dollars |
|
| 2149 | - $this->sign = $country->currency_sign(); // currency sign: $ |
|
| 2146 | + $this->code = $country->currency_code(); // currency code: USD, CAD, EUR |
|
| 2147 | + $this->name = $country->currency_name_single(); // Dollar |
|
| 2148 | + $this->plural = $country->currency_name_plural(); // Dollars |
|
| 2149 | + $this->sign = $country->currency_sign(); // currency sign: $ |
|
| 2150 | 2150 | $this->sign_b4 = $country->currency_sign_before( |
| 2151 | - ); // currency sign before or after: $TRUE or FALSE$ |
|
| 2152 | - $this->dec_plc = $country->currency_decimal_places(); // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2151 | + ); // currency sign before or after: $TRUE or FALSE$ |
|
| 2152 | + $this->dec_plc = $country->currency_decimal_places(); // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2153 | 2153 | $this->dec_mrk = $country->currency_decimal_mark( |
| 2154 | - ); // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2154 | + ); // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2155 | 2155 | $this->thsnds = $country->currency_thousands_separator( |
| 2156 | - ); // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2156 | + ); // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2157 | 2157 | } |
| 2158 | 2158 | } |
| 2159 | 2159 | // fallback to hardcoded defaults, in case the above failed |
| 2160 | 2160 | if (empty($this->code)) { |
| 2161 | 2161 | // set default currency settings |
| 2162 | - $this->code = 'USD'; // currency code: USD, CAD, EUR |
|
| 2163 | - $this->name = __('Dollar', 'event_espresso'); // Dollar |
|
| 2164 | - $this->plural = __('Dollars', 'event_espresso'); // Dollars |
|
| 2165 | - $this->sign = '$'; // currency sign: $ |
|
| 2166 | - $this->sign_b4 = true; // currency sign before or after: $TRUE or FALSE$ |
|
| 2167 | - $this->dec_plc = 2; // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2168 | - $this->dec_mrk = '.'; // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2169 | - $this->thsnds = ','; // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2162 | + $this->code = 'USD'; // currency code: USD, CAD, EUR |
|
| 2163 | + $this->name = __('Dollar', 'event_espresso'); // Dollar |
|
| 2164 | + $this->plural = __('Dollars', 'event_espresso'); // Dollars |
|
| 2165 | + $this->sign = '$'; // currency sign: $ |
|
| 2166 | + $this->sign_b4 = true; // currency sign before or after: $TRUE or FALSE$ |
|
| 2167 | + $this->dec_plc = 2; // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2168 | + $this->dec_mrk = '.'; // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2169 | + $this->thsnds = ','; // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2170 | 2170 | } |
| 2171 | 2171 | } |
| 2172 | 2172 | } |
@@ -2418,8 +2418,8 @@ discard block |
||
| 2418 | 2418 | $closing_a_tag = ''; |
| 2419 | 2419 | if (function_exists('get_privacy_policy_url')) { |
| 2420 | 2420 | $privacy_page_url = get_privacy_policy_url(); |
| 2421 | - if (! empty($privacy_page_url)) { |
|
| 2422 | - $opening_a_tag = '<a href="' . $privacy_page_url . '" target="_blank">'; |
|
| 2421 | + if ( ! empty($privacy_page_url)) { |
|
| 2422 | + $opening_a_tag = '<a href="'.$privacy_page_url.'" target="_blank">'; |
|
| 2423 | 2423 | $closing_a_tag = '</a>'; |
| 2424 | 2424 | } |
| 2425 | 2425 | } |
@@ -2612,7 +2612,7 @@ discard block |
||
| 2612 | 2612 | public function log_file_name($reset = false) |
| 2613 | 2613 | { |
| 2614 | 2614 | if (empty($this->log_file_name) || $reset) { |
| 2615 | - $this->log_file_name = sanitize_key('espresso_log_' . md5(uniqid('', true))) . '.txt'; |
|
| 2615 | + $this->log_file_name = sanitize_key('espresso_log_'.md5(uniqid('', true))).'.txt'; |
|
| 2616 | 2616 | EE_Config::instance()->update_espresso_config(false, false); |
| 2617 | 2617 | } |
| 2618 | 2618 | return $this->log_file_name; |
@@ -2626,7 +2626,7 @@ discard block |
||
| 2626 | 2626 | public function debug_file_name($reset = false) |
| 2627 | 2627 | { |
| 2628 | 2628 | if (empty($this->debug_file_name) || $reset) { |
| 2629 | - $this->debug_file_name = sanitize_key('espresso_debug_' . md5(uniqid('', true))) . '.txt'; |
|
| 2629 | + $this->debug_file_name = sanitize_key('espresso_debug_'.md5(uniqid('', true))).'.txt'; |
|
| 2630 | 2630 | EE_Config::instance()->update_espresso_config(false, false); |
| 2631 | 2631 | } |
| 2632 | 2632 | return $this->debug_file_name; |
@@ -2830,21 +2830,21 @@ discard block |
||
| 2830 | 2830 | $this->use_google_maps = true; |
| 2831 | 2831 | $this->google_map_api_key = ''; |
| 2832 | 2832 | // for event details pages (reg page) |
| 2833 | - $this->event_details_map_width = 585; // ee_map_width_single |
|
| 2834 | - $this->event_details_map_height = 362; // ee_map_height_single |
|
| 2835 | - $this->event_details_map_zoom = 14; // ee_map_zoom_single |
|
| 2836 | - $this->event_details_display_nav = true; // ee_map_nav_display_single |
|
| 2837 | - $this->event_details_nav_size = false; // ee_map_nav_size_single |
|
| 2838 | - $this->event_details_control_type = 'default'; // ee_map_type_control_single |
|
| 2839 | - $this->event_details_map_align = 'center'; // ee_map_align_single |
|
| 2833 | + $this->event_details_map_width = 585; // ee_map_width_single |
|
| 2834 | + $this->event_details_map_height = 362; // ee_map_height_single |
|
| 2835 | + $this->event_details_map_zoom = 14; // ee_map_zoom_single |
|
| 2836 | + $this->event_details_display_nav = true; // ee_map_nav_display_single |
|
| 2837 | + $this->event_details_nav_size = false; // ee_map_nav_size_single |
|
| 2838 | + $this->event_details_control_type = 'default'; // ee_map_type_control_single |
|
| 2839 | + $this->event_details_map_align = 'center'; // ee_map_align_single |
|
| 2840 | 2840 | // for event list pages |
| 2841 | - $this->event_list_map_width = 300; // ee_map_width |
|
| 2842 | - $this->event_list_map_height = 185; // ee_map_height |
|
| 2843 | - $this->event_list_map_zoom = 12; // ee_map_zoom |
|
| 2844 | - $this->event_list_display_nav = false; // ee_map_nav_display |
|
| 2845 | - $this->event_list_nav_size = true; // ee_map_nav_size |
|
| 2846 | - $this->event_list_control_type = 'dropdown'; // ee_map_type_control |
|
| 2847 | - $this->event_list_map_align = 'center'; // ee_map_align |
|
| 2841 | + $this->event_list_map_width = 300; // ee_map_width |
|
| 2842 | + $this->event_list_map_height = 185; // ee_map_height |
|
| 2843 | + $this->event_list_map_zoom = 12; // ee_map_zoom |
|
| 2844 | + $this->event_list_display_nav = false; // ee_map_nav_display |
|
| 2845 | + $this->event_list_nav_size = true; // ee_map_nav_size |
|
| 2846 | + $this->event_list_control_type = 'dropdown'; // ee_map_type_control |
|
| 2847 | + $this->event_list_map_align = 'center'; // ee_map_align |
|
| 2848 | 2848 | } |
| 2849 | 2849 | } |
| 2850 | 2850 | |
@@ -3136,7 +3136,7 @@ discard block |
||
| 3136 | 3136 | */ |
| 3137 | 3137 | public function max_input_vars_limit_check($input_count = 0) |
| 3138 | 3138 | { |
| 3139 | - if (! empty($this->php->max_input_vars) |
|
| 3139 | + if ( ! empty($this->php->max_input_vars) |
|
| 3140 | 3140 | && ($input_count >= $this->php->max_input_vars) |
| 3141 | 3141 | && (PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION >= 3 && PHP_RELEASE_VERSION >= 9) |
| 3142 | 3142 | ) { |
@@ -14,2520 +14,2520 @@ discard block |
||
| 14 | 14 | final class EE_Config implements ResettableInterface |
| 15 | 15 | { |
| 16 | 16 | |
| 17 | - const OPTION_NAME = 'ee_config'; |
|
| 18 | - |
|
| 19 | - const LOG_NAME = 'ee_config_log'; |
|
| 20 | - |
|
| 21 | - const LOG_LENGTH = 100; |
|
| 22 | - |
|
| 23 | - const ADDON_OPTION_NAMES = 'ee_config_option_names'; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * instance of the EE_Config object |
|
| 27 | - * |
|
| 28 | - * @var EE_Config $_instance |
|
| 29 | - * @access private |
|
| 30 | - */ |
|
| 31 | - private static $_instance; |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * @var boolean $_logging_enabled |
|
| 35 | - */ |
|
| 36 | - private static $_logging_enabled = false; |
|
| 37 | - |
|
| 38 | - /** |
|
| 39 | - * @var LegacyShortcodesManager $legacy_shortcodes_manager |
|
| 40 | - */ |
|
| 41 | - private $legacy_shortcodes_manager; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * An StdClass whose property names are addon slugs, |
|
| 45 | - * and values are their config classes |
|
| 46 | - * |
|
| 47 | - * @var StdClass |
|
| 48 | - */ |
|
| 49 | - public $addons; |
|
| 50 | - |
|
| 51 | - /** |
|
| 52 | - * @var EE_Admin_Config |
|
| 53 | - */ |
|
| 54 | - public $admin; |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * @var EE_Core_Config |
|
| 58 | - */ |
|
| 59 | - public $core; |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * @var EE_Currency_Config |
|
| 63 | - */ |
|
| 64 | - public $currency; |
|
| 65 | - |
|
| 66 | - /** |
|
| 67 | - * @var EE_Organization_Config |
|
| 68 | - */ |
|
| 69 | - public $organization; |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * @var EE_Registration_Config |
|
| 73 | - */ |
|
| 74 | - public $registration; |
|
| 75 | - |
|
| 76 | - /** |
|
| 77 | - * @var EE_Template_Config |
|
| 78 | - */ |
|
| 79 | - public $template_settings; |
|
| 80 | - |
|
| 81 | - /** |
|
| 82 | - * Holds EE environment values. |
|
| 83 | - * |
|
| 84 | - * @var EE_Environment_Config |
|
| 85 | - */ |
|
| 86 | - public $environment; |
|
| 87 | - |
|
| 88 | - /** |
|
| 89 | - * settings pertaining to Google maps |
|
| 90 | - * |
|
| 91 | - * @var EE_Map_Config |
|
| 92 | - */ |
|
| 93 | - public $map_settings; |
|
| 94 | - |
|
| 95 | - /** |
|
| 96 | - * settings pertaining to Taxes |
|
| 97 | - * |
|
| 98 | - * @var EE_Tax_Config |
|
| 99 | - */ |
|
| 100 | - public $tax_settings; |
|
| 101 | - |
|
| 102 | - /** |
|
| 103 | - * Settings pertaining to global messages settings. |
|
| 104 | - * |
|
| 105 | - * @var EE_Messages_Config |
|
| 106 | - */ |
|
| 107 | - public $messages; |
|
| 108 | - |
|
| 109 | - /** |
|
| 110 | - * @deprecated |
|
| 111 | - * @var EE_Gateway_Config |
|
| 112 | - */ |
|
| 113 | - public $gateway; |
|
| 114 | - |
|
| 115 | - /** |
|
| 116 | - * @var array $_addon_option_names |
|
| 117 | - * @access private |
|
| 118 | - */ |
|
| 119 | - private $_addon_option_names = array(); |
|
| 120 | - |
|
| 121 | - /** |
|
| 122 | - * @var array $_module_route_map |
|
| 123 | - * @access private |
|
| 124 | - */ |
|
| 125 | - private static $_module_route_map = array(); |
|
| 126 | - |
|
| 127 | - /** |
|
| 128 | - * @var array $_module_forward_map |
|
| 129 | - * @access private |
|
| 130 | - */ |
|
| 131 | - private static $_module_forward_map = array(); |
|
| 132 | - |
|
| 133 | - /** |
|
| 134 | - * @var array $_module_view_map |
|
| 135 | - * @access private |
|
| 136 | - */ |
|
| 137 | - private static $_module_view_map = array(); |
|
| 138 | - |
|
| 139 | - |
|
| 140 | - /** |
|
| 141 | - * @singleton method used to instantiate class object |
|
| 142 | - * @access public |
|
| 143 | - * @return EE_Config instance |
|
| 144 | - */ |
|
| 145 | - public static function instance() |
|
| 146 | - { |
|
| 147 | - // check if class object is instantiated, and instantiated properly |
|
| 148 | - if (! self::$_instance instanceof EE_Config) { |
|
| 149 | - self::$_instance = new self(); |
|
| 150 | - } |
|
| 151 | - return self::$_instance; |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - |
|
| 155 | - /** |
|
| 156 | - * Resets the config |
|
| 157 | - * |
|
| 158 | - * @param bool $hard_reset if TRUE, sets EE_CONFig back to its original settings in the database. If FALSE |
|
| 159 | - * (default) leaves the database alone, and merely resets the EE_Config object to |
|
| 160 | - * reflect its state in the database |
|
| 161 | - * @param boolean $reinstantiate if TRUE (default) call instance() and return it. Otherwise, just leave |
|
| 162 | - * $_instance as NULL. Useful in case you want to forget about the old instance on |
|
| 163 | - * EE_Config, but might not be ready to instantiate EE_Config currently (eg if the |
|
| 164 | - * site was put into maintenance mode) |
|
| 165 | - * @return EE_Config |
|
| 166 | - */ |
|
| 167 | - public static function reset($hard_reset = false, $reinstantiate = true) |
|
| 168 | - { |
|
| 169 | - if (self::$_instance instanceof EE_Config) { |
|
| 170 | - if ($hard_reset) { |
|
| 171 | - self::$_instance->legacy_shortcodes_manager = null; |
|
| 172 | - self::$_instance->_addon_option_names = array(); |
|
| 173 | - self::$_instance->_initialize_config(); |
|
| 174 | - self::$_instance->update_espresso_config(); |
|
| 175 | - } |
|
| 176 | - self::$_instance->update_addon_option_names(); |
|
| 177 | - } |
|
| 178 | - self::$_instance = null; |
|
| 179 | - // we don't need to reset the static properties imo because those should |
|
| 180 | - // only change when a module is added or removed. Currently we don't |
|
| 181 | - // support removing a module during a request when it previously existed |
|
| 182 | - if ($reinstantiate) { |
|
| 183 | - return self::instance(); |
|
| 184 | - } else { |
|
| 185 | - return null; |
|
| 186 | - } |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - |
|
| 190 | - /** |
|
| 191 | - * class constructor |
|
| 192 | - * |
|
| 193 | - * @access private |
|
| 194 | - */ |
|
| 195 | - private function __construct() |
|
| 196 | - { |
|
| 197 | - do_action('AHEE__EE_Config__construct__begin', $this); |
|
| 198 | - EE_Config::$_logging_enabled = apply_filters('FHEE__EE_Config___construct__logging_enabled', false); |
|
| 199 | - // setup empty config classes |
|
| 200 | - $this->_initialize_config(); |
|
| 201 | - // load existing EE site settings |
|
| 202 | - $this->_load_core_config(); |
|
| 203 | - // confirm everything loaded correctly and set filtered defaults if not |
|
| 204 | - $this->_verify_config(); |
|
| 205 | - // register shortcodes and modules |
|
| 206 | - add_action( |
|
| 207 | - 'AHEE__EE_System__register_shortcodes_modules_and_widgets', |
|
| 208 | - array($this, 'register_shortcodes_and_modules'), |
|
| 209 | - 999 |
|
| 210 | - ); |
|
| 211 | - // initialize shortcodes and modules |
|
| 212 | - add_action('AHEE__EE_System__core_loaded_and_ready', array($this, 'initialize_shortcodes_and_modules')); |
|
| 213 | - // register widgets |
|
| 214 | - add_action('widgets_init', array($this, 'widgets_init'), 10); |
|
| 215 | - // shutdown |
|
| 216 | - add_action('shutdown', array($this, 'shutdown'), 10); |
|
| 217 | - // construct__end hook |
|
| 218 | - do_action('AHEE__EE_Config__construct__end', $this); |
|
| 219 | - // hardcoded hack |
|
| 220 | - $this->template_settings->current_espresso_theme = 'Espresso_Arabica_2014'; |
|
| 221 | - } |
|
| 222 | - |
|
| 223 | - |
|
| 224 | - /** |
|
| 225 | - * @return boolean |
|
| 226 | - */ |
|
| 227 | - public static function logging_enabled() |
|
| 228 | - { |
|
| 229 | - return self::$_logging_enabled; |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - |
|
| 233 | - /** |
|
| 234 | - * use to get the current theme if needed from static context |
|
| 235 | - * |
|
| 236 | - * @return string current theme set. |
|
| 237 | - */ |
|
| 238 | - public static function get_current_theme() |
|
| 239 | - { |
|
| 240 | - return isset(self::$_instance->template_settings->current_espresso_theme) |
|
| 241 | - ? self::$_instance->template_settings->current_espresso_theme : 'Espresso_Arabica_2014'; |
|
| 242 | - } |
|
| 243 | - |
|
| 244 | - |
|
| 245 | - /** |
|
| 246 | - * _initialize_config |
|
| 247 | - * |
|
| 248 | - * @access private |
|
| 249 | - * @return void |
|
| 250 | - */ |
|
| 251 | - private function _initialize_config() |
|
| 252 | - { |
|
| 253 | - EE_Config::trim_log(); |
|
| 254 | - // set defaults |
|
| 255 | - $this->_addon_option_names = get_option(EE_Config::ADDON_OPTION_NAMES, array()); |
|
| 256 | - $this->addons = new stdClass(); |
|
| 257 | - // set _module_route_map |
|
| 258 | - EE_Config::$_module_route_map = array(); |
|
| 259 | - // set _module_forward_map |
|
| 260 | - EE_Config::$_module_forward_map = array(); |
|
| 261 | - // set _module_view_map |
|
| 262 | - EE_Config::$_module_view_map = array(); |
|
| 263 | - } |
|
| 264 | - |
|
| 265 | - |
|
| 266 | - /** |
|
| 267 | - * load core plugin configuration |
|
| 268 | - * |
|
| 269 | - * @access private |
|
| 270 | - * @return void |
|
| 271 | - */ |
|
| 272 | - private function _load_core_config() |
|
| 273 | - { |
|
| 274 | - // load_core_config__start hook |
|
| 275 | - do_action('AHEE__EE_Config___load_core_config__start', $this); |
|
| 276 | - $espresso_config = $this->get_espresso_config(); |
|
| 277 | - foreach ($espresso_config as $config => $settings) { |
|
| 278 | - // load_core_config__start hook |
|
| 279 | - $settings = apply_filters( |
|
| 280 | - 'FHEE__EE_Config___load_core_config__config_settings', |
|
| 281 | - $settings, |
|
| 282 | - $config, |
|
| 283 | - $this |
|
| 284 | - ); |
|
| 285 | - if (is_object($settings) && property_exists($this, $config)) { |
|
| 286 | - $this->{$config} = apply_filters('FHEE__EE_Config___load_core_config__' . $config, $settings); |
|
| 287 | - // call configs populate method to ensure any defaults are set for empty values. |
|
| 288 | - if (method_exists($settings, 'populate')) { |
|
| 289 | - $this->{$config}->populate(); |
|
| 290 | - } |
|
| 291 | - if (method_exists($settings, 'do_hooks')) { |
|
| 292 | - $this->{$config}->do_hooks(); |
|
| 293 | - } |
|
| 294 | - } |
|
| 295 | - } |
|
| 296 | - if (apply_filters('FHEE__EE_Config___load_core_config__update_espresso_config', false)) { |
|
| 297 | - $this->update_espresso_config(); |
|
| 298 | - } |
|
| 299 | - // load_core_config__end hook |
|
| 300 | - do_action('AHEE__EE_Config___load_core_config__end', $this); |
|
| 301 | - } |
|
| 302 | - |
|
| 303 | - |
|
| 304 | - /** |
|
| 305 | - * _verify_config |
|
| 306 | - * |
|
| 307 | - * @access protected |
|
| 308 | - * @return void |
|
| 309 | - */ |
|
| 310 | - protected function _verify_config() |
|
| 311 | - { |
|
| 312 | - $this->core = $this->core instanceof EE_Core_Config |
|
| 313 | - ? $this->core |
|
| 314 | - : new EE_Core_Config(); |
|
| 315 | - $this->core = apply_filters('FHEE__EE_Config___initialize_config__core', $this->core); |
|
| 316 | - $this->organization = $this->organization instanceof EE_Organization_Config |
|
| 317 | - ? $this->organization |
|
| 318 | - : new EE_Organization_Config(); |
|
| 319 | - $this->organization = apply_filters( |
|
| 320 | - 'FHEE__EE_Config___initialize_config__organization', |
|
| 321 | - $this->organization |
|
| 322 | - ); |
|
| 323 | - $this->currency = $this->currency instanceof EE_Currency_Config |
|
| 324 | - ? $this->currency |
|
| 325 | - : new EE_Currency_Config(); |
|
| 326 | - $this->currency = apply_filters('FHEE__EE_Config___initialize_config__currency', $this->currency); |
|
| 327 | - $this->registration = $this->registration instanceof EE_Registration_Config |
|
| 328 | - ? $this->registration |
|
| 329 | - : new EE_Registration_Config(); |
|
| 330 | - $this->registration = apply_filters( |
|
| 331 | - 'FHEE__EE_Config___initialize_config__registration', |
|
| 332 | - $this->registration |
|
| 333 | - ); |
|
| 334 | - $this->admin = $this->admin instanceof EE_Admin_Config |
|
| 335 | - ? $this->admin |
|
| 336 | - : new EE_Admin_Config(); |
|
| 337 | - $this->admin = apply_filters('FHEE__EE_Config___initialize_config__admin', $this->admin); |
|
| 338 | - $this->template_settings = $this->template_settings instanceof EE_Template_Config |
|
| 339 | - ? $this->template_settings |
|
| 340 | - : new EE_Template_Config(); |
|
| 341 | - $this->template_settings = apply_filters( |
|
| 342 | - 'FHEE__EE_Config___initialize_config__template_settings', |
|
| 343 | - $this->template_settings |
|
| 344 | - ); |
|
| 345 | - $this->map_settings = $this->map_settings instanceof EE_Map_Config |
|
| 346 | - ? $this->map_settings |
|
| 347 | - : new EE_Map_Config(); |
|
| 348 | - $this->map_settings = apply_filters( |
|
| 349 | - 'FHEE__EE_Config___initialize_config__map_settings', |
|
| 350 | - $this->map_settings |
|
| 351 | - ); |
|
| 352 | - $this->environment = $this->environment instanceof EE_Environment_Config |
|
| 353 | - ? $this->environment |
|
| 354 | - : new EE_Environment_Config(); |
|
| 355 | - $this->environment = apply_filters( |
|
| 356 | - 'FHEE__EE_Config___initialize_config__environment', |
|
| 357 | - $this->environment |
|
| 358 | - ); |
|
| 359 | - $this->tax_settings = $this->tax_settings instanceof EE_Tax_Config |
|
| 360 | - ? $this->tax_settings |
|
| 361 | - : new EE_Tax_Config(); |
|
| 362 | - $this->tax_settings = apply_filters( |
|
| 363 | - 'FHEE__EE_Config___initialize_config__tax_settings', |
|
| 364 | - $this->tax_settings |
|
| 365 | - ); |
|
| 366 | - $this->messages = apply_filters('FHEE__EE_Config__initialize_config__messages', $this->messages); |
|
| 367 | - $this->messages = $this->messages instanceof EE_Messages_Config |
|
| 368 | - ? $this->messages |
|
| 369 | - : new EE_Messages_Config(); |
|
| 370 | - $this->gateway = $this->gateway instanceof EE_Gateway_Config |
|
| 371 | - ? $this->gateway |
|
| 372 | - : new EE_Gateway_Config(); |
|
| 373 | - $this->gateway = apply_filters('FHEE__EE_Config___initialize_config__gateway', $this->gateway); |
|
| 374 | - $this->legacy_shortcodes_manager = null; |
|
| 375 | - } |
|
| 376 | - |
|
| 377 | - |
|
| 378 | - /** |
|
| 379 | - * get_espresso_config |
|
| 380 | - * |
|
| 381 | - * @access public |
|
| 382 | - * @return array of espresso config stuff |
|
| 383 | - */ |
|
| 384 | - public function get_espresso_config() |
|
| 385 | - { |
|
| 386 | - // grab espresso configuration |
|
| 387 | - return apply_filters( |
|
| 388 | - 'FHEE__EE_Config__get_espresso_config__CFG', |
|
| 389 | - get_option(EE_Config::OPTION_NAME, array()) |
|
| 390 | - ); |
|
| 391 | - } |
|
| 392 | - |
|
| 393 | - |
|
| 394 | - /** |
|
| 395 | - * double_check_config_comparison |
|
| 396 | - * |
|
| 397 | - * @access public |
|
| 398 | - * @param string $option |
|
| 399 | - * @param $old_value |
|
| 400 | - * @param $value |
|
| 401 | - */ |
|
| 402 | - public function double_check_config_comparison($option = '', $old_value, $value) |
|
| 403 | - { |
|
| 404 | - // make sure we're checking the ee config |
|
| 405 | - if ($option === EE_Config::OPTION_NAME) { |
|
| 406 | - // run a loose comparison of the old value against the new value for type and properties, |
|
| 407 | - // but NOT exact instance like WP update_option does (ie: NOT type safe comparison) |
|
| 408 | - if ($value != $old_value) { |
|
| 409 | - // if they are NOT the same, then remove the hook, |
|
| 410 | - // which means the subsequent update results will be based solely on the update query results |
|
| 411 | - // the reason we do this is because, as stated above, |
|
| 412 | - // WP update_option performs an exact instance comparison (===) on any update values passed to it |
|
| 413 | - // this happens PRIOR to serialization and any subsequent update. |
|
| 414 | - // If values are found to match their previous old value, |
|
| 415 | - // then WP bails before performing any update. |
|
| 416 | - // Since we are passing the EE_Config object, it is comparing the EXACT instance of the saved version |
|
| 417 | - // it just pulled from the db, with the one being passed to it (which will not match). |
|
| 418 | - // HOWEVER, once the object is serialized and passed off to MySQL to update, |
|
| 419 | - // MySQL MAY ALSO NOT perform the update because |
|
| 420 | - // the string it sees in the db looks the same as the new one it has been passed!!! |
|
| 421 | - // This results in the query returning an "affected rows" value of ZERO, |
|
| 422 | - // which gets returned immediately by WP update_option and looks like an error. |
|
| 423 | - remove_action('update_option', array($this, 'check_config_updated')); |
|
| 424 | - } |
|
| 425 | - } |
|
| 426 | - } |
|
| 427 | - |
|
| 428 | - |
|
| 429 | - /** |
|
| 430 | - * update_espresso_config |
|
| 431 | - * |
|
| 432 | - * @access public |
|
| 433 | - */ |
|
| 434 | - protected function _reset_espresso_addon_config() |
|
| 435 | - { |
|
| 436 | - $this->_addon_option_names = array(); |
|
| 437 | - foreach ($this->addons as $addon_name => $addon_config_obj) { |
|
| 438 | - $addon_config_obj = maybe_unserialize($addon_config_obj); |
|
| 439 | - if ($addon_config_obj instanceof EE_Config_Base) { |
|
| 440 | - $this->update_config('addons', $addon_name, $addon_config_obj, false); |
|
| 441 | - } |
|
| 442 | - $this->addons->{$addon_name} = null; |
|
| 443 | - } |
|
| 444 | - } |
|
| 445 | - |
|
| 446 | - |
|
| 447 | - /** |
|
| 448 | - * update_espresso_config |
|
| 449 | - * |
|
| 450 | - * @access public |
|
| 451 | - * @param bool $add_success |
|
| 452 | - * @param bool $add_error |
|
| 453 | - * @return bool |
|
| 454 | - */ |
|
| 455 | - public function update_espresso_config($add_success = false, $add_error = true) |
|
| 456 | - { |
|
| 457 | - // don't allow config updates during WP heartbeats |
|
| 458 | - if (\EE_Registry::instance()->REQ->get('action', '') === 'heartbeat') { |
|
| 459 | - return false; |
|
| 460 | - } |
|
| 461 | - // commented out the following re: https://events.codebasehq.com/projects/event-espresso/tickets/8197 |
|
| 462 | - // $clone = clone( self::$_instance ); |
|
| 463 | - // self::$_instance = NULL; |
|
| 464 | - do_action('AHEE__EE_Config__update_espresso_config__begin', $this); |
|
| 465 | - $this->_reset_espresso_addon_config(); |
|
| 466 | - // hook into update_option because that happens AFTER the ( $value === $old_value ) conditional |
|
| 467 | - // but BEFORE the actual update occurs |
|
| 468 | - add_action('update_option', array($this, 'double_check_config_comparison'), 1, 3); |
|
| 469 | - // don't want to persist legacy_shortcodes_manager, but don't want to lose it either |
|
| 470 | - $legacy_shortcodes_manager = $this->legacy_shortcodes_manager; |
|
| 471 | - $this->legacy_shortcodes_manager = null; |
|
| 472 | - // now update "ee_config" |
|
| 473 | - $saved = update_option(EE_Config::OPTION_NAME, $this); |
|
| 474 | - $this->legacy_shortcodes_manager = $legacy_shortcodes_manager; |
|
| 475 | - EE_Config::log(EE_Config::OPTION_NAME); |
|
| 476 | - // if not saved... check if the hook we just added still exists; |
|
| 477 | - // if it does, it means one of two things: |
|
| 478 | - // that update_option bailed at the($value === $old_value) conditional, |
|
| 479 | - // or... |
|
| 480 | - // the db update query returned 0 rows affected |
|
| 481 | - // (probably because the data value was the same from it's perspective) |
|
| 482 | - // so the existence of the hook means that a negative result from update_option is NOT an error, |
|
| 483 | - // but just means no update occurred, so don't display an error to the user. |
|
| 484 | - // BUT... if update_option returns FALSE, AND the hook is missing, |
|
| 485 | - // then it means that something truly went wrong |
|
| 486 | - $saved = ! $saved ? has_action('update_option', array($this, 'double_check_config_comparison')) : $saved; |
|
| 487 | - // remove our action since we don't want it in the system anymore |
|
| 488 | - remove_action('update_option', array($this, 'double_check_config_comparison'), 1); |
|
| 489 | - do_action('AHEE__EE_Config__update_espresso_config__end', $this, $saved); |
|
| 490 | - // self::$_instance = $clone; |
|
| 491 | - // unset( $clone ); |
|
| 492 | - // if config remains the same or was updated successfully |
|
| 493 | - if ($saved) { |
|
| 494 | - if ($add_success) { |
|
| 495 | - EE_Error::add_success( |
|
| 496 | - __('The Event Espresso Configuration Settings have been successfully updated.', 'event_espresso'), |
|
| 497 | - __FILE__, |
|
| 498 | - __FUNCTION__, |
|
| 499 | - __LINE__ |
|
| 500 | - ); |
|
| 501 | - } |
|
| 502 | - return true; |
|
| 503 | - } else { |
|
| 504 | - if ($add_error) { |
|
| 505 | - EE_Error::add_error( |
|
| 506 | - __('The Event Espresso Configuration Settings were not updated.', 'event_espresso'), |
|
| 507 | - __FILE__, |
|
| 508 | - __FUNCTION__, |
|
| 509 | - __LINE__ |
|
| 510 | - ); |
|
| 511 | - } |
|
| 512 | - return false; |
|
| 513 | - } |
|
| 514 | - } |
|
| 515 | - |
|
| 516 | - |
|
| 517 | - /** |
|
| 518 | - * _verify_config_params |
|
| 519 | - * |
|
| 520 | - * @access private |
|
| 521 | - * @param string $section |
|
| 522 | - * @param string $name |
|
| 523 | - * @param string $config_class |
|
| 524 | - * @param EE_Config_Base $config_obj |
|
| 525 | - * @param array $tests_to_run |
|
| 526 | - * @param bool $display_errors |
|
| 527 | - * @return bool TRUE on success, FALSE on fail |
|
| 528 | - */ |
|
| 529 | - private function _verify_config_params( |
|
| 530 | - $section = '', |
|
| 531 | - $name = '', |
|
| 532 | - $config_class = '', |
|
| 533 | - $config_obj = null, |
|
| 534 | - $tests_to_run = array(1, 2, 3, 4, 5, 6, 7, 8), |
|
| 535 | - $display_errors = true |
|
| 536 | - ) { |
|
| 537 | - try { |
|
| 538 | - foreach ($tests_to_run as $test) { |
|
| 539 | - switch ($test) { |
|
| 540 | - // TEST #1 : check that section was set |
|
| 541 | - case 1: |
|
| 542 | - if (empty($section)) { |
|
| 543 | - if ($display_errors) { |
|
| 544 | - throw new EE_Error( |
|
| 545 | - sprintf( |
|
| 546 | - __( |
|
| 547 | - 'No configuration section has been provided while attempting to save "%s".', |
|
| 548 | - 'event_espresso' |
|
| 549 | - ), |
|
| 550 | - $config_class |
|
| 551 | - ) |
|
| 552 | - ); |
|
| 553 | - } |
|
| 554 | - return false; |
|
| 555 | - } |
|
| 556 | - break; |
|
| 557 | - // TEST #2 : check that settings section exists |
|
| 558 | - case 2: |
|
| 559 | - if (! isset($this->{$section})) { |
|
| 560 | - if ($display_errors) { |
|
| 561 | - throw new EE_Error( |
|
| 562 | - sprintf( |
|
| 563 | - __('The "%s" configuration section does not exist.', 'event_espresso'), |
|
| 564 | - $section |
|
| 565 | - ) |
|
| 566 | - ); |
|
| 567 | - } |
|
| 568 | - return false; |
|
| 569 | - } |
|
| 570 | - break; |
|
| 571 | - // TEST #3 : check that section is the proper format |
|
| 572 | - case 3: |
|
| 573 | - if (! ($this->{$section} instanceof EE_Config_Base || $this->{$section} instanceof stdClass) |
|
| 574 | - ) { |
|
| 575 | - if ($display_errors) { |
|
| 576 | - throw new EE_Error( |
|
| 577 | - sprintf( |
|
| 578 | - __( |
|
| 579 | - 'The "%s" configuration settings have not been formatted correctly.', |
|
| 580 | - 'event_espresso' |
|
| 581 | - ), |
|
| 582 | - $section |
|
| 583 | - ) |
|
| 584 | - ); |
|
| 585 | - } |
|
| 586 | - return false; |
|
| 587 | - } |
|
| 588 | - break; |
|
| 589 | - // TEST #4 : check that config section name has been set |
|
| 590 | - case 4: |
|
| 591 | - if (empty($name)) { |
|
| 592 | - if ($display_errors) { |
|
| 593 | - throw new EE_Error( |
|
| 594 | - __( |
|
| 595 | - 'No name has been provided for the specific configuration section.', |
|
| 596 | - 'event_espresso' |
|
| 597 | - ) |
|
| 598 | - ); |
|
| 599 | - } |
|
| 600 | - return false; |
|
| 601 | - } |
|
| 602 | - break; |
|
| 603 | - // TEST #5 : check that a config class name has been set |
|
| 604 | - case 5: |
|
| 605 | - if (empty($config_class)) { |
|
| 606 | - if ($display_errors) { |
|
| 607 | - throw new EE_Error( |
|
| 608 | - __( |
|
| 609 | - 'No class name has been provided for the specific configuration section.', |
|
| 610 | - 'event_espresso' |
|
| 611 | - ) |
|
| 612 | - ); |
|
| 613 | - } |
|
| 614 | - return false; |
|
| 615 | - } |
|
| 616 | - break; |
|
| 617 | - // TEST #6 : verify config class is accessible |
|
| 618 | - case 6: |
|
| 619 | - if (! class_exists($config_class)) { |
|
| 620 | - if ($display_errors) { |
|
| 621 | - throw new EE_Error( |
|
| 622 | - sprintf( |
|
| 623 | - __( |
|
| 624 | - 'The "%s" class does not exist. Please ensure that an autoloader has been set for it.', |
|
| 625 | - 'event_espresso' |
|
| 626 | - ), |
|
| 627 | - $config_class |
|
| 628 | - ) |
|
| 629 | - ); |
|
| 630 | - } |
|
| 631 | - return false; |
|
| 632 | - } |
|
| 633 | - break; |
|
| 634 | - // TEST #7 : check that config has even been set |
|
| 635 | - case 7: |
|
| 636 | - if (! isset($this->{$section}->{$name})) { |
|
| 637 | - if ($display_errors) { |
|
| 638 | - throw new EE_Error( |
|
| 639 | - sprintf( |
|
| 640 | - __('No configuration has been set for "%1$s->%2$s".', 'event_espresso'), |
|
| 641 | - $section, |
|
| 642 | - $name |
|
| 643 | - ) |
|
| 644 | - ); |
|
| 645 | - } |
|
| 646 | - return false; |
|
| 647 | - } else { |
|
| 648 | - // and make sure it's not serialized |
|
| 649 | - $this->{$section}->{$name} = maybe_unserialize($this->{$section}->{$name}); |
|
| 650 | - } |
|
| 651 | - break; |
|
| 652 | - // TEST #8 : check that config is the requested type |
|
| 653 | - case 8: |
|
| 654 | - if (! $this->{$section}->{$name} instanceof $config_class) { |
|
| 655 | - if ($display_errors) { |
|
| 656 | - throw new EE_Error( |
|
| 657 | - sprintf( |
|
| 658 | - __( |
|
| 659 | - 'The configuration for "%1$s->%2$s" is not of the "%3$s" class.', |
|
| 660 | - 'event_espresso' |
|
| 661 | - ), |
|
| 662 | - $section, |
|
| 663 | - $name, |
|
| 664 | - $config_class |
|
| 665 | - ) |
|
| 666 | - ); |
|
| 667 | - } |
|
| 668 | - return false; |
|
| 669 | - } |
|
| 670 | - break; |
|
| 671 | - // TEST #9 : verify config object |
|
| 672 | - case 9: |
|
| 673 | - if (! $config_obj instanceof EE_Config_Base) { |
|
| 674 | - if ($display_errors) { |
|
| 675 | - throw new EE_Error( |
|
| 676 | - sprintf( |
|
| 677 | - __('The "%s" class is not an instance of EE_Config_Base.', 'event_espresso'), |
|
| 678 | - print_r($config_obj, true) |
|
| 679 | - ) |
|
| 680 | - ); |
|
| 681 | - } |
|
| 682 | - return false; |
|
| 683 | - } |
|
| 684 | - break; |
|
| 685 | - } |
|
| 686 | - } |
|
| 687 | - } catch (EE_Error $e) { |
|
| 688 | - $e->get_error(); |
|
| 689 | - } |
|
| 690 | - // you have successfully run the gauntlet |
|
| 691 | - return true; |
|
| 692 | - } |
|
| 693 | - |
|
| 694 | - |
|
| 695 | - /** |
|
| 696 | - * _generate_config_option_name |
|
| 697 | - * |
|
| 698 | - * @access protected |
|
| 699 | - * @param string $section |
|
| 700 | - * @param string $name |
|
| 701 | - * @return string |
|
| 702 | - */ |
|
| 703 | - private function _generate_config_option_name($section = '', $name = '') |
|
| 704 | - { |
|
| 705 | - return 'ee_config-' . strtolower($section . '-' . str_replace(array('EE_', 'EED_'), '', $name)); |
|
| 706 | - } |
|
| 707 | - |
|
| 708 | - |
|
| 709 | - /** |
|
| 710 | - * _set_config_class |
|
| 711 | - * ensures that a config class is set, either from a passed config class or one generated from the config name |
|
| 712 | - * |
|
| 713 | - * @access private |
|
| 714 | - * @param string $config_class |
|
| 715 | - * @param string $name |
|
| 716 | - * @return string |
|
| 717 | - */ |
|
| 718 | - private function _set_config_class($config_class = '', $name = '') |
|
| 719 | - { |
|
| 720 | - return ! empty($config_class) |
|
| 721 | - ? $config_class |
|
| 722 | - : str_replace(' ', '_', ucwords(str_replace('_', ' ', $name))) . '_Config'; |
|
| 723 | - } |
|
| 724 | - |
|
| 725 | - |
|
| 726 | - /** |
|
| 727 | - * set_config |
|
| 728 | - * |
|
| 729 | - * @access protected |
|
| 730 | - * @param string $section |
|
| 731 | - * @param string $name |
|
| 732 | - * @param string $config_class |
|
| 733 | - * @param EE_Config_Base $config_obj |
|
| 734 | - * @return EE_Config_Base |
|
| 735 | - */ |
|
| 736 | - public function set_config($section = '', $name = '', $config_class = '', EE_Config_Base $config_obj = null) |
|
| 737 | - { |
|
| 738 | - // ensure config class is set to something |
|
| 739 | - $config_class = $this->_set_config_class($config_class, $name); |
|
| 740 | - // run tests 1-4, 6, and 7 to verify all config params are set and valid |
|
| 741 | - if (! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 742 | - return null; |
|
| 743 | - } |
|
| 744 | - $config_option_name = $this->_generate_config_option_name($section, $name); |
|
| 745 | - // if the config option name hasn't been added yet to the list of option names we're tracking, then do so now |
|
| 746 | - if (! isset($this->_addon_option_names[ $config_option_name ])) { |
|
| 747 | - $this->_addon_option_names[ $config_option_name ] = $config_class; |
|
| 748 | - $this->update_addon_option_names(); |
|
| 749 | - } |
|
| 750 | - // verify the incoming config object but suppress errors |
|
| 751 | - if (! $this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), false)) { |
|
| 752 | - $config_obj = new $config_class(); |
|
| 753 | - } |
|
| 754 | - if (get_option($config_option_name)) { |
|
| 755 | - EE_Config::log($config_option_name); |
|
| 756 | - update_option($config_option_name, $config_obj); |
|
| 757 | - $this->{$section}->{$name} = $config_obj; |
|
| 758 | - return $this->{$section}->{$name}; |
|
| 759 | - } else { |
|
| 760 | - // create a wp-option for this config |
|
| 761 | - if (add_option($config_option_name, $config_obj, '', 'no')) { |
|
| 762 | - $this->{$section}->{$name} = maybe_unserialize($config_obj); |
|
| 763 | - return $this->{$section}->{$name}; |
|
| 764 | - } else { |
|
| 765 | - EE_Error::add_error( |
|
| 766 | - sprintf(__('The "%s" could not be saved to the database.', 'event_espresso'), $config_class), |
|
| 767 | - __FILE__, |
|
| 768 | - __FUNCTION__, |
|
| 769 | - __LINE__ |
|
| 770 | - ); |
|
| 771 | - return null; |
|
| 772 | - } |
|
| 773 | - } |
|
| 774 | - } |
|
| 775 | - |
|
| 776 | - |
|
| 777 | - /** |
|
| 778 | - * update_config |
|
| 779 | - * Important: the config object must ALREADY be set, otherwise this will produce an error. |
|
| 780 | - * |
|
| 781 | - * @access public |
|
| 782 | - * @param string $section |
|
| 783 | - * @param string $name |
|
| 784 | - * @param EE_Config_Base|string $config_obj |
|
| 785 | - * @param bool $throw_errors |
|
| 786 | - * @return bool |
|
| 787 | - */ |
|
| 788 | - public function update_config($section = '', $name = '', $config_obj = '', $throw_errors = true) |
|
| 789 | - { |
|
| 790 | - // don't allow config updates during WP heartbeats |
|
| 791 | - if (\EE_Registry::instance()->REQ->get('action', '') === 'heartbeat') { |
|
| 792 | - return false; |
|
| 793 | - } |
|
| 794 | - $config_obj = maybe_unserialize($config_obj); |
|
| 795 | - // get class name of the incoming object |
|
| 796 | - $config_class = get_class($config_obj); |
|
| 797 | - // run tests 1-5 and 9 to verify config |
|
| 798 | - if (! $this->_verify_config_params( |
|
| 799 | - $section, |
|
| 800 | - $name, |
|
| 801 | - $config_class, |
|
| 802 | - $config_obj, |
|
| 803 | - array(1, 2, 3, 4, 7, 9) |
|
| 804 | - ) |
|
| 805 | - ) { |
|
| 806 | - return false; |
|
| 807 | - } |
|
| 808 | - $config_option_name = $this->_generate_config_option_name($section, $name); |
|
| 809 | - // check if config object has been added to db by seeing if config option name is in $this->_addon_option_names array |
|
| 810 | - if (! isset($this->_addon_option_names[ $config_option_name ])) { |
|
| 811 | - // save new config to db |
|
| 812 | - if ($this->set_config($section, $name, $config_class, $config_obj)) { |
|
| 813 | - return true; |
|
| 814 | - } |
|
| 815 | - } else { |
|
| 816 | - // first check if the record already exists |
|
| 817 | - $existing_config = get_option($config_option_name); |
|
| 818 | - $config_obj = serialize($config_obj); |
|
| 819 | - // just return if db record is already up to date (NOT type safe comparison) |
|
| 820 | - if ($existing_config == $config_obj) { |
|
| 821 | - $this->{$section}->{$name} = $config_obj; |
|
| 822 | - return true; |
|
| 823 | - } elseif (update_option($config_option_name, $config_obj)) { |
|
| 824 | - EE_Config::log($config_option_name); |
|
| 825 | - // update wp-option for this config class |
|
| 826 | - $this->{$section}->{$name} = $config_obj; |
|
| 827 | - return true; |
|
| 828 | - } elseif ($throw_errors) { |
|
| 829 | - EE_Error::add_error( |
|
| 830 | - sprintf( |
|
| 831 | - __( |
|
| 832 | - 'The "%1$s" object stored at"%2$s" was not successfully updated in the database.', |
|
| 833 | - 'event_espresso' |
|
| 834 | - ), |
|
| 835 | - $config_class, |
|
| 836 | - 'EE_Config->' . $section . '->' . $name |
|
| 837 | - ), |
|
| 838 | - __FILE__, |
|
| 839 | - __FUNCTION__, |
|
| 840 | - __LINE__ |
|
| 841 | - ); |
|
| 842 | - } |
|
| 843 | - } |
|
| 844 | - return false; |
|
| 845 | - } |
|
| 846 | - |
|
| 847 | - |
|
| 848 | - /** |
|
| 849 | - * get_config |
|
| 850 | - * |
|
| 851 | - * @access public |
|
| 852 | - * @param string $section |
|
| 853 | - * @param string $name |
|
| 854 | - * @param string $config_class |
|
| 855 | - * @return mixed EE_Config_Base | NULL |
|
| 856 | - */ |
|
| 857 | - public function get_config($section = '', $name = '', $config_class = '') |
|
| 858 | - { |
|
| 859 | - // ensure config class is set to something |
|
| 860 | - $config_class = $this->_set_config_class($config_class, $name); |
|
| 861 | - // run tests 1-4, 6 and 7 to verify that all params have been set |
|
| 862 | - if (! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 863 | - return null; |
|
| 864 | - } |
|
| 865 | - // now test if the requested config object exists, but suppress errors |
|
| 866 | - if ($this->_verify_config_params($section, $name, $config_class, null, array(7, 8), false)) { |
|
| 867 | - // config already exists, so pass it back |
|
| 868 | - return $this->{$section}->{$name}; |
|
| 869 | - } |
|
| 870 | - // load config option from db if it exists |
|
| 871 | - $config_obj = $this->get_config_option($this->_generate_config_option_name($section, $name)); |
|
| 872 | - // verify the newly retrieved config object, but suppress errors |
|
| 873 | - if ($this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), false)) { |
|
| 874 | - // config is good, so set it and pass it back |
|
| 875 | - $this->{$section}->{$name} = $config_obj; |
|
| 876 | - return $this->{$section}->{$name}; |
|
| 877 | - } |
|
| 878 | - // oops! $config_obj is not already set and does not exist in the db, so create a new one |
|
| 879 | - $config_obj = $this->set_config($section, $name, $config_class); |
|
| 880 | - // verify the newly created config object |
|
| 881 | - if ($this->_verify_config_params($section, $name, $config_class, $config_obj, array(9))) { |
|
| 882 | - return $this->{$section}->{$name}; |
|
| 883 | - } else { |
|
| 884 | - EE_Error::add_error( |
|
| 885 | - sprintf(__('The "%s" could not be retrieved from the database.', 'event_espresso'), $config_class), |
|
| 886 | - __FILE__, |
|
| 887 | - __FUNCTION__, |
|
| 888 | - __LINE__ |
|
| 889 | - ); |
|
| 890 | - } |
|
| 891 | - return null; |
|
| 892 | - } |
|
| 893 | - |
|
| 894 | - |
|
| 895 | - /** |
|
| 896 | - * get_config_option |
|
| 897 | - * |
|
| 898 | - * @access public |
|
| 899 | - * @param string $config_option_name |
|
| 900 | - * @return mixed EE_Config_Base | FALSE |
|
| 901 | - */ |
|
| 902 | - public function get_config_option($config_option_name = '') |
|
| 903 | - { |
|
| 904 | - // retrieve the wp-option for this config class. |
|
| 905 | - $config_option = maybe_unserialize(get_option($config_option_name, array())); |
|
| 906 | - if (empty($config_option)) { |
|
| 907 | - EE_Config::log($config_option_name . '-NOT-FOUND'); |
|
| 908 | - } |
|
| 909 | - return $config_option; |
|
| 910 | - } |
|
| 911 | - |
|
| 912 | - |
|
| 913 | - /** |
|
| 914 | - * log |
|
| 915 | - * |
|
| 916 | - * @param string $config_option_name |
|
| 917 | - */ |
|
| 918 | - public static function log($config_option_name = '') |
|
| 919 | - { |
|
| 920 | - if (EE_Config::logging_enabled() && ! empty($config_option_name)) { |
|
| 921 | - $config_log = get_option(EE_Config::LOG_NAME, array()); |
|
| 922 | - // copy incoming $_REQUEST and sanitize it so we can save it |
|
| 923 | - $_request = $_REQUEST; |
|
| 924 | - array_walk_recursive($_request, 'sanitize_text_field'); |
|
| 925 | - $config_log[ (string) microtime(true) ] = array( |
|
| 926 | - 'config_name' => $config_option_name, |
|
| 927 | - 'request' => $_request, |
|
| 928 | - ); |
|
| 929 | - update_option(EE_Config::LOG_NAME, $config_log); |
|
| 930 | - } |
|
| 931 | - } |
|
| 932 | - |
|
| 933 | - |
|
| 934 | - /** |
|
| 935 | - * trim_log |
|
| 936 | - * reduces the size of the config log to the length specified by EE_Config::LOG_LENGTH |
|
| 937 | - */ |
|
| 938 | - public static function trim_log() |
|
| 939 | - { |
|
| 940 | - if (! EE_Config::logging_enabled()) { |
|
| 941 | - return; |
|
| 942 | - } |
|
| 943 | - $config_log = maybe_unserialize(get_option(EE_Config::LOG_NAME, array())); |
|
| 944 | - $log_length = count($config_log); |
|
| 945 | - if ($log_length > EE_Config::LOG_LENGTH) { |
|
| 946 | - ksort($config_log); |
|
| 947 | - $config_log = array_slice($config_log, $log_length - EE_Config::LOG_LENGTH, null, true); |
|
| 948 | - update_option(EE_Config::LOG_NAME, $config_log); |
|
| 949 | - } |
|
| 950 | - } |
|
| 951 | - |
|
| 952 | - |
|
| 953 | - /** |
|
| 954 | - * get_page_for_posts |
|
| 955 | - * if the wp-option "show_on_front" is set to "page", then this is the post_name for the post set in the |
|
| 956 | - * wp-option "page_for_posts", or "posts" if no page is selected |
|
| 957 | - * |
|
| 958 | - * @access public |
|
| 959 | - * @return string |
|
| 960 | - */ |
|
| 961 | - public static function get_page_for_posts() |
|
| 962 | - { |
|
| 963 | - $page_for_posts = get_option('page_for_posts'); |
|
| 964 | - if (! $page_for_posts) { |
|
| 965 | - return 'posts'; |
|
| 966 | - } |
|
| 967 | - /** @type WPDB $wpdb */ |
|
| 968 | - global $wpdb; |
|
| 969 | - $SQL = "SELECT post_name from $wpdb->posts WHERE post_type='posts' OR post_type='page' AND post_status='publish' AND ID=%d"; |
|
| 970 | - return $wpdb->get_var($wpdb->prepare($SQL, $page_for_posts)); |
|
| 971 | - } |
|
| 972 | - |
|
| 973 | - |
|
| 974 | - /** |
|
| 975 | - * register_shortcodes_and_modules. |
|
| 976 | - * At this point, it's too early to tell if we're maintenance mode or not. |
|
| 977 | - * In fact, this is where we give modules a chance to let core know they exist |
|
| 978 | - * so they can help trigger maintenance mode if it's needed |
|
| 979 | - * |
|
| 980 | - * @access public |
|
| 981 | - * @return void |
|
| 982 | - */ |
|
| 983 | - public function register_shortcodes_and_modules() |
|
| 984 | - { |
|
| 985 | - // allow modules to set hooks for the rest of the system |
|
| 986 | - EE_Registry::instance()->modules = $this->_register_modules(); |
|
| 987 | - } |
|
| 988 | - |
|
| 989 | - |
|
| 990 | - /** |
|
| 991 | - * initialize_shortcodes_and_modules |
|
| 992 | - * meaning they can start adding their hooks to get stuff done |
|
| 993 | - * |
|
| 994 | - * @access public |
|
| 995 | - * @return void |
|
| 996 | - */ |
|
| 997 | - public function initialize_shortcodes_and_modules() |
|
| 998 | - { |
|
| 999 | - // allow modules to set hooks for the rest of the system |
|
| 1000 | - $this->_initialize_modules(); |
|
| 1001 | - } |
|
| 1002 | - |
|
| 1003 | - |
|
| 1004 | - /** |
|
| 1005 | - * widgets_init |
|
| 1006 | - * |
|
| 1007 | - * @access private |
|
| 1008 | - * @return void |
|
| 1009 | - */ |
|
| 1010 | - public function widgets_init() |
|
| 1011 | - { |
|
| 1012 | - // only init widgets on admin pages when not in complete maintenance, and |
|
| 1013 | - // on frontend when not in any maintenance mode |
|
| 1014 | - if (! EE_Maintenance_Mode::instance()->level() |
|
| 1015 | - || ( |
|
| 1016 | - is_admin() |
|
| 1017 | - && EE_Maintenance_Mode::instance()->level() !== EE_Maintenance_Mode::level_2_complete_maintenance |
|
| 1018 | - ) |
|
| 1019 | - ) { |
|
| 1020 | - // grab list of installed widgets |
|
| 1021 | - $widgets_to_register = glob(EE_WIDGETS . '*', GLOB_ONLYDIR); |
|
| 1022 | - // filter list of modules to register |
|
| 1023 | - $widgets_to_register = apply_filters( |
|
| 1024 | - 'FHEE__EE_Config__register_widgets__widgets_to_register', |
|
| 1025 | - $widgets_to_register |
|
| 1026 | - ); |
|
| 1027 | - if (! empty($widgets_to_register)) { |
|
| 1028 | - // cycle thru widget folders |
|
| 1029 | - foreach ($widgets_to_register as $widget_path) { |
|
| 1030 | - // add to list of installed widget modules |
|
| 1031 | - EE_Config::register_ee_widget($widget_path); |
|
| 1032 | - } |
|
| 1033 | - } |
|
| 1034 | - // filter list of installed modules |
|
| 1035 | - EE_Registry::instance()->widgets = apply_filters( |
|
| 1036 | - 'FHEE__EE_Config__register_widgets__installed_widgets', |
|
| 1037 | - EE_Registry::instance()->widgets |
|
| 1038 | - ); |
|
| 1039 | - } |
|
| 1040 | - } |
|
| 1041 | - |
|
| 1042 | - |
|
| 1043 | - /** |
|
| 1044 | - * register_ee_widget - makes core aware of this widget |
|
| 1045 | - * |
|
| 1046 | - * @access public |
|
| 1047 | - * @param string $widget_path - full path up to and including widget folder |
|
| 1048 | - * @return void |
|
| 1049 | - */ |
|
| 1050 | - public static function register_ee_widget($widget_path = null) |
|
| 1051 | - { |
|
| 1052 | - do_action('AHEE__EE_Config__register_widget__begin', $widget_path); |
|
| 1053 | - $widget_ext = '.widget.php'; |
|
| 1054 | - // make all separators match |
|
| 1055 | - $widget_path = rtrim(str_replace('/\\', DS, $widget_path), DS); |
|
| 1056 | - // does the file path INCLUDE the actual file name as part of the path ? |
|
| 1057 | - if (strpos($widget_path, $widget_ext) !== false) { |
|
| 1058 | - // grab and shortcode file name from directory name and break apart at dots |
|
| 1059 | - $file_name = explode('.', basename($widget_path)); |
|
| 1060 | - // take first segment from file name pieces and remove class prefix if it exists |
|
| 1061 | - $widget = strpos($file_name[0], 'EEW_') === 0 ? substr($file_name[0], 4) : $file_name[0]; |
|
| 1062 | - // sanitize shortcode directory name |
|
| 1063 | - $widget = sanitize_key($widget); |
|
| 1064 | - // now we need to rebuild the shortcode path |
|
| 1065 | - $widget_path = explode(DS, $widget_path); |
|
| 1066 | - // remove last segment |
|
| 1067 | - array_pop($widget_path); |
|
| 1068 | - // glue it back together |
|
| 1069 | - $widget_path = implode(DS, $widget_path); |
|
| 1070 | - } else { |
|
| 1071 | - // grab and sanitize widget directory name |
|
| 1072 | - $widget = sanitize_key(basename($widget_path)); |
|
| 1073 | - } |
|
| 1074 | - // create classname from widget directory name |
|
| 1075 | - $widget = str_replace(' ', '_', ucwords(str_replace('_', ' ', $widget))); |
|
| 1076 | - // add class prefix |
|
| 1077 | - $widget_class = 'EEW_' . $widget; |
|
| 1078 | - // does the widget exist ? |
|
| 1079 | - if (! is_readable($widget_path . DS . $widget_class . $widget_ext)) { |
|
| 1080 | - $msg = sprintf( |
|
| 1081 | - __( |
|
| 1082 | - 'The requested %s widget file could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', |
|
| 1083 | - 'event_espresso' |
|
| 1084 | - ), |
|
| 1085 | - $widget_class, |
|
| 1086 | - $widget_path . DS . $widget_class . $widget_ext |
|
| 1087 | - ); |
|
| 1088 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1089 | - return; |
|
| 1090 | - } |
|
| 1091 | - // load the widget class file |
|
| 1092 | - require_once($widget_path . DS . $widget_class . $widget_ext); |
|
| 1093 | - // verify that class exists |
|
| 1094 | - if (! class_exists($widget_class)) { |
|
| 1095 | - $msg = sprintf(__('The requested %s widget class does not exist.', 'event_espresso'), $widget_class); |
|
| 1096 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1097 | - return; |
|
| 1098 | - } |
|
| 1099 | - register_widget($widget_class); |
|
| 1100 | - // add to array of registered widgets |
|
| 1101 | - EE_Registry::instance()->widgets->{$widget_class} = $widget_path . DS . $widget_class . $widget_ext; |
|
| 1102 | - } |
|
| 1103 | - |
|
| 1104 | - |
|
| 1105 | - /** |
|
| 1106 | - * _register_modules |
|
| 1107 | - * |
|
| 1108 | - * @access private |
|
| 1109 | - * @return array |
|
| 1110 | - */ |
|
| 1111 | - private function _register_modules() |
|
| 1112 | - { |
|
| 1113 | - // grab list of installed modules |
|
| 1114 | - $modules_to_register = glob(EE_MODULES . '*', GLOB_ONLYDIR); |
|
| 1115 | - // filter list of modules to register |
|
| 1116 | - $modules_to_register = apply_filters( |
|
| 1117 | - 'FHEE__EE_Config__register_modules__modules_to_register', |
|
| 1118 | - $modules_to_register |
|
| 1119 | - ); |
|
| 1120 | - if (! empty($modules_to_register)) { |
|
| 1121 | - // loop through folders |
|
| 1122 | - foreach ($modules_to_register as $module_path) { |
|
| 1123 | - /**TEMPORARILY EXCLUDE gateways from modules for time being**/ |
|
| 1124 | - if ($module_path !== EE_MODULES . 'zzz-copy-this-module-template' |
|
| 1125 | - && $module_path !== EE_MODULES . 'gateways' |
|
| 1126 | - ) { |
|
| 1127 | - // add to list of installed modules |
|
| 1128 | - EE_Config::register_module($module_path); |
|
| 1129 | - } |
|
| 1130 | - } |
|
| 1131 | - } |
|
| 1132 | - // filter list of installed modules |
|
| 1133 | - return apply_filters( |
|
| 1134 | - 'FHEE__EE_Config___register_modules__installed_modules', |
|
| 1135 | - EE_Registry::instance()->modules |
|
| 1136 | - ); |
|
| 1137 | - } |
|
| 1138 | - |
|
| 1139 | - |
|
| 1140 | - /** |
|
| 1141 | - * register_module - makes core aware of this module |
|
| 1142 | - * |
|
| 1143 | - * @access public |
|
| 1144 | - * @param string $module_path - full path up to and including module folder |
|
| 1145 | - * @return bool |
|
| 1146 | - */ |
|
| 1147 | - public static function register_module($module_path = null) |
|
| 1148 | - { |
|
| 1149 | - do_action('AHEE__EE_Config__register_module__begin', $module_path); |
|
| 1150 | - $module_ext = '.module.php'; |
|
| 1151 | - // make all separators match |
|
| 1152 | - $module_path = str_replace(array('\\', '/'), DS, $module_path); |
|
| 1153 | - // does the file path INCLUDE the actual file name as part of the path ? |
|
| 1154 | - if (strpos($module_path, $module_ext) !== false) { |
|
| 1155 | - // grab and shortcode file name from directory name and break apart at dots |
|
| 1156 | - $module_file = explode('.', basename($module_path)); |
|
| 1157 | - // now we need to rebuild the shortcode path |
|
| 1158 | - $module_path = explode(DS, $module_path); |
|
| 1159 | - // remove last segment |
|
| 1160 | - array_pop($module_path); |
|
| 1161 | - // glue it back together |
|
| 1162 | - $module_path = implode(DS, $module_path) . DS; |
|
| 1163 | - // take first segment from file name pieces and sanitize it |
|
| 1164 | - $module = preg_replace('/[^a-zA-Z0-9_\-]/', '', $module_file[0]); |
|
| 1165 | - // ensure class prefix is added |
|
| 1166 | - $module_class = strpos($module, 'EED_') !== 0 ? 'EED_' . $module : $module; |
|
| 1167 | - } else { |
|
| 1168 | - // we need to generate the filename based off of the folder name |
|
| 1169 | - // grab and sanitize module name |
|
| 1170 | - $module = strtolower(basename($module_path)); |
|
| 1171 | - $module = preg_replace('/[^a-z0-9_\-]/', '', $module); |
|
| 1172 | - // like trailingslashit() |
|
| 1173 | - $module_path = rtrim($module_path, DS) . DS; |
|
| 1174 | - // create classname from module directory name |
|
| 1175 | - $module = str_replace(' ', '_', ucwords(str_replace('_', ' ', $module))); |
|
| 1176 | - // add class prefix |
|
| 1177 | - $module_class = 'EED_' . $module; |
|
| 1178 | - } |
|
| 1179 | - // does the module exist ? |
|
| 1180 | - if (! is_readable($module_path . DS . $module_class . $module_ext)) { |
|
| 1181 | - $msg = sprintf( |
|
| 1182 | - __( |
|
| 1183 | - 'The requested %s module file could not be found or is not readable due to file permissions.', |
|
| 1184 | - 'event_espresso' |
|
| 1185 | - ), |
|
| 1186 | - $module |
|
| 1187 | - ); |
|
| 1188 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1189 | - return false; |
|
| 1190 | - } |
|
| 1191 | - // load the module class file |
|
| 1192 | - require_once($module_path . $module_class . $module_ext); |
|
| 1193 | - // verify that class exists |
|
| 1194 | - if (! class_exists($module_class)) { |
|
| 1195 | - $msg = sprintf(__('The requested %s module class does not exist.', 'event_espresso'), $module_class); |
|
| 1196 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1197 | - return false; |
|
| 1198 | - } |
|
| 1199 | - // add to array of registered modules |
|
| 1200 | - EE_Registry::instance()->modules->{$module_class} = $module_path . $module_class . $module_ext; |
|
| 1201 | - do_action( |
|
| 1202 | - 'AHEE__EE_Config__register_module__complete', |
|
| 1203 | - $module_class, |
|
| 1204 | - EE_Registry::instance()->modules->{$module_class} |
|
| 1205 | - ); |
|
| 1206 | - return true; |
|
| 1207 | - } |
|
| 1208 | - |
|
| 1209 | - |
|
| 1210 | - /** |
|
| 1211 | - * _initialize_modules |
|
| 1212 | - * allow modules to set hooks for the rest of the system |
|
| 1213 | - * |
|
| 1214 | - * @access private |
|
| 1215 | - * @return void |
|
| 1216 | - */ |
|
| 1217 | - private function _initialize_modules() |
|
| 1218 | - { |
|
| 1219 | - // cycle thru shortcode folders |
|
| 1220 | - foreach (EE_Registry::instance()->modules as $module_class => $module_path) { |
|
| 1221 | - // fire the shortcode class's set_hooks methods in case it needs to hook into other parts of the system |
|
| 1222 | - // which set hooks ? |
|
| 1223 | - if (is_admin()) { |
|
| 1224 | - // fire immediately |
|
| 1225 | - call_user_func(array($module_class, 'set_hooks_admin')); |
|
| 1226 | - } else { |
|
| 1227 | - // delay until other systems are online |
|
| 1228 | - add_action( |
|
| 1229 | - 'AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons', |
|
| 1230 | - array($module_class, 'set_hooks') |
|
| 1231 | - ); |
|
| 1232 | - } |
|
| 1233 | - } |
|
| 1234 | - } |
|
| 1235 | - |
|
| 1236 | - |
|
| 1237 | - /** |
|
| 1238 | - * register_route - adds module method routes to route_map |
|
| 1239 | - * |
|
| 1240 | - * @access public |
|
| 1241 | - * @param string $route - "pretty" public alias for module method |
|
| 1242 | - * @param string $module - module name (classname without EED_ prefix) |
|
| 1243 | - * @param string $method_name - the actual module method to be routed to |
|
| 1244 | - * @param string $key - url param key indicating a route is being called |
|
| 1245 | - * @return bool |
|
| 1246 | - */ |
|
| 1247 | - public static function register_route($route = null, $module = null, $method_name = null, $key = 'ee') |
|
| 1248 | - { |
|
| 1249 | - do_action('AHEE__EE_Config__register_route__begin', $route, $module, $method_name); |
|
| 1250 | - $module = str_replace('EED_', '', $module); |
|
| 1251 | - $module_class = 'EED_' . $module; |
|
| 1252 | - if (! isset(EE_Registry::instance()->modules->{$module_class})) { |
|
| 1253 | - $msg = sprintf(__('The module %s has not been registered.', 'event_espresso'), $module); |
|
| 1254 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1255 | - return false; |
|
| 1256 | - } |
|
| 1257 | - if (empty($route)) { |
|
| 1258 | - $msg = sprintf(__('No route has been supplied.', 'event_espresso'), $route); |
|
| 1259 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1260 | - return false; |
|
| 1261 | - } |
|
| 1262 | - if (! method_exists('EED_' . $module, $method_name)) { |
|
| 1263 | - $msg = sprintf( |
|
| 1264 | - __('A valid class method for the %s route has not been supplied.', 'event_espresso'), |
|
| 1265 | - $route |
|
| 1266 | - ); |
|
| 1267 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1268 | - return false; |
|
| 1269 | - } |
|
| 1270 | - EE_Config::$_module_route_map[ $key ][ $route ] = array('EED_' . $module, $method_name); |
|
| 1271 | - return true; |
|
| 1272 | - } |
|
| 1273 | - |
|
| 1274 | - |
|
| 1275 | - /** |
|
| 1276 | - * get_route - get module method route |
|
| 1277 | - * |
|
| 1278 | - * @access public |
|
| 1279 | - * @param string $route - "pretty" public alias for module method |
|
| 1280 | - * @param string $key - url param key indicating a route is being called |
|
| 1281 | - * @return string |
|
| 1282 | - */ |
|
| 1283 | - public static function get_route($route = null, $key = 'ee') |
|
| 1284 | - { |
|
| 1285 | - do_action('AHEE__EE_Config__get_route__begin', $route); |
|
| 1286 | - $route = (string) apply_filters('FHEE__EE_Config__get_route', $route); |
|
| 1287 | - if (isset(EE_Config::$_module_route_map[ $key ][ $route ])) { |
|
| 1288 | - return EE_Config::$_module_route_map[ $key ][ $route ]; |
|
| 1289 | - } |
|
| 1290 | - return null; |
|
| 1291 | - } |
|
| 1292 | - |
|
| 1293 | - |
|
| 1294 | - /** |
|
| 1295 | - * get_routes - get ALL module method routes |
|
| 1296 | - * |
|
| 1297 | - * @access public |
|
| 1298 | - * @return array |
|
| 1299 | - */ |
|
| 1300 | - public static function get_routes() |
|
| 1301 | - { |
|
| 1302 | - return EE_Config::$_module_route_map; |
|
| 1303 | - } |
|
| 1304 | - |
|
| 1305 | - |
|
| 1306 | - /** |
|
| 1307 | - * register_forward - allows modules to forward request to another module for further processing |
|
| 1308 | - * |
|
| 1309 | - * @access public |
|
| 1310 | - * @param string $route - "pretty" public alias for module method |
|
| 1311 | - * @param integer $status - integer value corresponding to status constant strings set in module parent |
|
| 1312 | - * class, allows different forwards to be served based on status |
|
| 1313 | - * @param array|string $forward - function name or array( class, method ) |
|
| 1314 | - * @param string $key - url param key indicating a route is being called |
|
| 1315 | - * @return bool |
|
| 1316 | - */ |
|
| 1317 | - public static function register_forward($route = null, $status = 0, $forward = null, $key = 'ee') |
|
| 1318 | - { |
|
| 1319 | - do_action('AHEE__EE_Config__register_forward', $route, $status, $forward); |
|
| 1320 | - if (! isset(EE_Config::$_module_route_map[ $key ][ $route ]) || empty($route)) { |
|
| 1321 | - $msg = sprintf( |
|
| 1322 | - __('The module route %s for this forward has not been registered.', 'event_espresso'), |
|
| 1323 | - $route |
|
| 1324 | - ); |
|
| 1325 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1326 | - return false; |
|
| 1327 | - } |
|
| 1328 | - if (empty($forward)) { |
|
| 1329 | - $msg = sprintf(__('No forwarding route has been supplied.', 'event_espresso'), $route); |
|
| 1330 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1331 | - return false; |
|
| 1332 | - } |
|
| 1333 | - if (is_array($forward)) { |
|
| 1334 | - if (! isset($forward[1])) { |
|
| 1335 | - $msg = sprintf( |
|
| 1336 | - __('A class method for the %s forwarding route has not been supplied.', 'event_espresso'), |
|
| 1337 | - $route |
|
| 1338 | - ); |
|
| 1339 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1340 | - return false; |
|
| 1341 | - } |
|
| 1342 | - if (! method_exists($forward[0], $forward[1])) { |
|
| 1343 | - $msg = sprintf( |
|
| 1344 | - __('The class method %s for the %s forwarding route is in invalid.', 'event_espresso'), |
|
| 1345 | - $forward[1], |
|
| 1346 | - $route |
|
| 1347 | - ); |
|
| 1348 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1349 | - return false; |
|
| 1350 | - } |
|
| 1351 | - } elseif (! function_exists($forward)) { |
|
| 1352 | - $msg = sprintf( |
|
| 1353 | - __('The function %s for the %s forwarding route is in invalid.', 'event_espresso'), |
|
| 1354 | - $forward, |
|
| 1355 | - $route |
|
| 1356 | - ); |
|
| 1357 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1358 | - return false; |
|
| 1359 | - } |
|
| 1360 | - EE_Config::$_module_forward_map[ $key ][ $route ][ absint($status) ] = $forward; |
|
| 1361 | - return true; |
|
| 1362 | - } |
|
| 1363 | - |
|
| 1364 | - |
|
| 1365 | - /** |
|
| 1366 | - * get_forward - get forwarding route |
|
| 1367 | - * |
|
| 1368 | - * @access public |
|
| 1369 | - * @param string $route - "pretty" public alias for module method |
|
| 1370 | - * @param integer $status - integer value corresponding to status constant strings set in module parent class, |
|
| 1371 | - * allows different forwards to be served based on status |
|
| 1372 | - * @param string $key - url param key indicating a route is being called |
|
| 1373 | - * @return string |
|
| 1374 | - */ |
|
| 1375 | - public static function get_forward($route = null, $status = 0, $key = 'ee') |
|
| 1376 | - { |
|
| 1377 | - do_action('AHEE__EE_Config__get_forward__begin', $route, $status); |
|
| 1378 | - if (isset(EE_Config::$_module_forward_map[ $key ][ $route ][ $status ])) { |
|
| 1379 | - return apply_filters( |
|
| 1380 | - 'FHEE__EE_Config__get_forward', |
|
| 1381 | - EE_Config::$_module_forward_map[ $key ][ $route ][ $status ], |
|
| 1382 | - $route, |
|
| 1383 | - $status |
|
| 1384 | - ); |
|
| 1385 | - } |
|
| 1386 | - return null; |
|
| 1387 | - } |
|
| 1388 | - |
|
| 1389 | - |
|
| 1390 | - /** |
|
| 1391 | - * register_forward - allows modules to specify different view templates for different method routes and status |
|
| 1392 | - * results |
|
| 1393 | - * |
|
| 1394 | - * @access public |
|
| 1395 | - * @param string $route - "pretty" public alias for module method |
|
| 1396 | - * @param integer $status - integer value corresponding to status constant strings set in module parent class, |
|
| 1397 | - * allows different views to be served based on status |
|
| 1398 | - * @param string $view |
|
| 1399 | - * @param string $key - url param key indicating a route is being called |
|
| 1400 | - * @return bool |
|
| 1401 | - */ |
|
| 1402 | - public static function register_view($route = null, $status = 0, $view = null, $key = 'ee') |
|
| 1403 | - { |
|
| 1404 | - do_action('AHEE__EE_Config__register_view__begin', $route, $status, $view); |
|
| 1405 | - if (! isset(EE_Config::$_module_route_map[ $key ][ $route ]) || empty($route)) { |
|
| 1406 | - $msg = sprintf( |
|
| 1407 | - __('The module route %s for this view has not been registered.', 'event_espresso'), |
|
| 1408 | - $route |
|
| 1409 | - ); |
|
| 1410 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1411 | - return false; |
|
| 1412 | - } |
|
| 1413 | - if (! is_readable($view)) { |
|
| 1414 | - $msg = sprintf( |
|
| 1415 | - __( |
|
| 1416 | - 'The %s view file could not be found or is not readable due to file permissions.', |
|
| 1417 | - 'event_espresso' |
|
| 1418 | - ), |
|
| 1419 | - $view |
|
| 1420 | - ); |
|
| 1421 | - EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1422 | - return false; |
|
| 1423 | - } |
|
| 1424 | - EE_Config::$_module_view_map[ $key ][ $route ][ absint($status) ] = $view; |
|
| 1425 | - return true; |
|
| 1426 | - } |
|
| 1427 | - |
|
| 1428 | - |
|
| 1429 | - /** |
|
| 1430 | - * get_view - get view for route and status |
|
| 1431 | - * |
|
| 1432 | - * @access public |
|
| 1433 | - * @param string $route - "pretty" public alias for module method |
|
| 1434 | - * @param integer $status - integer value corresponding to status constant strings set in module parent class, |
|
| 1435 | - * allows different views to be served based on status |
|
| 1436 | - * @param string $key - url param key indicating a route is being called |
|
| 1437 | - * @return string |
|
| 1438 | - */ |
|
| 1439 | - public static function get_view($route = null, $status = 0, $key = 'ee') |
|
| 1440 | - { |
|
| 1441 | - do_action('AHEE__EE_Config__get_view__begin', $route, $status); |
|
| 1442 | - if (isset(EE_Config::$_module_view_map[ $key ][ $route ][ $status ])) { |
|
| 1443 | - return apply_filters( |
|
| 1444 | - 'FHEE__EE_Config__get_view', |
|
| 1445 | - EE_Config::$_module_view_map[ $key ][ $route ][ $status ], |
|
| 1446 | - $route, |
|
| 1447 | - $status |
|
| 1448 | - ); |
|
| 1449 | - } |
|
| 1450 | - return null; |
|
| 1451 | - } |
|
| 1452 | - |
|
| 1453 | - |
|
| 1454 | - public function update_addon_option_names() |
|
| 1455 | - { |
|
| 1456 | - update_option(EE_Config::ADDON_OPTION_NAMES, $this->_addon_option_names); |
|
| 1457 | - } |
|
| 1458 | - |
|
| 1459 | - |
|
| 1460 | - public function shutdown() |
|
| 1461 | - { |
|
| 1462 | - $this->update_addon_option_names(); |
|
| 1463 | - } |
|
| 1464 | - |
|
| 1465 | - |
|
| 1466 | - /** |
|
| 1467 | - * @return LegacyShortcodesManager |
|
| 1468 | - */ |
|
| 1469 | - public static function getLegacyShortcodesManager() |
|
| 1470 | - { |
|
| 1471 | - |
|
| 1472 | - if (! EE_Config::instance()->legacy_shortcodes_manager instanceof LegacyShortcodesManager) { |
|
| 1473 | - EE_Config::instance()->legacy_shortcodes_manager = new LegacyShortcodesManager( |
|
| 1474 | - EE_Registry::instance() |
|
| 1475 | - ); |
|
| 1476 | - } |
|
| 1477 | - return EE_Config::instance()->legacy_shortcodes_manager; |
|
| 1478 | - } |
|
| 1479 | - |
|
| 1480 | - |
|
| 1481 | - /** |
|
| 1482 | - * register_shortcode - makes core aware of this shortcode |
|
| 1483 | - * |
|
| 1484 | - * @deprecated 4.9.26 |
|
| 1485 | - * @param string $shortcode_path - full path up to and including shortcode folder |
|
| 1486 | - * @return bool |
|
| 1487 | - */ |
|
| 1488 | - public static function register_shortcode($shortcode_path = null) |
|
| 1489 | - { |
|
| 1490 | - EE_Error::doing_it_wrong( |
|
| 1491 | - __METHOD__, |
|
| 1492 | - __( |
|
| 1493 | - 'Usage is deprecated. Use \EventEspresso\core\services\shortcodes\LegacyShortcodesManager::registerShortcode() as direct replacement, or better yet, please see the new \EventEspresso\core\services\shortcodes\ShortcodesManager class.', |
|
| 1494 | - 'event_espresso' |
|
| 1495 | - ), |
|
| 1496 | - '4.9.26' |
|
| 1497 | - ); |
|
| 1498 | - return EE_Config::instance()->getLegacyShortcodesManager()->registerShortcode($shortcode_path); |
|
| 1499 | - } |
|
| 1500 | -} |
|
| 1501 | - |
|
| 1502 | -/** |
|
| 1503 | - * Base class used for config classes. These classes should generally not have |
|
| 1504 | - * magic functions in use, except we'll allow them to magically set and get stuff... |
|
| 1505 | - * basically, they should just be well-defined stdClasses |
|
| 1506 | - */ |
|
| 1507 | -class EE_Config_Base |
|
| 1508 | -{ |
|
| 1509 | - |
|
| 1510 | - /** |
|
| 1511 | - * Utility function for escaping the value of a property and returning. |
|
| 1512 | - * |
|
| 1513 | - * @param string $property property name (checks to see if exists). |
|
| 1514 | - * @return mixed if a detected type found return the escaped value, otherwise just the raw value is returned. |
|
| 1515 | - * @throws \EE_Error |
|
| 1516 | - */ |
|
| 1517 | - public function get_pretty($property) |
|
| 1518 | - { |
|
| 1519 | - if (! property_exists($this, $property)) { |
|
| 1520 | - throw new EE_Error( |
|
| 1521 | - sprintf( |
|
| 1522 | - __( |
|
| 1523 | - '%1$s::get_pretty() has been called with the property %2$s which does not exist on the %1$s config class.', |
|
| 1524 | - 'event_espresso' |
|
| 1525 | - ), |
|
| 1526 | - get_class($this), |
|
| 1527 | - $property |
|
| 1528 | - ) |
|
| 1529 | - ); |
|
| 1530 | - } |
|
| 1531 | - // just handling escaping of strings for now. |
|
| 1532 | - if (is_string($this->{$property})) { |
|
| 1533 | - return stripslashes($this->{$property}); |
|
| 1534 | - } |
|
| 1535 | - return $this->{$property}; |
|
| 1536 | - } |
|
| 1537 | - |
|
| 1538 | - |
|
| 1539 | - public function populate() |
|
| 1540 | - { |
|
| 1541 | - // grab defaults via a new instance of this class. |
|
| 1542 | - $class_name = get_class($this); |
|
| 1543 | - $defaults = new $class_name; |
|
| 1544 | - // loop through the properties for this class and see if they are set. If they are NOT, then grab the |
|
| 1545 | - // default from our $defaults object. |
|
| 1546 | - foreach (get_object_vars($defaults) as $property => $value) { |
|
| 1547 | - if ($this->{$property} === null) { |
|
| 1548 | - $this->{$property} = $value; |
|
| 1549 | - } |
|
| 1550 | - } |
|
| 1551 | - // cleanup |
|
| 1552 | - unset($defaults); |
|
| 1553 | - } |
|
| 1554 | - |
|
| 1555 | - |
|
| 1556 | - /** |
|
| 1557 | - * __isset |
|
| 1558 | - * |
|
| 1559 | - * @param $a |
|
| 1560 | - * @return bool |
|
| 1561 | - */ |
|
| 1562 | - public function __isset($a) |
|
| 1563 | - { |
|
| 1564 | - return false; |
|
| 1565 | - } |
|
| 1566 | - |
|
| 1567 | - |
|
| 1568 | - /** |
|
| 1569 | - * __unset |
|
| 1570 | - * |
|
| 1571 | - * @param $a |
|
| 1572 | - * @return bool |
|
| 1573 | - */ |
|
| 1574 | - public function __unset($a) |
|
| 1575 | - { |
|
| 1576 | - return false; |
|
| 1577 | - } |
|
| 1578 | - |
|
| 1579 | - |
|
| 1580 | - /** |
|
| 1581 | - * __clone |
|
| 1582 | - */ |
|
| 1583 | - public function __clone() |
|
| 1584 | - { |
|
| 1585 | - } |
|
| 1586 | - |
|
| 1587 | - |
|
| 1588 | - /** |
|
| 1589 | - * __wakeup |
|
| 1590 | - */ |
|
| 1591 | - public function __wakeup() |
|
| 1592 | - { |
|
| 1593 | - } |
|
| 1594 | - |
|
| 1595 | - |
|
| 1596 | - /** |
|
| 1597 | - * __destruct |
|
| 1598 | - */ |
|
| 1599 | - public function __destruct() |
|
| 1600 | - { |
|
| 1601 | - } |
|
| 1602 | -} |
|
| 1603 | - |
|
| 1604 | -/** |
|
| 1605 | - * Class for defining what's in the EE_Config relating to registration settings |
|
| 1606 | - */ |
|
| 1607 | -class EE_Core_Config extends EE_Config_Base |
|
| 1608 | -{ |
|
| 1609 | - |
|
| 1610 | - public $current_blog_id; |
|
| 1611 | - |
|
| 1612 | - public $ee_ueip_optin; |
|
| 1613 | - |
|
| 1614 | - public $ee_ueip_has_notified; |
|
| 1615 | - |
|
| 1616 | - /** |
|
| 1617 | - * Not to be confused with the 4 critical page variables (See |
|
| 1618 | - * get_critical_pages_array()), this is just an array of wp posts that have EE |
|
| 1619 | - * shortcodes in them. Keys are slugs, values are arrays with only 1 element: where the key is the shortcode |
|
| 1620 | - * in the page, and the value is the page's ID. The key 'posts' is basically a duplicate of this same array. |
|
| 1621 | - * |
|
| 1622 | - * @var array |
|
| 1623 | - */ |
|
| 1624 | - public $post_shortcodes; |
|
| 1625 | - |
|
| 1626 | - public $module_route_map; |
|
| 1627 | - |
|
| 1628 | - public $module_forward_map; |
|
| 1629 | - |
|
| 1630 | - public $module_view_map; |
|
| 1631 | - |
|
| 1632 | - /** |
|
| 1633 | - * The next 4 vars are the IDs of critical EE pages. |
|
| 1634 | - * |
|
| 1635 | - * @var int |
|
| 1636 | - */ |
|
| 1637 | - public $reg_page_id; |
|
| 1638 | - |
|
| 1639 | - public $txn_page_id; |
|
| 1640 | - |
|
| 1641 | - public $thank_you_page_id; |
|
| 1642 | - |
|
| 1643 | - public $cancel_page_id; |
|
| 1644 | - |
|
| 1645 | - /** |
|
| 1646 | - * The next 4 vars are the URLs of critical EE pages. |
|
| 1647 | - * |
|
| 1648 | - * @var int |
|
| 1649 | - */ |
|
| 1650 | - public $reg_page_url; |
|
| 1651 | - |
|
| 1652 | - public $txn_page_url; |
|
| 1653 | - |
|
| 1654 | - public $thank_you_page_url; |
|
| 1655 | - |
|
| 1656 | - public $cancel_page_url; |
|
| 1657 | - |
|
| 1658 | - /** |
|
| 1659 | - * The next vars relate to the custom slugs for EE CPT routes |
|
| 1660 | - */ |
|
| 1661 | - public $event_cpt_slug; |
|
| 1662 | - |
|
| 1663 | - /** |
|
| 1664 | - * This caches the _ee_ueip_option in case this config is reset in the same |
|
| 1665 | - * request across blog switches in a multisite context. |
|
| 1666 | - * Avoids extra queries to the db for this option. |
|
| 1667 | - * |
|
| 1668 | - * @var bool |
|
| 1669 | - */ |
|
| 1670 | - public static $ee_ueip_option; |
|
| 1671 | - |
|
| 1672 | - |
|
| 1673 | - /** |
|
| 1674 | - * class constructor |
|
| 1675 | - * |
|
| 1676 | - * @access public |
|
| 1677 | - */ |
|
| 1678 | - public function __construct() |
|
| 1679 | - { |
|
| 1680 | - // set default organization settings |
|
| 1681 | - $this->current_blog_id = get_current_blog_id(); |
|
| 1682 | - $this->current_blog_id = $this->current_blog_id === null ? 1 : $this->current_blog_id; |
|
| 1683 | - $this->ee_ueip_optin = $this->_get_main_ee_ueip_optin(); |
|
| 1684 | - $this->ee_ueip_has_notified = is_main_site() ? get_option('ee_ueip_has_notified', false) : true; |
|
| 1685 | - $this->post_shortcodes = array(); |
|
| 1686 | - $this->module_route_map = array(); |
|
| 1687 | - $this->module_forward_map = array(); |
|
| 1688 | - $this->module_view_map = array(); |
|
| 1689 | - // critical EE page IDs |
|
| 1690 | - $this->reg_page_id = 0; |
|
| 1691 | - $this->txn_page_id = 0; |
|
| 1692 | - $this->thank_you_page_id = 0; |
|
| 1693 | - $this->cancel_page_id = 0; |
|
| 1694 | - // critical EE page URLs |
|
| 1695 | - $this->reg_page_url = ''; |
|
| 1696 | - $this->txn_page_url = ''; |
|
| 1697 | - $this->thank_you_page_url = ''; |
|
| 1698 | - $this->cancel_page_url = ''; |
|
| 1699 | - // cpt slugs |
|
| 1700 | - $this->event_cpt_slug = __('events', 'event_espresso'); |
|
| 1701 | - // ueip constant check |
|
| 1702 | - if (defined('EE_DISABLE_UXIP') && EE_DISABLE_UXIP) { |
|
| 1703 | - $this->ee_ueip_optin = false; |
|
| 1704 | - $this->ee_ueip_has_notified = true; |
|
| 1705 | - } |
|
| 1706 | - } |
|
| 1707 | - |
|
| 1708 | - |
|
| 1709 | - /** |
|
| 1710 | - * @return array |
|
| 1711 | - */ |
|
| 1712 | - public function get_critical_pages_array() |
|
| 1713 | - { |
|
| 1714 | - return array( |
|
| 1715 | - $this->reg_page_id, |
|
| 1716 | - $this->txn_page_id, |
|
| 1717 | - $this->thank_you_page_id, |
|
| 1718 | - $this->cancel_page_id, |
|
| 1719 | - ); |
|
| 1720 | - } |
|
| 1721 | - |
|
| 1722 | - |
|
| 1723 | - /** |
|
| 1724 | - * @return array |
|
| 1725 | - */ |
|
| 1726 | - public function get_critical_pages_shortcodes_array() |
|
| 1727 | - { |
|
| 1728 | - return array( |
|
| 1729 | - $this->reg_page_id => 'ESPRESSO_CHECKOUT', |
|
| 1730 | - $this->txn_page_id => 'ESPRESSO_TXN_PAGE', |
|
| 1731 | - $this->thank_you_page_id => 'ESPRESSO_THANK_YOU', |
|
| 1732 | - $this->cancel_page_id => 'ESPRESSO_CANCELLED', |
|
| 1733 | - ); |
|
| 1734 | - } |
|
| 1735 | - |
|
| 1736 | - |
|
| 1737 | - /** |
|
| 1738 | - * gets/returns URL for EE reg_page |
|
| 1739 | - * |
|
| 1740 | - * @access public |
|
| 1741 | - * @return string |
|
| 1742 | - */ |
|
| 1743 | - public function reg_page_url() |
|
| 1744 | - { |
|
| 1745 | - if (! $this->reg_page_url) { |
|
| 1746 | - $this->reg_page_url = add_query_arg( |
|
| 1747 | - array('uts' => time()), |
|
| 1748 | - get_permalink($this->reg_page_id) |
|
| 1749 | - ) . '#checkout'; |
|
| 1750 | - } |
|
| 1751 | - return $this->reg_page_url; |
|
| 1752 | - } |
|
| 1753 | - |
|
| 1754 | - |
|
| 1755 | - /** |
|
| 1756 | - * gets/returns URL for EE txn_page |
|
| 1757 | - * |
|
| 1758 | - * @param array $query_args like what gets passed to |
|
| 1759 | - * add_query_arg() as the first argument |
|
| 1760 | - * @access public |
|
| 1761 | - * @return string |
|
| 1762 | - */ |
|
| 1763 | - public function txn_page_url($query_args = array()) |
|
| 1764 | - { |
|
| 1765 | - if (! $this->txn_page_url) { |
|
| 1766 | - $this->txn_page_url = get_permalink($this->txn_page_id); |
|
| 1767 | - } |
|
| 1768 | - if ($query_args) { |
|
| 1769 | - return add_query_arg($query_args, $this->txn_page_url); |
|
| 1770 | - } else { |
|
| 1771 | - return $this->txn_page_url; |
|
| 1772 | - } |
|
| 1773 | - } |
|
| 1774 | - |
|
| 1775 | - |
|
| 1776 | - /** |
|
| 1777 | - * gets/returns URL for EE thank_you_page |
|
| 1778 | - * |
|
| 1779 | - * @param array $query_args like what gets passed to |
|
| 1780 | - * add_query_arg() as the first argument |
|
| 1781 | - * @access public |
|
| 1782 | - * @return string |
|
| 1783 | - */ |
|
| 1784 | - public function thank_you_page_url($query_args = array()) |
|
| 1785 | - { |
|
| 1786 | - if (! $this->thank_you_page_url) { |
|
| 1787 | - $this->thank_you_page_url = get_permalink($this->thank_you_page_id); |
|
| 1788 | - } |
|
| 1789 | - if ($query_args) { |
|
| 1790 | - return add_query_arg($query_args, $this->thank_you_page_url); |
|
| 1791 | - } else { |
|
| 1792 | - return $this->thank_you_page_url; |
|
| 1793 | - } |
|
| 1794 | - } |
|
| 1795 | - |
|
| 1796 | - |
|
| 1797 | - /** |
|
| 1798 | - * gets/returns URL for EE cancel_page |
|
| 1799 | - * |
|
| 1800 | - * @access public |
|
| 1801 | - * @return string |
|
| 1802 | - */ |
|
| 1803 | - public function cancel_page_url() |
|
| 1804 | - { |
|
| 1805 | - if (! $this->cancel_page_url) { |
|
| 1806 | - $this->cancel_page_url = get_permalink($this->cancel_page_id); |
|
| 1807 | - } |
|
| 1808 | - return $this->cancel_page_url; |
|
| 1809 | - } |
|
| 1810 | - |
|
| 1811 | - |
|
| 1812 | - /** |
|
| 1813 | - * Resets all critical page urls to their original state. Used primarily by the __sleep() magic method currently. |
|
| 1814 | - * |
|
| 1815 | - * @since 4.7.5 |
|
| 1816 | - */ |
|
| 1817 | - protected function _reset_urls() |
|
| 1818 | - { |
|
| 1819 | - $this->reg_page_url = ''; |
|
| 1820 | - $this->txn_page_url = ''; |
|
| 1821 | - $this->cancel_page_url = ''; |
|
| 1822 | - $this->thank_you_page_url = ''; |
|
| 1823 | - } |
|
| 1824 | - |
|
| 1825 | - |
|
| 1826 | - /** |
|
| 1827 | - * Used to return what the optin value is set for the EE User Experience Program. |
|
| 1828 | - * This accounts for multisite and this value being requested for a subsite. In multisite, the value is set |
|
| 1829 | - * on the main site only. |
|
| 1830 | - * |
|
| 1831 | - * @return mixed|void |
|
| 1832 | - */ |
|
| 1833 | - protected function _get_main_ee_ueip_optin() |
|
| 1834 | - { |
|
| 1835 | - // if this is the main site then we can just bypass our direct query. |
|
| 1836 | - if (is_main_site()) { |
|
| 1837 | - return get_option('ee_ueip_optin', false); |
|
| 1838 | - } |
|
| 1839 | - // is this already cached for this request? If so use it. |
|
| 1840 | - if (! empty(EE_Core_Config::$ee_ueip_option)) { |
|
| 1841 | - return EE_Core_Config::$ee_ueip_option; |
|
| 1842 | - } |
|
| 1843 | - global $wpdb; |
|
| 1844 | - $current_network_main_site = is_multisite() ? get_current_site() : null; |
|
| 1845 | - $current_main_site_id = ! empty($current_network_main_site) ? $current_network_main_site->blog_id : 1; |
|
| 1846 | - $option = 'ee_ueip_optin'; |
|
| 1847 | - // set correct table for query |
|
| 1848 | - $table_name = $wpdb->get_blog_prefix($current_main_site_id) . 'options'; |
|
| 1849 | - // rather than getting blog option for the $current_main_site_id, we do a direct $wpdb query because |
|
| 1850 | - // get_blog_option() does a switch_to_blog an that could cause infinite recursion because EE_Core_Config might be |
|
| 1851 | - // re-constructed on the blog switch. Note, we are still executing any core wp filters on this option retrieval. |
|
| 1852 | - // this bit of code is basically a direct copy of get_option without any caching because we are NOT switched to the blog |
|
| 1853 | - // for the purpose of caching. |
|
| 1854 | - $pre = apply_filters('pre_option_' . $option, false, $option); |
|
| 1855 | - if (false !== $pre) { |
|
| 1856 | - EE_Core_Config::$ee_ueip_option = $pre; |
|
| 1857 | - return EE_Core_Config::$ee_ueip_option; |
|
| 1858 | - } |
|
| 1859 | - $row = $wpdb->get_row( |
|
| 1860 | - $wpdb->prepare( |
|
| 1861 | - "SELECT option_value FROM $table_name WHERE option_name = %s LIMIT 1", |
|
| 1862 | - $option |
|
| 1863 | - ) |
|
| 1864 | - ); |
|
| 1865 | - if (is_object($row)) { |
|
| 1866 | - $value = $row->option_value; |
|
| 1867 | - } else { // option does not exist so use default. |
|
| 1868 | - return apply_filters('default_option_' . $option, false, $option); |
|
| 1869 | - } |
|
| 1870 | - EE_Core_Config::$ee_ueip_option = apply_filters('option_' . $option, maybe_unserialize($value), $option); |
|
| 1871 | - return EE_Core_Config::$ee_ueip_option; |
|
| 1872 | - } |
|
| 1873 | - |
|
| 1874 | - |
|
| 1875 | - /** |
|
| 1876 | - * Utility function for escaping the value of a property and returning. |
|
| 1877 | - * |
|
| 1878 | - * @param string $property property name (checks to see if exists). |
|
| 1879 | - * @return mixed if a detected type found return the escaped value, otherwise just the raw value is returned. |
|
| 1880 | - * @throws \EE_Error |
|
| 1881 | - */ |
|
| 1882 | - public function get_pretty($property) |
|
| 1883 | - { |
|
| 1884 | - if ($property === 'ee_ueip_optin') { |
|
| 1885 | - return $this->ee_ueip_optin ? 'yes' : 'no'; |
|
| 1886 | - } |
|
| 1887 | - return parent::get_pretty($property); |
|
| 1888 | - } |
|
| 1889 | - |
|
| 1890 | - |
|
| 1891 | - /** |
|
| 1892 | - * Currently used to ensure critical page urls have initial values saved to the db instead of any current set values |
|
| 1893 | - * on the object. |
|
| 1894 | - * |
|
| 1895 | - * @return array |
|
| 1896 | - */ |
|
| 1897 | - public function __sleep() |
|
| 1898 | - { |
|
| 1899 | - // reset all url properties |
|
| 1900 | - $this->_reset_urls(); |
|
| 1901 | - // return what to save to db |
|
| 1902 | - return array_keys(get_object_vars($this)); |
|
| 1903 | - } |
|
| 1904 | -} |
|
| 1905 | - |
|
| 1906 | -/** |
|
| 1907 | - * Config class for storing info on the Organization |
|
| 1908 | - */ |
|
| 1909 | -class EE_Organization_Config extends EE_Config_Base |
|
| 1910 | -{ |
|
| 1911 | - |
|
| 1912 | - /** |
|
| 1913 | - * @var string $name |
|
| 1914 | - * eg EE4.1 |
|
| 1915 | - */ |
|
| 1916 | - public $name; |
|
| 1917 | - |
|
| 1918 | - /** |
|
| 1919 | - * @var string $address_1 |
|
| 1920 | - * eg 123 Onna Road |
|
| 1921 | - */ |
|
| 1922 | - public $address_1; |
|
| 1923 | - |
|
| 1924 | - /** |
|
| 1925 | - * @var string $address_2 |
|
| 1926 | - * eg PO Box 123 |
|
| 1927 | - */ |
|
| 1928 | - public $address_2; |
|
| 1929 | - |
|
| 1930 | - /** |
|
| 1931 | - * @var string $city |
|
| 1932 | - * eg Inna City |
|
| 1933 | - */ |
|
| 1934 | - public $city; |
|
| 1935 | - |
|
| 1936 | - /** |
|
| 1937 | - * @var int $STA_ID |
|
| 1938 | - * eg 4 |
|
| 1939 | - */ |
|
| 1940 | - public $STA_ID; |
|
| 1941 | - |
|
| 1942 | - /** |
|
| 1943 | - * @var string $CNT_ISO |
|
| 1944 | - * eg US |
|
| 1945 | - */ |
|
| 1946 | - public $CNT_ISO; |
|
| 1947 | - |
|
| 1948 | - /** |
|
| 1949 | - * @var string $zip |
|
| 1950 | - * eg 12345 or V1A 2B3 |
|
| 1951 | - */ |
|
| 1952 | - public $zip; |
|
| 1953 | - |
|
| 1954 | - /** |
|
| 1955 | - * @var string $email |
|
| 1956 | - * eg [email protected] |
|
| 1957 | - */ |
|
| 1958 | - public $email; |
|
| 1959 | - |
|
| 1960 | - /** |
|
| 1961 | - * @var string $phone |
|
| 1962 | - * eg. 111-111-1111 |
|
| 1963 | - */ |
|
| 1964 | - public $phone; |
|
| 1965 | - |
|
| 1966 | - /** |
|
| 1967 | - * @var string $vat |
|
| 1968 | - * VAT/Tax Number |
|
| 1969 | - */ |
|
| 1970 | - public $vat; |
|
| 1971 | - |
|
| 1972 | - /** |
|
| 1973 | - * @var string $logo_url |
|
| 1974 | - * eg http://www.somedomain.com/wp-content/uploads/kittehs.jpg |
|
| 1975 | - */ |
|
| 1976 | - public $logo_url; |
|
| 1977 | - |
|
| 1978 | - /** |
|
| 1979 | - * The below are all various properties for holding links to organization social network profiles |
|
| 1980 | - * |
|
| 1981 | - * @var string |
|
| 1982 | - */ |
|
| 1983 | - /** |
|
| 1984 | - * facebook (facebook.com/profile.name) |
|
| 1985 | - * |
|
| 1986 | - * @var string |
|
| 1987 | - */ |
|
| 1988 | - public $facebook; |
|
| 1989 | - |
|
| 1990 | - /** |
|
| 1991 | - * twitter (twitter.com/twitter_handle) |
|
| 1992 | - * |
|
| 1993 | - * @var string |
|
| 1994 | - */ |
|
| 1995 | - public $twitter; |
|
| 1996 | - |
|
| 1997 | - /** |
|
| 1998 | - * linkedin (linkedin.com/in/profile_name) |
|
| 1999 | - * |
|
| 2000 | - * @var string |
|
| 2001 | - */ |
|
| 2002 | - public $linkedin; |
|
| 2003 | - |
|
| 2004 | - /** |
|
| 2005 | - * pinterest (www.pinterest.com/profile_name) |
|
| 2006 | - * |
|
| 2007 | - * @var string |
|
| 2008 | - */ |
|
| 2009 | - public $pinterest; |
|
| 2010 | - |
|
| 2011 | - /** |
|
| 2012 | - * google+ (google.com/+profileName) |
|
| 2013 | - * |
|
| 2014 | - * @var string |
|
| 2015 | - */ |
|
| 2016 | - public $google; |
|
| 2017 | - |
|
| 2018 | - /** |
|
| 2019 | - * instagram (instagram.com/handle) |
|
| 2020 | - * |
|
| 2021 | - * @var string |
|
| 2022 | - */ |
|
| 2023 | - public $instagram; |
|
| 2024 | - |
|
| 2025 | - |
|
| 2026 | - /** |
|
| 2027 | - * class constructor |
|
| 2028 | - * |
|
| 2029 | - * @access public |
|
| 2030 | - */ |
|
| 2031 | - public function __construct() |
|
| 2032 | - { |
|
| 2033 | - // set default organization settings |
|
| 2034 | - // decode HTML entities from the WP blogname, because it's stored in the DB with HTML entities encoded |
|
| 2035 | - $this->name = wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES); |
|
| 2036 | - $this->address_1 = '123 Onna Road'; |
|
| 2037 | - $this->address_2 = 'PO Box 123'; |
|
| 2038 | - $this->city = 'Inna City'; |
|
| 2039 | - $this->STA_ID = 4; |
|
| 2040 | - $this->CNT_ISO = 'US'; |
|
| 2041 | - $this->zip = '12345'; |
|
| 2042 | - $this->email = get_bloginfo('admin_email'); |
|
| 2043 | - $this->phone = ''; |
|
| 2044 | - $this->vat = '123456789'; |
|
| 2045 | - $this->logo_url = ''; |
|
| 2046 | - $this->facebook = ''; |
|
| 2047 | - $this->twitter = ''; |
|
| 2048 | - $this->linkedin = ''; |
|
| 2049 | - $this->pinterest = ''; |
|
| 2050 | - $this->google = ''; |
|
| 2051 | - $this->instagram = ''; |
|
| 2052 | - } |
|
| 2053 | -} |
|
| 2054 | - |
|
| 2055 | -/** |
|
| 2056 | - * Class for defining what's in the EE_Config relating to currency |
|
| 2057 | - */ |
|
| 2058 | -class EE_Currency_Config extends EE_Config_Base |
|
| 2059 | -{ |
|
| 2060 | - |
|
| 2061 | - /** |
|
| 2062 | - * @var string $code |
|
| 2063 | - * eg 'US' |
|
| 2064 | - */ |
|
| 2065 | - public $code; |
|
| 2066 | - |
|
| 2067 | - /** |
|
| 2068 | - * @var string $name |
|
| 2069 | - * eg 'Dollar' |
|
| 2070 | - */ |
|
| 2071 | - public $name; |
|
| 2072 | - |
|
| 2073 | - /** |
|
| 2074 | - * plural name |
|
| 2075 | - * |
|
| 2076 | - * @var string $plural |
|
| 2077 | - * eg 'Dollars' |
|
| 2078 | - */ |
|
| 2079 | - public $plural; |
|
| 2080 | - |
|
| 2081 | - /** |
|
| 2082 | - * currency sign |
|
| 2083 | - * |
|
| 2084 | - * @var string $sign |
|
| 2085 | - * eg '$' |
|
| 2086 | - */ |
|
| 2087 | - public $sign; |
|
| 2088 | - |
|
| 2089 | - /** |
|
| 2090 | - * Whether the currency sign should come before the number or not |
|
| 2091 | - * |
|
| 2092 | - * @var boolean $sign_b4 |
|
| 2093 | - */ |
|
| 2094 | - public $sign_b4; |
|
| 2095 | - |
|
| 2096 | - /** |
|
| 2097 | - * How many digits should come after the decimal place |
|
| 2098 | - * |
|
| 2099 | - * @var int $dec_plc |
|
| 2100 | - */ |
|
| 2101 | - public $dec_plc; |
|
| 2102 | - |
|
| 2103 | - /** |
|
| 2104 | - * Symbol to use for decimal mark |
|
| 2105 | - * |
|
| 2106 | - * @var string $dec_mrk |
|
| 2107 | - * eg '.' |
|
| 2108 | - */ |
|
| 2109 | - public $dec_mrk; |
|
| 2110 | - |
|
| 2111 | - /** |
|
| 2112 | - * Symbol to use for thousands |
|
| 2113 | - * |
|
| 2114 | - * @var string $thsnds |
|
| 2115 | - * eg ',' |
|
| 2116 | - */ |
|
| 2117 | - public $thsnds; |
|
| 2118 | - |
|
| 2119 | - |
|
| 2120 | - /** |
|
| 2121 | - * class constructor |
|
| 2122 | - * |
|
| 2123 | - * @access public |
|
| 2124 | - * @param string $CNT_ISO |
|
| 2125 | - * @throws \EE_Error |
|
| 2126 | - */ |
|
| 2127 | - public function __construct($CNT_ISO = '') |
|
| 2128 | - { |
|
| 2129 | - /** @var \EventEspresso\core\services\database\TableAnalysis $table_analysis */ |
|
| 2130 | - $table_analysis = EE_Registry::instance()->create('TableAnalysis', array(), true); |
|
| 2131 | - // get country code from organization settings or use default |
|
| 2132 | - $ORG_CNT = isset(EE_Registry::instance()->CFG->organization) |
|
| 2133 | - && EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config |
|
| 2134 | - ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 2135 | - : ''; |
|
| 2136 | - // but override if requested |
|
| 2137 | - $CNT_ISO = ! empty($CNT_ISO) ? $CNT_ISO : $ORG_CNT; |
|
| 2138 | - // so if that all went well, and we are not in M-Mode (cuz you can't query the db in M-Mode) and double-check the countries table exists |
|
| 2139 | - if (! empty($CNT_ISO) |
|
| 2140 | - && EE_Maintenance_Mode::instance()->models_can_query() |
|
| 2141 | - && $table_analysis->tableExists(EE_Registry::instance()->load_model('Country')->table()) |
|
| 2142 | - ) { |
|
| 2143 | - // retrieve the country settings from the db, just in case they have been customized |
|
| 2144 | - $country = EE_Registry::instance()->load_model('Country')->get_one_by_ID($CNT_ISO); |
|
| 2145 | - if ($country instanceof EE_Country) { |
|
| 2146 | - $this->code = $country->currency_code(); // currency code: USD, CAD, EUR |
|
| 2147 | - $this->name = $country->currency_name_single(); // Dollar |
|
| 2148 | - $this->plural = $country->currency_name_plural(); // Dollars |
|
| 2149 | - $this->sign = $country->currency_sign(); // currency sign: $ |
|
| 2150 | - $this->sign_b4 = $country->currency_sign_before( |
|
| 2151 | - ); // currency sign before or after: $TRUE or FALSE$ |
|
| 2152 | - $this->dec_plc = $country->currency_decimal_places(); // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2153 | - $this->dec_mrk = $country->currency_decimal_mark( |
|
| 2154 | - ); // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2155 | - $this->thsnds = $country->currency_thousands_separator( |
|
| 2156 | - ); // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2157 | - } |
|
| 2158 | - } |
|
| 2159 | - // fallback to hardcoded defaults, in case the above failed |
|
| 2160 | - if (empty($this->code)) { |
|
| 2161 | - // set default currency settings |
|
| 2162 | - $this->code = 'USD'; // currency code: USD, CAD, EUR |
|
| 2163 | - $this->name = __('Dollar', 'event_espresso'); // Dollar |
|
| 2164 | - $this->plural = __('Dollars', 'event_espresso'); // Dollars |
|
| 2165 | - $this->sign = '$'; // currency sign: $ |
|
| 2166 | - $this->sign_b4 = true; // currency sign before or after: $TRUE or FALSE$ |
|
| 2167 | - $this->dec_plc = 2; // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2168 | - $this->dec_mrk = '.'; // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2169 | - $this->thsnds = ','; // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2170 | - } |
|
| 2171 | - } |
|
| 2172 | -} |
|
| 2173 | - |
|
| 2174 | -/** |
|
| 2175 | - * Class for defining what's in the EE_Config relating to registration settings |
|
| 2176 | - */ |
|
| 2177 | -class EE_Registration_Config extends EE_Config_Base |
|
| 2178 | -{ |
|
| 2179 | - |
|
| 2180 | - /** |
|
| 2181 | - * Default registration status |
|
| 2182 | - * |
|
| 2183 | - * @var string $default_STS_ID |
|
| 2184 | - * eg 'RPP' |
|
| 2185 | - */ |
|
| 2186 | - public $default_STS_ID; |
|
| 2187 | - |
|
| 2188 | - /** |
|
| 2189 | - * For new events, this will be the default value for the maximum number of tickets (equivalent to maximum number of |
|
| 2190 | - * registrations) |
|
| 2191 | - * |
|
| 2192 | - * @var int |
|
| 2193 | - */ |
|
| 2194 | - public $default_maximum_number_of_tickets; |
|
| 2195 | - |
|
| 2196 | - /** |
|
| 2197 | - * level of validation to apply to email addresses |
|
| 2198 | - * |
|
| 2199 | - * @var string $email_validation_level |
|
| 2200 | - * options: 'basic', 'wp_default', 'i18n', 'i18n_dns' |
|
| 2201 | - */ |
|
| 2202 | - public $email_validation_level; |
|
| 2203 | - |
|
| 2204 | - /** |
|
| 2205 | - * whether or not to show alternate payment options during the reg process if payment status is pending |
|
| 2206 | - * |
|
| 2207 | - * @var boolean $show_pending_payment_options |
|
| 2208 | - */ |
|
| 2209 | - public $show_pending_payment_options; |
|
| 2210 | - |
|
| 2211 | - /** |
|
| 2212 | - * Whether to skip the registration confirmation page |
|
| 2213 | - * |
|
| 2214 | - * @var boolean $skip_reg_confirmation |
|
| 2215 | - */ |
|
| 2216 | - public $skip_reg_confirmation; |
|
| 2217 | - |
|
| 2218 | - /** |
|
| 2219 | - * an array of SPCO reg steps where: |
|
| 2220 | - * the keys denotes the reg step order |
|
| 2221 | - * each element consists of an array with the following elements: |
|
| 2222 | - * "file_path" => the file path to the EE_SPCO_Reg_Step class |
|
| 2223 | - * "class_name" => the specific EE_SPCO_Reg_Step child class name |
|
| 2224 | - * "slug" => the URL param used to trigger the reg step |
|
| 2225 | - * |
|
| 2226 | - * @var array $reg_steps |
|
| 2227 | - */ |
|
| 2228 | - public $reg_steps; |
|
| 2229 | - |
|
| 2230 | - /** |
|
| 2231 | - * Whether registration confirmation should be the last page of SPCO |
|
| 2232 | - * |
|
| 2233 | - * @var boolean $reg_confirmation_last |
|
| 2234 | - */ |
|
| 2235 | - public $reg_confirmation_last; |
|
| 2236 | - |
|
| 2237 | - /** |
|
| 2238 | - * Whether or not to enable the EE Bot Trap |
|
| 2239 | - * |
|
| 2240 | - * @var boolean $use_bot_trap |
|
| 2241 | - */ |
|
| 2242 | - public $use_bot_trap; |
|
| 2243 | - |
|
| 2244 | - /** |
|
| 2245 | - * Whether or not to encrypt some data sent by the EE Bot Trap |
|
| 2246 | - * |
|
| 2247 | - * @var boolean $use_encryption |
|
| 2248 | - */ |
|
| 2249 | - public $use_encryption; |
|
| 2250 | - |
|
| 2251 | - /** |
|
| 2252 | - * Whether or not to use ReCaptcha |
|
| 2253 | - * |
|
| 2254 | - * @var boolean $use_captcha |
|
| 2255 | - */ |
|
| 2256 | - public $use_captcha; |
|
| 2257 | - |
|
| 2258 | - /** |
|
| 2259 | - * ReCaptcha Theme |
|
| 2260 | - * |
|
| 2261 | - * @var string $recaptcha_theme |
|
| 2262 | - * options: 'dark', 'light', 'invisible' |
|
| 2263 | - */ |
|
| 2264 | - public $recaptcha_theme; |
|
| 2265 | - |
|
| 2266 | - /** |
|
| 2267 | - * ReCaptcha Badge - determines the position of the reCAPTCHA badge if using Invisible ReCaptcha. |
|
| 2268 | - * |
|
| 2269 | - * @var string $recaptcha_badge |
|
| 2270 | - * options: 'bottomright', 'bottomleft', 'inline' |
|
| 2271 | - */ |
|
| 2272 | - public $recaptcha_badge; |
|
| 17 | + const OPTION_NAME = 'ee_config'; |
|
| 18 | + |
|
| 19 | + const LOG_NAME = 'ee_config_log'; |
|
| 20 | + |
|
| 21 | + const LOG_LENGTH = 100; |
|
| 22 | + |
|
| 23 | + const ADDON_OPTION_NAMES = 'ee_config_option_names'; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * instance of the EE_Config object |
|
| 27 | + * |
|
| 28 | + * @var EE_Config $_instance |
|
| 29 | + * @access private |
|
| 30 | + */ |
|
| 31 | + private static $_instance; |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * @var boolean $_logging_enabled |
|
| 35 | + */ |
|
| 36 | + private static $_logging_enabled = false; |
|
| 37 | + |
|
| 38 | + /** |
|
| 39 | + * @var LegacyShortcodesManager $legacy_shortcodes_manager |
|
| 40 | + */ |
|
| 41 | + private $legacy_shortcodes_manager; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * An StdClass whose property names are addon slugs, |
|
| 45 | + * and values are their config classes |
|
| 46 | + * |
|
| 47 | + * @var StdClass |
|
| 48 | + */ |
|
| 49 | + public $addons; |
|
| 50 | + |
|
| 51 | + /** |
|
| 52 | + * @var EE_Admin_Config |
|
| 53 | + */ |
|
| 54 | + public $admin; |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * @var EE_Core_Config |
|
| 58 | + */ |
|
| 59 | + public $core; |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * @var EE_Currency_Config |
|
| 63 | + */ |
|
| 64 | + public $currency; |
|
| 65 | + |
|
| 66 | + /** |
|
| 67 | + * @var EE_Organization_Config |
|
| 68 | + */ |
|
| 69 | + public $organization; |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * @var EE_Registration_Config |
|
| 73 | + */ |
|
| 74 | + public $registration; |
|
| 75 | + |
|
| 76 | + /** |
|
| 77 | + * @var EE_Template_Config |
|
| 78 | + */ |
|
| 79 | + public $template_settings; |
|
| 80 | + |
|
| 81 | + /** |
|
| 82 | + * Holds EE environment values. |
|
| 83 | + * |
|
| 84 | + * @var EE_Environment_Config |
|
| 85 | + */ |
|
| 86 | + public $environment; |
|
| 87 | + |
|
| 88 | + /** |
|
| 89 | + * settings pertaining to Google maps |
|
| 90 | + * |
|
| 91 | + * @var EE_Map_Config |
|
| 92 | + */ |
|
| 93 | + public $map_settings; |
|
| 94 | + |
|
| 95 | + /** |
|
| 96 | + * settings pertaining to Taxes |
|
| 97 | + * |
|
| 98 | + * @var EE_Tax_Config |
|
| 99 | + */ |
|
| 100 | + public $tax_settings; |
|
| 101 | + |
|
| 102 | + /** |
|
| 103 | + * Settings pertaining to global messages settings. |
|
| 104 | + * |
|
| 105 | + * @var EE_Messages_Config |
|
| 106 | + */ |
|
| 107 | + public $messages; |
|
| 108 | + |
|
| 109 | + /** |
|
| 110 | + * @deprecated |
|
| 111 | + * @var EE_Gateway_Config |
|
| 112 | + */ |
|
| 113 | + public $gateway; |
|
| 114 | + |
|
| 115 | + /** |
|
| 116 | + * @var array $_addon_option_names |
|
| 117 | + * @access private |
|
| 118 | + */ |
|
| 119 | + private $_addon_option_names = array(); |
|
| 120 | + |
|
| 121 | + /** |
|
| 122 | + * @var array $_module_route_map |
|
| 123 | + * @access private |
|
| 124 | + */ |
|
| 125 | + private static $_module_route_map = array(); |
|
| 126 | + |
|
| 127 | + /** |
|
| 128 | + * @var array $_module_forward_map |
|
| 129 | + * @access private |
|
| 130 | + */ |
|
| 131 | + private static $_module_forward_map = array(); |
|
| 132 | + |
|
| 133 | + /** |
|
| 134 | + * @var array $_module_view_map |
|
| 135 | + * @access private |
|
| 136 | + */ |
|
| 137 | + private static $_module_view_map = array(); |
|
| 138 | + |
|
| 139 | + |
|
| 140 | + /** |
|
| 141 | + * @singleton method used to instantiate class object |
|
| 142 | + * @access public |
|
| 143 | + * @return EE_Config instance |
|
| 144 | + */ |
|
| 145 | + public static function instance() |
|
| 146 | + { |
|
| 147 | + // check if class object is instantiated, and instantiated properly |
|
| 148 | + if (! self::$_instance instanceof EE_Config) { |
|
| 149 | + self::$_instance = new self(); |
|
| 150 | + } |
|
| 151 | + return self::$_instance; |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + |
|
| 155 | + /** |
|
| 156 | + * Resets the config |
|
| 157 | + * |
|
| 158 | + * @param bool $hard_reset if TRUE, sets EE_CONFig back to its original settings in the database. If FALSE |
|
| 159 | + * (default) leaves the database alone, and merely resets the EE_Config object to |
|
| 160 | + * reflect its state in the database |
|
| 161 | + * @param boolean $reinstantiate if TRUE (default) call instance() and return it. Otherwise, just leave |
|
| 162 | + * $_instance as NULL. Useful in case you want to forget about the old instance on |
|
| 163 | + * EE_Config, but might not be ready to instantiate EE_Config currently (eg if the |
|
| 164 | + * site was put into maintenance mode) |
|
| 165 | + * @return EE_Config |
|
| 166 | + */ |
|
| 167 | + public static function reset($hard_reset = false, $reinstantiate = true) |
|
| 168 | + { |
|
| 169 | + if (self::$_instance instanceof EE_Config) { |
|
| 170 | + if ($hard_reset) { |
|
| 171 | + self::$_instance->legacy_shortcodes_manager = null; |
|
| 172 | + self::$_instance->_addon_option_names = array(); |
|
| 173 | + self::$_instance->_initialize_config(); |
|
| 174 | + self::$_instance->update_espresso_config(); |
|
| 175 | + } |
|
| 176 | + self::$_instance->update_addon_option_names(); |
|
| 177 | + } |
|
| 178 | + self::$_instance = null; |
|
| 179 | + // we don't need to reset the static properties imo because those should |
|
| 180 | + // only change when a module is added or removed. Currently we don't |
|
| 181 | + // support removing a module during a request when it previously existed |
|
| 182 | + if ($reinstantiate) { |
|
| 183 | + return self::instance(); |
|
| 184 | + } else { |
|
| 185 | + return null; |
|
| 186 | + } |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + |
|
| 190 | + /** |
|
| 191 | + * class constructor |
|
| 192 | + * |
|
| 193 | + * @access private |
|
| 194 | + */ |
|
| 195 | + private function __construct() |
|
| 196 | + { |
|
| 197 | + do_action('AHEE__EE_Config__construct__begin', $this); |
|
| 198 | + EE_Config::$_logging_enabled = apply_filters('FHEE__EE_Config___construct__logging_enabled', false); |
|
| 199 | + // setup empty config classes |
|
| 200 | + $this->_initialize_config(); |
|
| 201 | + // load existing EE site settings |
|
| 202 | + $this->_load_core_config(); |
|
| 203 | + // confirm everything loaded correctly and set filtered defaults if not |
|
| 204 | + $this->_verify_config(); |
|
| 205 | + // register shortcodes and modules |
|
| 206 | + add_action( |
|
| 207 | + 'AHEE__EE_System__register_shortcodes_modules_and_widgets', |
|
| 208 | + array($this, 'register_shortcodes_and_modules'), |
|
| 209 | + 999 |
|
| 210 | + ); |
|
| 211 | + // initialize shortcodes and modules |
|
| 212 | + add_action('AHEE__EE_System__core_loaded_and_ready', array($this, 'initialize_shortcodes_and_modules')); |
|
| 213 | + // register widgets |
|
| 214 | + add_action('widgets_init', array($this, 'widgets_init'), 10); |
|
| 215 | + // shutdown |
|
| 216 | + add_action('shutdown', array($this, 'shutdown'), 10); |
|
| 217 | + // construct__end hook |
|
| 218 | + do_action('AHEE__EE_Config__construct__end', $this); |
|
| 219 | + // hardcoded hack |
|
| 220 | + $this->template_settings->current_espresso_theme = 'Espresso_Arabica_2014'; |
|
| 221 | + } |
|
| 222 | + |
|
| 223 | + |
|
| 224 | + /** |
|
| 225 | + * @return boolean |
|
| 226 | + */ |
|
| 227 | + public static function logging_enabled() |
|
| 228 | + { |
|
| 229 | + return self::$_logging_enabled; |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + |
|
| 233 | + /** |
|
| 234 | + * use to get the current theme if needed from static context |
|
| 235 | + * |
|
| 236 | + * @return string current theme set. |
|
| 237 | + */ |
|
| 238 | + public static function get_current_theme() |
|
| 239 | + { |
|
| 240 | + return isset(self::$_instance->template_settings->current_espresso_theme) |
|
| 241 | + ? self::$_instance->template_settings->current_espresso_theme : 'Espresso_Arabica_2014'; |
|
| 242 | + } |
|
| 243 | + |
|
| 244 | + |
|
| 245 | + /** |
|
| 246 | + * _initialize_config |
|
| 247 | + * |
|
| 248 | + * @access private |
|
| 249 | + * @return void |
|
| 250 | + */ |
|
| 251 | + private function _initialize_config() |
|
| 252 | + { |
|
| 253 | + EE_Config::trim_log(); |
|
| 254 | + // set defaults |
|
| 255 | + $this->_addon_option_names = get_option(EE_Config::ADDON_OPTION_NAMES, array()); |
|
| 256 | + $this->addons = new stdClass(); |
|
| 257 | + // set _module_route_map |
|
| 258 | + EE_Config::$_module_route_map = array(); |
|
| 259 | + // set _module_forward_map |
|
| 260 | + EE_Config::$_module_forward_map = array(); |
|
| 261 | + // set _module_view_map |
|
| 262 | + EE_Config::$_module_view_map = array(); |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + |
|
| 266 | + /** |
|
| 267 | + * load core plugin configuration |
|
| 268 | + * |
|
| 269 | + * @access private |
|
| 270 | + * @return void |
|
| 271 | + */ |
|
| 272 | + private function _load_core_config() |
|
| 273 | + { |
|
| 274 | + // load_core_config__start hook |
|
| 275 | + do_action('AHEE__EE_Config___load_core_config__start', $this); |
|
| 276 | + $espresso_config = $this->get_espresso_config(); |
|
| 277 | + foreach ($espresso_config as $config => $settings) { |
|
| 278 | + // load_core_config__start hook |
|
| 279 | + $settings = apply_filters( |
|
| 280 | + 'FHEE__EE_Config___load_core_config__config_settings', |
|
| 281 | + $settings, |
|
| 282 | + $config, |
|
| 283 | + $this |
|
| 284 | + ); |
|
| 285 | + if (is_object($settings) && property_exists($this, $config)) { |
|
| 286 | + $this->{$config} = apply_filters('FHEE__EE_Config___load_core_config__' . $config, $settings); |
|
| 287 | + // call configs populate method to ensure any defaults are set for empty values. |
|
| 288 | + if (method_exists($settings, 'populate')) { |
|
| 289 | + $this->{$config}->populate(); |
|
| 290 | + } |
|
| 291 | + if (method_exists($settings, 'do_hooks')) { |
|
| 292 | + $this->{$config}->do_hooks(); |
|
| 293 | + } |
|
| 294 | + } |
|
| 295 | + } |
|
| 296 | + if (apply_filters('FHEE__EE_Config___load_core_config__update_espresso_config', false)) { |
|
| 297 | + $this->update_espresso_config(); |
|
| 298 | + } |
|
| 299 | + // load_core_config__end hook |
|
| 300 | + do_action('AHEE__EE_Config___load_core_config__end', $this); |
|
| 301 | + } |
|
| 302 | + |
|
| 303 | + |
|
| 304 | + /** |
|
| 305 | + * _verify_config |
|
| 306 | + * |
|
| 307 | + * @access protected |
|
| 308 | + * @return void |
|
| 309 | + */ |
|
| 310 | + protected function _verify_config() |
|
| 311 | + { |
|
| 312 | + $this->core = $this->core instanceof EE_Core_Config |
|
| 313 | + ? $this->core |
|
| 314 | + : new EE_Core_Config(); |
|
| 315 | + $this->core = apply_filters('FHEE__EE_Config___initialize_config__core', $this->core); |
|
| 316 | + $this->organization = $this->organization instanceof EE_Organization_Config |
|
| 317 | + ? $this->organization |
|
| 318 | + : new EE_Organization_Config(); |
|
| 319 | + $this->organization = apply_filters( |
|
| 320 | + 'FHEE__EE_Config___initialize_config__organization', |
|
| 321 | + $this->organization |
|
| 322 | + ); |
|
| 323 | + $this->currency = $this->currency instanceof EE_Currency_Config |
|
| 324 | + ? $this->currency |
|
| 325 | + : new EE_Currency_Config(); |
|
| 326 | + $this->currency = apply_filters('FHEE__EE_Config___initialize_config__currency', $this->currency); |
|
| 327 | + $this->registration = $this->registration instanceof EE_Registration_Config |
|
| 328 | + ? $this->registration |
|
| 329 | + : new EE_Registration_Config(); |
|
| 330 | + $this->registration = apply_filters( |
|
| 331 | + 'FHEE__EE_Config___initialize_config__registration', |
|
| 332 | + $this->registration |
|
| 333 | + ); |
|
| 334 | + $this->admin = $this->admin instanceof EE_Admin_Config |
|
| 335 | + ? $this->admin |
|
| 336 | + : new EE_Admin_Config(); |
|
| 337 | + $this->admin = apply_filters('FHEE__EE_Config___initialize_config__admin', $this->admin); |
|
| 338 | + $this->template_settings = $this->template_settings instanceof EE_Template_Config |
|
| 339 | + ? $this->template_settings |
|
| 340 | + : new EE_Template_Config(); |
|
| 341 | + $this->template_settings = apply_filters( |
|
| 342 | + 'FHEE__EE_Config___initialize_config__template_settings', |
|
| 343 | + $this->template_settings |
|
| 344 | + ); |
|
| 345 | + $this->map_settings = $this->map_settings instanceof EE_Map_Config |
|
| 346 | + ? $this->map_settings |
|
| 347 | + : new EE_Map_Config(); |
|
| 348 | + $this->map_settings = apply_filters( |
|
| 349 | + 'FHEE__EE_Config___initialize_config__map_settings', |
|
| 350 | + $this->map_settings |
|
| 351 | + ); |
|
| 352 | + $this->environment = $this->environment instanceof EE_Environment_Config |
|
| 353 | + ? $this->environment |
|
| 354 | + : new EE_Environment_Config(); |
|
| 355 | + $this->environment = apply_filters( |
|
| 356 | + 'FHEE__EE_Config___initialize_config__environment', |
|
| 357 | + $this->environment |
|
| 358 | + ); |
|
| 359 | + $this->tax_settings = $this->tax_settings instanceof EE_Tax_Config |
|
| 360 | + ? $this->tax_settings |
|
| 361 | + : new EE_Tax_Config(); |
|
| 362 | + $this->tax_settings = apply_filters( |
|
| 363 | + 'FHEE__EE_Config___initialize_config__tax_settings', |
|
| 364 | + $this->tax_settings |
|
| 365 | + ); |
|
| 366 | + $this->messages = apply_filters('FHEE__EE_Config__initialize_config__messages', $this->messages); |
|
| 367 | + $this->messages = $this->messages instanceof EE_Messages_Config |
|
| 368 | + ? $this->messages |
|
| 369 | + : new EE_Messages_Config(); |
|
| 370 | + $this->gateway = $this->gateway instanceof EE_Gateway_Config |
|
| 371 | + ? $this->gateway |
|
| 372 | + : new EE_Gateway_Config(); |
|
| 373 | + $this->gateway = apply_filters('FHEE__EE_Config___initialize_config__gateway', $this->gateway); |
|
| 374 | + $this->legacy_shortcodes_manager = null; |
|
| 375 | + } |
|
| 376 | + |
|
| 377 | + |
|
| 378 | + /** |
|
| 379 | + * get_espresso_config |
|
| 380 | + * |
|
| 381 | + * @access public |
|
| 382 | + * @return array of espresso config stuff |
|
| 383 | + */ |
|
| 384 | + public function get_espresso_config() |
|
| 385 | + { |
|
| 386 | + // grab espresso configuration |
|
| 387 | + return apply_filters( |
|
| 388 | + 'FHEE__EE_Config__get_espresso_config__CFG', |
|
| 389 | + get_option(EE_Config::OPTION_NAME, array()) |
|
| 390 | + ); |
|
| 391 | + } |
|
| 392 | + |
|
| 393 | + |
|
| 394 | + /** |
|
| 395 | + * double_check_config_comparison |
|
| 396 | + * |
|
| 397 | + * @access public |
|
| 398 | + * @param string $option |
|
| 399 | + * @param $old_value |
|
| 400 | + * @param $value |
|
| 401 | + */ |
|
| 402 | + public function double_check_config_comparison($option = '', $old_value, $value) |
|
| 403 | + { |
|
| 404 | + // make sure we're checking the ee config |
|
| 405 | + if ($option === EE_Config::OPTION_NAME) { |
|
| 406 | + // run a loose comparison of the old value against the new value for type and properties, |
|
| 407 | + // but NOT exact instance like WP update_option does (ie: NOT type safe comparison) |
|
| 408 | + if ($value != $old_value) { |
|
| 409 | + // if they are NOT the same, then remove the hook, |
|
| 410 | + // which means the subsequent update results will be based solely on the update query results |
|
| 411 | + // the reason we do this is because, as stated above, |
|
| 412 | + // WP update_option performs an exact instance comparison (===) on any update values passed to it |
|
| 413 | + // this happens PRIOR to serialization and any subsequent update. |
|
| 414 | + // If values are found to match their previous old value, |
|
| 415 | + // then WP bails before performing any update. |
|
| 416 | + // Since we are passing the EE_Config object, it is comparing the EXACT instance of the saved version |
|
| 417 | + // it just pulled from the db, with the one being passed to it (which will not match). |
|
| 418 | + // HOWEVER, once the object is serialized and passed off to MySQL to update, |
|
| 419 | + // MySQL MAY ALSO NOT perform the update because |
|
| 420 | + // the string it sees in the db looks the same as the new one it has been passed!!! |
|
| 421 | + // This results in the query returning an "affected rows" value of ZERO, |
|
| 422 | + // which gets returned immediately by WP update_option and looks like an error. |
|
| 423 | + remove_action('update_option', array($this, 'check_config_updated')); |
|
| 424 | + } |
|
| 425 | + } |
|
| 426 | + } |
|
| 427 | + |
|
| 428 | + |
|
| 429 | + /** |
|
| 430 | + * update_espresso_config |
|
| 431 | + * |
|
| 432 | + * @access public |
|
| 433 | + */ |
|
| 434 | + protected function _reset_espresso_addon_config() |
|
| 435 | + { |
|
| 436 | + $this->_addon_option_names = array(); |
|
| 437 | + foreach ($this->addons as $addon_name => $addon_config_obj) { |
|
| 438 | + $addon_config_obj = maybe_unserialize($addon_config_obj); |
|
| 439 | + if ($addon_config_obj instanceof EE_Config_Base) { |
|
| 440 | + $this->update_config('addons', $addon_name, $addon_config_obj, false); |
|
| 441 | + } |
|
| 442 | + $this->addons->{$addon_name} = null; |
|
| 443 | + } |
|
| 444 | + } |
|
| 445 | + |
|
| 446 | + |
|
| 447 | + /** |
|
| 448 | + * update_espresso_config |
|
| 449 | + * |
|
| 450 | + * @access public |
|
| 451 | + * @param bool $add_success |
|
| 452 | + * @param bool $add_error |
|
| 453 | + * @return bool |
|
| 454 | + */ |
|
| 455 | + public function update_espresso_config($add_success = false, $add_error = true) |
|
| 456 | + { |
|
| 457 | + // don't allow config updates during WP heartbeats |
|
| 458 | + if (\EE_Registry::instance()->REQ->get('action', '') === 'heartbeat') { |
|
| 459 | + return false; |
|
| 460 | + } |
|
| 461 | + // commented out the following re: https://events.codebasehq.com/projects/event-espresso/tickets/8197 |
|
| 462 | + // $clone = clone( self::$_instance ); |
|
| 463 | + // self::$_instance = NULL; |
|
| 464 | + do_action('AHEE__EE_Config__update_espresso_config__begin', $this); |
|
| 465 | + $this->_reset_espresso_addon_config(); |
|
| 466 | + // hook into update_option because that happens AFTER the ( $value === $old_value ) conditional |
|
| 467 | + // but BEFORE the actual update occurs |
|
| 468 | + add_action('update_option', array($this, 'double_check_config_comparison'), 1, 3); |
|
| 469 | + // don't want to persist legacy_shortcodes_manager, but don't want to lose it either |
|
| 470 | + $legacy_shortcodes_manager = $this->legacy_shortcodes_manager; |
|
| 471 | + $this->legacy_shortcodes_manager = null; |
|
| 472 | + // now update "ee_config" |
|
| 473 | + $saved = update_option(EE_Config::OPTION_NAME, $this); |
|
| 474 | + $this->legacy_shortcodes_manager = $legacy_shortcodes_manager; |
|
| 475 | + EE_Config::log(EE_Config::OPTION_NAME); |
|
| 476 | + // if not saved... check if the hook we just added still exists; |
|
| 477 | + // if it does, it means one of two things: |
|
| 478 | + // that update_option bailed at the($value === $old_value) conditional, |
|
| 479 | + // or... |
|
| 480 | + // the db update query returned 0 rows affected |
|
| 481 | + // (probably because the data value was the same from it's perspective) |
|
| 482 | + // so the existence of the hook means that a negative result from update_option is NOT an error, |
|
| 483 | + // but just means no update occurred, so don't display an error to the user. |
|
| 484 | + // BUT... if update_option returns FALSE, AND the hook is missing, |
|
| 485 | + // then it means that something truly went wrong |
|
| 486 | + $saved = ! $saved ? has_action('update_option', array($this, 'double_check_config_comparison')) : $saved; |
|
| 487 | + // remove our action since we don't want it in the system anymore |
|
| 488 | + remove_action('update_option', array($this, 'double_check_config_comparison'), 1); |
|
| 489 | + do_action('AHEE__EE_Config__update_espresso_config__end', $this, $saved); |
|
| 490 | + // self::$_instance = $clone; |
|
| 491 | + // unset( $clone ); |
|
| 492 | + // if config remains the same or was updated successfully |
|
| 493 | + if ($saved) { |
|
| 494 | + if ($add_success) { |
|
| 495 | + EE_Error::add_success( |
|
| 496 | + __('The Event Espresso Configuration Settings have been successfully updated.', 'event_espresso'), |
|
| 497 | + __FILE__, |
|
| 498 | + __FUNCTION__, |
|
| 499 | + __LINE__ |
|
| 500 | + ); |
|
| 501 | + } |
|
| 502 | + return true; |
|
| 503 | + } else { |
|
| 504 | + if ($add_error) { |
|
| 505 | + EE_Error::add_error( |
|
| 506 | + __('The Event Espresso Configuration Settings were not updated.', 'event_espresso'), |
|
| 507 | + __FILE__, |
|
| 508 | + __FUNCTION__, |
|
| 509 | + __LINE__ |
|
| 510 | + ); |
|
| 511 | + } |
|
| 512 | + return false; |
|
| 513 | + } |
|
| 514 | + } |
|
| 515 | + |
|
| 516 | + |
|
| 517 | + /** |
|
| 518 | + * _verify_config_params |
|
| 519 | + * |
|
| 520 | + * @access private |
|
| 521 | + * @param string $section |
|
| 522 | + * @param string $name |
|
| 523 | + * @param string $config_class |
|
| 524 | + * @param EE_Config_Base $config_obj |
|
| 525 | + * @param array $tests_to_run |
|
| 526 | + * @param bool $display_errors |
|
| 527 | + * @return bool TRUE on success, FALSE on fail |
|
| 528 | + */ |
|
| 529 | + private function _verify_config_params( |
|
| 530 | + $section = '', |
|
| 531 | + $name = '', |
|
| 532 | + $config_class = '', |
|
| 533 | + $config_obj = null, |
|
| 534 | + $tests_to_run = array(1, 2, 3, 4, 5, 6, 7, 8), |
|
| 535 | + $display_errors = true |
|
| 536 | + ) { |
|
| 537 | + try { |
|
| 538 | + foreach ($tests_to_run as $test) { |
|
| 539 | + switch ($test) { |
|
| 540 | + // TEST #1 : check that section was set |
|
| 541 | + case 1: |
|
| 542 | + if (empty($section)) { |
|
| 543 | + if ($display_errors) { |
|
| 544 | + throw new EE_Error( |
|
| 545 | + sprintf( |
|
| 546 | + __( |
|
| 547 | + 'No configuration section has been provided while attempting to save "%s".', |
|
| 548 | + 'event_espresso' |
|
| 549 | + ), |
|
| 550 | + $config_class |
|
| 551 | + ) |
|
| 552 | + ); |
|
| 553 | + } |
|
| 554 | + return false; |
|
| 555 | + } |
|
| 556 | + break; |
|
| 557 | + // TEST #2 : check that settings section exists |
|
| 558 | + case 2: |
|
| 559 | + if (! isset($this->{$section})) { |
|
| 560 | + if ($display_errors) { |
|
| 561 | + throw new EE_Error( |
|
| 562 | + sprintf( |
|
| 563 | + __('The "%s" configuration section does not exist.', 'event_espresso'), |
|
| 564 | + $section |
|
| 565 | + ) |
|
| 566 | + ); |
|
| 567 | + } |
|
| 568 | + return false; |
|
| 569 | + } |
|
| 570 | + break; |
|
| 571 | + // TEST #3 : check that section is the proper format |
|
| 572 | + case 3: |
|
| 573 | + if (! ($this->{$section} instanceof EE_Config_Base || $this->{$section} instanceof stdClass) |
|
| 574 | + ) { |
|
| 575 | + if ($display_errors) { |
|
| 576 | + throw new EE_Error( |
|
| 577 | + sprintf( |
|
| 578 | + __( |
|
| 579 | + 'The "%s" configuration settings have not been formatted correctly.', |
|
| 580 | + 'event_espresso' |
|
| 581 | + ), |
|
| 582 | + $section |
|
| 583 | + ) |
|
| 584 | + ); |
|
| 585 | + } |
|
| 586 | + return false; |
|
| 587 | + } |
|
| 588 | + break; |
|
| 589 | + // TEST #4 : check that config section name has been set |
|
| 590 | + case 4: |
|
| 591 | + if (empty($name)) { |
|
| 592 | + if ($display_errors) { |
|
| 593 | + throw new EE_Error( |
|
| 594 | + __( |
|
| 595 | + 'No name has been provided for the specific configuration section.', |
|
| 596 | + 'event_espresso' |
|
| 597 | + ) |
|
| 598 | + ); |
|
| 599 | + } |
|
| 600 | + return false; |
|
| 601 | + } |
|
| 602 | + break; |
|
| 603 | + // TEST #5 : check that a config class name has been set |
|
| 604 | + case 5: |
|
| 605 | + if (empty($config_class)) { |
|
| 606 | + if ($display_errors) { |
|
| 607 | + throw new EE_Error( |
|
| 608 | + __( |
|
| 609 | + 'No class name has been provided for the specific configuration section.', |
|
| 610 | + 'event_espresso' |
|
| 611 | + ) |
|
| 612 | + ); |
|
| 613 | + } |
|
| 614 | + return false; |
|
| 615 | + } |
|
| 616 | + break; |
|
| 617 | + // TEST #6 : verify config class is accessible |
|
| 618 | + case 6: |
|
| 619 | + if (! class_exists($config_class)) { |
|
| 620 | + if ($display_errors) { |
|
| 621 | + throw new EE_Error( |
|
| 622 | + sprintf( |
|
| 623 | + __( |
|
| 624 | + 'The "%s" class does not exist. Please ensure that an autoloader has been set for it.', |
|
| 625 | + 'event_espresso' |
|
| 626 | + ), |
|
| 627 | + $config_class |
|
| 628 | + ) |
|
| 629 | + ); |
|
| 630 | + } |
|
| 631 | + return false; |
|
| 632 | + } |
|
| 633 | + break; |
|
| 634 | + // TEST #7 : check that config has even been set |
|
| 635 | + case 7: |
|
| 636 | + if (! isset($this->{$section}->{$name})) { |
|
| 637 | + if ($display_errors) { |
|
| 638 | + throw new EE_Error( |
|
| 639 | + sprintf( |
|
| 640 | + __('No configuration has been set for "%1$s->%2$s".', 'event_espresso'), |
|
| 641 | + $section, |
|
| 642 | + $name |
|
| 643 | + ) |
|
| 644 | + ); |
|
| 645 | + } |
|
| 646 | + return false; |
|
| 647 | + } else { |
|
| 648 | + // and make sure it's not serialized |
|
| 649 | + $this->{$section}->{$name} = maybe_unserialize($this->{$section}->{$name}); |
|
| 650 | + } |
|
| 651 | + break; |
|
| 652 | + // TEST #8 : check that config is the requested type |
|
| 653 | + case 8: |
|
| 654 | + if (! $this->{$section}->{$name} instanceof $config_class) { |
|
| 655 | + if ($display_errors) { |
|
| 656 | + throw new EE_Error( |
|
| 657 | + sprintf( |
|
| 658 | + __( |
|
| 659 | + 'The configuration for "%1$s->%2$s" is not of the "%3$s" class.', |
|
| 660 | + 'event_espresso' |
|
| 661 | + ), |
|
| 662 | + $section, |
|
| 663 | + $name, |
|
| 664 | + $config_class |
|
| 665 | + ) |
|
| 666 | + ); |
|
| 667 | + } |
|
| 668 | + return false; |
|
| 669 | + } |
|
| 670 | + break; |
|
| 671 | + // TEST #9 : verify config object |
|
| 672 | + case 9: |
|
| 673 | + if (! $config_obj instanceof EE_Config_Base) { |
|
| 674 | + if ($display_errors) { |
|
| 675 | + throw new EE_Error( |
|
| 676 | + sprintf( |
|
| 677 | + __('The "%s" class is not an instance of EE_Config_Base.', 'event_espresso'), |
|
| 678 | + print_r($config_obj, true) |
|
| 679 | + ) |
|
| 680 | + ); |
|
| 681 | + } |
|
| 682 | + return false; |
|
| 683 | + } |
|
| 684 | + break; |
|
| 685 | + } |
|
| 686 | + } |
|
| 687 | + } catch (EE_Error $e) { |
|
| 688 | + $e->get_error(); |
|
| 689 | + } |
|
| 690 | + // you have successfully run the gauntlet |
|
| 691 | + return true; |
|
| 692 | + } |
|
| 693 | + |
|
| 694 | + |
|
| 695 | + /** |
|
| 696 | + * _generate_config_option_name |
|
| 697 | + * |
|
| 698 | + * @access protected |
|
| 699 | + * @param string $section |
|
| 700 | + * @param string $name |
|
| 701 | + * @return string |
|
| 702 | + */ |
|
| 703 | + private function _generate_config_option_name($section = '', $name = '') |
|
| 704 | + { |
|
| 705 | + return 'ee_config-' . strtolower($section . '-' . str_replace(array('EE_', 'EED_'), '', $name)); |
|
| 706 | + } |
|
| 707 | + |
|
| 708 | + |
|
| 709 | + /** |
|
| 710 | + * _set_config_class |
|
| 711 | + * ensures that a config class is set, either from a passed config class or one generated from the config name |
|
| 712 | + * |
|
| 713 | + * @access private |
|
| 714 | + * @param string $config_class |
|
| 715 | + * @param string $name |
|
| 716 | + * @return string |
|
| 717 | + */ |
|
| 718 | + private function _set_config_class($config_class = '', $name = '') |
|
| 719 | + { |
|
| 720 | + return ! empty($config_class) |
|
| 721 | + ? $config_class |
|
| 722 | + : str_replace(' ', '_', ucwords(str_replace('_', ' ', $name))) . '_Config'; |
|
| 723 | + } |
|
| 724 | + |
|
| 725 | + |
|
| 726 | + /** |
|
| 727 | + * set_config |
|
| 728 | + * |
|
| 729 | + * @access protected |
|
| 730 | + * @param string $section |
|
| 731 | + * @param string $name |
|
| 732 | + * @param string $config_class |
|
| 733 | + * @param EE_Config_Base $config_obj |
|
| 734 | + * @return EE_Config_Base |
|
| 735 | + */ |
|
| 736 | + public function set_config($section = '', $name = '', $config_class = '', EE_Config_Base $config_obj = null) |
|
| 737 | + { |
|
| 738 | + // ensure config class is set to something |
|
| 739 | + $config_class = $this->_set_config_class($config_class, $name); |
|
| 740 | + // run tests 1-4, 6, and 7 to verify all config params are set and valid |
|
| 741 | + if (! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 742 | + return null; |
|
| 743 | + } |
|
| 744 | + $config_option_name = $this->_generate_config_option_name($section, $name); |
|
| 745 | + // if the config option name hasn't been added yet to the list of option names we're tracking, then do so now |
|
| 746 | + if (! isset($this->_addon_option_names[ $config_option_name ])) { |
|
| 747 | + $this->_addon_option_names[ $config_option_name ] = $config_class; |
|
| 748 | + $this->update_addon_option_names(); |
|
| 749 | + } |
|
| 750 | + // verify the incoming config object but suppress errors |
|
| 751 | + if (! $this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), false)) { |
|
| 752 | + $config_obj = new $config_class(); |
|
| 753 | + } |
|
| 754 | + if (get_option($config_option_name)) { |
|
| 755 | + EE_Config::log($config_option_name); |
|
| 756 | + update_option($config_option_name, $config_obj); |
|
| 757 | + $this->{$section}->{$name} = $config_obj; |
|
| 758 | + return $this->{$section}->{$name}; |
|
| 759 | + } else { |
|
| 760 | + // create a wp-option for this config |
|
| 761 | + if (add_option($config_option_name, $config_obj, '', 'no')) { |
|
| 762 | + $this->{$section}->{$name} = maybe_unserialize($config_obj); |
|
| 763 | + return $this->{$section}->{$name}; |
|
| 764 | + } else { |
|
| 765 | + EE_Error::add_error( |
|
| 766 | + sprintf(__('The "%s" could not be saved to the database.', 'event_espresso'), $config_class), |
|
| 767 | + __FILE__, |
|
| 768 | + __FUNCTION__, |
|
| 769 | + __LINE__ |
|
| 770 | + ); |
|
| 771 | + return null; |
|
| 772 | + } |
|
| 773 | + } |
|
| 774 | + } |
|
| 775 | + |
|
| 776 | + |
|
| 777 | + /** |
|
| 778 | + * update_config |
|
| 779 | + * Important: the config object must ALREADY be set, otherwise this will produce an error. |
|
| 780 | + * |
|
| 781 | + * @access public |
|
| 782 | + * @param string $section |
|
| 783 | + * @param string $name |
|
| 784 | + * @param EE_Config_Base|string $config_obj |
|
| 785 | + * @param bool $throw_errors |
|
| 786 | + * @return bool |
|
| 787 | + */ |
|
| 788 | + public function update_config($section = '', $name = '', $config_obj = '', $throw_errors = true) |
|
| 789 | + { |
|
| 790 | + // don't allow config updates during WP heartbeats |
|
| 791 | + if (\EE_Registry::instance()->REQ->get('action', '') === 'heartbeat') { |
|
| 792 | + return false; |
|
| 793 | + } |
|
| 794 | + $config_obj = maybe_unserialize($config_obj); |
|
| 795 | + // get class name of the incoming object |
|
| 796 | + $config_class = get_class($config_obj); |
|
| 797 | + // run tests 1-5 and 9 to verify config |
|
| 798 | + if (! $this->_verify_config_params( |
|
| 799 | + $section, |
|
| 800 | + $name, |
|
| 801 | + $config_class, |
|
| 802 | + $config_obj, |
|
| 803 | + array(1, 2, 3, 4, 7, 9) |
|
| 804 | + ) |
|
| 805 | + ) { |
|
| 806 | + return false; |
|
| 807 | + } |
|
| 808 | + $config_option_name = $this->_generate_config_option_name($section, $name); |
|
| 809 | + // check if config object has been added to db by seeing if config option name is in $this->_addon_option_names array |
|
| 810 | + if (! isset($this->_addon_option_names[ $config_option_name ])) { |
|
| 811 | + // save new config to db |
|
| 812 | + if ($this->set_config($section, $name, $config_class, $config_obj)) { |
|
| 813 | + return true; |
|
| 814 | + } |
|
| 815 | + } else { |
|
| 816 | + // first check if the record already exists |
|
| 817 | + $existing_config = get_option($config_option_name); |
|
| 818 | + $config_obj = serialize($config_obj); |
|
| 819 | + // just return if db record is already up to date (NOT type safe comparison) |
|
| 820 | + if ($existing_config == $config_obj) { |
|
| 821 | + $this->{$section}->{$name} = $config_obj; |
|
| 822 | + return true; |
|
| 823 | + } elseif (update_option($config_option_name, $config_obj)) { |
|
| 824 | + EE_Config::log($config_option_name); |
|
| 825 | + // update wp-option for this config class |
|
| 826 | + $this->{$section}->{$name} = $config_obj; |
|
| 827 | + return true; |
|
| 828 | + } elseif ($throw_errors) { |
|
| 829 | + EE_Error::add_error( |
|
| 830 | + sprintf( |
|
| 831 | + __( |
|
| 832 | + 'The "%1$s" object stored at"%2$s" was not successfully updated in the database.', |
|
| 833 | + 'event_espresso' |
|
| 834 | + ), |
|
| 835 | + $config_class, |
|
| 836 | + 'EE_Config->' . $section . '->' . $name |
|
| 837 | + ), |
|
| 838 | + __FILE__, |
|
| 839 | + __FUNCTION__, |
|
| 840 | + __LINE__ |
|
| 841 | + ); |
|
| 842 | + } |
|
| 843 | + } |
|
| 844 | + return false; |
|
| 845 | + } |
|
| 846 | + |
|
| 847 | + |
|
| 848 | + /** |
|
| 849 | + * get_config |
|
| 850 | + * |
|
| 851 | + * @access public |
|
| 852 | + * @param string $section |
|
| 853 | + * @param string $name |
|
| 854 | + * @param string $config_class |
|
| 855 | + * @return mixed EE_Config_Base | NULL |
|
| 856 | + */ |
|
| 857 | + public function get_config($section = '', $name = '', $config_class = '') |
|
| 858 | + { |
|
| 859 | + // ensure config class is set to something |
|
| 860 | + $config_class = $this->_set_config_class($config_class, $name); |
|
| 861 | + // run tests 1-4, 6 and 7 to verify that all params have been set |
|
| 862 | + if (! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) { |
|
| 863 | + return null; |
|
| 864 | + } |
|
| 865 | + // now test if the requested config object exists, but suppress errors |
|
| 866 | + if ($this->_verify_config_params($section, $name, $config_class, null, array(7, 8), false)) { |
|
| 867 | + // config already exists, so pass it back |
|
| 868 | + return $this->{$section}->{$name}; |
|
| 869 | + } |
|
| 870 | + // load config option from db if it exists |
|
| 871 | + $config_obj = $this->get_config_option($this->_generate_config_option_name($section, $name)); |
|
| 872 | + // verify the newly retrieved config object, but suppress errors |
|
| 873 | + if ($this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), false)) { |
|
| 874 | + // config is good, so set it and pass it back |
|
| 875 | + $this->{$section}->{$name} = $config_obj; |
|
| 876 | + return $this->{$section}->{$name}; |
|
| 877 | + } |
|
| 878 | + // oops! $config_obj is not already set and does not exist in the db, so create a new one |
|
| 879 | + $config_obj = $this->set_config($section, $name, $config_class); |
|
| 880 | + // verify the newly created config object |
|
| 881 | + if ($this->_verify_config_params($section, $name, $config_class, $config_obj, array(9))) { |
|
| 882 | + return $this->{$section}->{$name}; |
|
| 883 | + } else { |
|
| 884 | + EE_Error::add_error( |
|
| 885 | + sprintf(__('The "%s" could not be retrieved from the database.', 'event_espresso'), $config_class), |
|
| 886 | + __FILE__, |
|
| 887 | + __FUNCTION__, |
|
| 888 | + __LINE__ |
|
| 889 | + ); |
|
| 890 | + } |
|
| 891 | + return null; |
|
| 892 | + } |
|
| 893 | + |
|
| 894 | + |
|
| 895 | + /** |
|
| 896 | + * get_config_option |
|
| 897 | + * |
|
| 898 | + * @access public |
|
| 899 | + * @param string $config_option_name |
|
| 900 | + * @return mixed EE_Config_Base | FALSE |
|
| 901 | + */ |
|
| 902 | + public function get_config_option($config_option_name = '') |
|
| 903 | + { |
|
| 904 | + // retrieve the wp-option for this config class. |
|
| 905 | + $config_option = maybe_unserialize(get_option($config_option_name, array())); |
|
| 906 | + if (empty($config_option)) { |
|
| 907 | + EE_Config::log($config_option_name . '-NOT-FOUND'); |
|
| 908 | + } |
|
| 909 | + return $config_option; |
|
| 910 | + } |
|
| 911 | + |
|
| 912 | + |
|
| 913 | + /** |
|
| 914 | + * log |
|
| 915 | + * |
|
| 916 | + * @param string $config_option_name |
|
| 917 | + */ |
|
| 918 | + public static function log($config_option_name = '') |
|
| 919 | + { |
|
| 920 | + if (EE_Config::logging_enabled() && ! empty($config_option_name)) { |
|
| 921 | + $config_log = get_option(EE_Config::LOG_NAME, array()); |
|
| 922 | + // copy incoming $_REQUEST and sanitize it so we can save it |
|
| 923 | + $_request = $_REQUEST; |
|
| 924 | + array_walk_recursive($_request, 'sanitize_text_field'); |
|
| 925 | + $config_log[ (string) microtime(true) ] = array( |
|
| 926 | + 'config_name' => $config_option_name, |
|
| 927 | + 'request' => $_request, |
|
| 928 | + ); |
|
| 929 | + update_option(EE_Config::LOG_NAME, $config_log); |
|
| 930 | + } |
|
| 931 | + } |
|
| 932 | + |
|
| 933 | + |
|
| 934 | + /** |
|
| 935 | + * trim_log |
|
| 936 | + * reduces the size of the config log to the length specified by EE_Config::LOG_LENGTH |
|
| 937 | + */ |
|
| 938 | + public static function trim_log() |
|
| 939 | + { |
|
| 940 | + if (! EE_Config::logging_enabled()) { |
|
| 941 | + return; |
|
| 942 | + } |
|
| 943 | + $config_log = maybe_unserialize(get_option(EE_Config::LOG_NAME, array())); |
|
| 944 | + $log_length = count($config_log); |
|
| 945 | + if ($log_length > EE_Config::LOG_LENGTH) { |
|
| 946 | + ksort($config_log); |
|
| 947 | + $config_log = array_slice($config_log, $log_length - EE_Config::LOG_LENGTH, null, true); |
|
| 948 | + update_option(EE_Config::LOG_NAME, $config_log); |
|
| 949 | + } |
|
| 950 | + } |
|
| 951 | + |
|
| 952 | + |
|
| 953 | + /** |
|
| 954 | + * get_page_for_posts |
|
| 955 | + * if the wp-option "show_on_front" is set to "page", then this is the post_name for the post set in the |
|
| 956 | + * wp-option "page_for_posts", or "posts" if no page is selected |
|
| 957 | + * |
|
| 958 | + * @access public |
|
| 959 | + * @return string |
|
| 960 | + */ |
|
| 961 | + public static function get_page_for_posts() |
|
| 962 | + { |
|
| 963 | + $page_for_posts = get_option('page_for_posts'); |
|
| 964 | + if (! $page_for_posts) { |
|
| 965 | + return 'posts'; |
|
| 966 | + } |
|
| 967 | + /** @type WPDB $wpdb */ |
|
| 968 | + global $wpdb; |
|
| 969 | + $SQL = "SELECT post_name from $wpdb->posts WHERE post_type='posts' OR post_type='page' AND post_status='publish' AND ID=%d"; |
|
| 970 | + return $wpdb->get_var($wpdb->prepare($SQL, $page_for_posts)); |
|
| 971 | + } |
|
| 972 | + |
|
| 973 | + |
|
| 974 | + /** |
|
| 975 | + * register_shortcodes_and_modules. |
|
| 976 | + * At this point, it's too early to tell if we're maintenance mode or not. |
|
| 977 | + * In fact, this is where we give modules a chance to let core know they exist |
|
| 978 | + * so they can help trigger maintenance mode if it's needed |
|
| 979 | + * |
|
| 980 | + * @access public |
|
| 981 | + * @return void |
|
| 982 | + */ |
|
| 983 | + public function register_shortcodes_and_modules() |
|
| 984 | + { |
|
| 985 | + // allow modules to set hooks for the rest of the system |
|
| 986 | + EE_Registry::instance()->modules = $this->_register_modules(); |
|
| 987 | + } |
|
| 988 | + |
|
| 989 | + |
|
| 990 | + /** |
|
| 991 | + * initialize_shortcodes_and_modules |
|
| 992 | + * meaning they can start adding their hooks to get stuff done |
|
| 993 | + * |
|
| 994 | + * @access public |
|
| 995 | + * @return void |
|
| 996 | + */ |
|
| 997 | + public function initialize_shortcodes_and_modules() |
|
| 998 | + { |
|
| 999 | + // allow modules to set hooks for the rest of the system |
|
| 1000 | + $this->_initialize_modules(); |
|
| 1001 | + } |
|
| 1002 | + |
|
| 1003 | + |
|
| 1004 | + /** |
|
| 1005 | + * widgets_init |
|
| 1006 | + * |
|
| 1007 | + * @access private |
|
| 1008 | + * @return void |
|
| 1009 | + */ |
|
| 1010 | + public function widgets_init() |
|
| 1011 | + { |
|
| 1012 | + // only init widgets on admin pages when not in complete maintenance, and |
|
| 1013 | + // on frontend when not in any maintenance mode |
|
| 1014 | + if (! EE_Maintenance_Mode::instance()->level() |
|
| 1015 | + || ( |
|
| 1016 | + is_admin() |
|
| 1017 | + && EE_Maintenance_Mode::instance()->level() !== EE_Maintenance_Mode::level_2_complete_maintenance |
|
| 1018 | + ) |
|
| 1019 | + ) { |
|
| 1020 | + // grab list of installed widgets |
|
| 1021 | + $widgets_to_register = glob(EE_WIDGETS . '*', GLOB_ONLYDIR); |
|
| 1022 | + // filter list of modules to register |
|
| 1023 | + $widgets_to_register = apply_filters( |
|
| 1024 | + 'FHEE__EE_Config__register_widgets__widgets_to_register', |
|
| 1025 | + $widgets_to_register |
|
| 1026 | + ); |
|
| 1027 | + if (! empty($widgets_to_register)) { |
|
| 1028 | + // cycle thru widget folders |
|
| 1029 | + foreach ($widgets_to_register as $widget_path) { |
|
| 1030 | + // add to list of installed widget modules |
|
| 1031 | + EE_Config::register_ee_widget($widget_path); |
|
| 1032 | + } |
|
| 1033 | + } |
|
| 1034 | + // filter list of installed modules |
|
| 1035 | + EE_Registry::instance()->widgets = apply_filters( |
|
| 1036 | + 'FHEE__EE_Config__register_widgets__installed_widgets', |
|
| 1037 | + EE_Registry::instance()->widgets |
|
| 1038 | + ); |
|
| 1039 | + } |
|
| 1040 | + } |
|
| 1041 | + |
|
| 1042 | + |
|
| 1043 | + /** |
|
| 1044 | + * register_ee_widget - makes core aware of this widget |
|
| 1045 | + * |
|
| 1046 | + * @access public |
|
| 1047 | + * @param string $widget_path - full path up to and including widget folder |
|
| 1048 | + * @return void |
|
| 1049 | + */ |
|
| 1050 | + public static function register_ee_widget($widget_path = null) |
|
| 1051 | + { |
|
| 1052 | + do_action('AHEE__EE_Config__register_widget__begin', $widget_path); |
|
| 1053 | + $widget_ext = '.widget.php'; |
|
| 1054 | + // make all separators match |
|
| 1055 | + $widget_path = rtrim(str_replace('/\\', DS, $widget_path), DS); |
|
| 1056 | + // does the file path INCLUDE the actual file name as part of the path ? |
|
| 1057 | + if (strpos($widget_path, $widget_ext) !== false) { |
|
| 1058 | + // grab and shortcode file name from directory name and break apart at dots |
|
| 1059 | + $file_name = explode('.', basename($widget_path)); |
|
| 1060 | + // take first segment from file name pieces and remove class prefix if it exists |
|
| 1061 | + $widget = strpos($file_name[0], 'EEW_') === 0 ? substr($file_name[0], 4) : $file_name[0]; |
|
| 1062 | + // sanitize shortcode directory name |
|
| 1063 | + $widget = sanitize_key($widget); |
|
| 1064 | + // now we need to rebuild the shortcode path |
|
| 1065 | + $widget_path = explode(DS, $widget_path); |
|
| 1066 | + // remove last segment |
|
| 1067 | + array_pop($widget_path); |
|
| 1068 | + // glue it back together |
|
| 1069 | + $widget_path = implode(DS, $widget_path); |
|
| 1070 | + } else { |
|
| 1071 | + // grab and sanitize widget directory name |
|
| 1072 | + $widget = sanitize_key(basename($widget_path)); |
|
| 1073 | + } |
|
| 1074 | + // create classname from widget directory name |
|
| 1075 | + $widget = str_replace(' ', '_', ucwords(str_replace('_', ' ', $widget))); |
|
| 1076 | + // add class prefix |
|
| 1077 | + $widget_class = 'EEW_' . $widget; |
|
| 1078 | + // does the widget exist ? |
|
| 1079 | + if (! is_readable($widget_path . DS . $widget_class . $widget_ext)) { |
|
| 1080 | + $msg = sprintf( |
|
| 1081 | + __( |
|
| 1082 | + 'The requested %s widget file could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', |
|
| 1083 | + 'event_espresso' |
|
| 1084 | + ), |
|
| 1085 | + $widget_class, |
|
| 1086 | + $widget_path . DS . $widget_class . $widget_ext |
|
| 1087 | + ); |
|
| 1088 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1089 | + return; |
|
| 1090 | + } |
|
| 1091 | + // load the widget class file |
|
| 1092 | + require_once($widget_path . DS . $widget_class . $widget_ext); |
|
| 1093 | + // verify that class exists |
|
| 1094 | + if (! class_exists($widget_class)) { |
|
| 1095 | + $msg = sprintf(__('The requested %s widget class does not exist.', 'event_espresso'), $widget_class); |
|
| 1096 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1097 | + return; |
|
| 1098 | + } |
|
| 1099 | + register_widget($widget_class); |
|
| 1100 | + // add to array of registered widgets |
|
| 1101 | + EE_Registry::instance()->widgets->{$widget_class} = $widget_path . DS . $widget_class . $widget_ext; |
|
| 1102 | + } |
|
| 1103 | + |
|
| 1104 | + |
|
| 1105 | + /** |
|
| 1106 | + * _register_modules |
|
| 1107 | + * |
|
| 1108 | + * @access private |
|
| 1109 | + * @return array |
|
| 1110 | + */ |
|
| 1111 | + private function _register_modules() |
|
| 1112 | + { |
|
| 1113 | + // grab list of installed modules |
|
| 1114 | + $modules_to_register = glob(EE_MODULES . '*', GLOB_ONLYDIR); |
|
| 1115 | + // filter list of modules to register |
|
| 1116 | + $modules_to_register = apply_filters( |
|
| 1117 | + 'FHEE__EE_Config__register_modules__modules_to_register', |
|
| 1118 | + $modules_to_register |
|
| 1119 | + ); |
|
| 1120 | + if (! empty($modules_to_register)) { |
|
| 1121 | + // loop through folders |
|
| 1122 | + foreach ($modules_to_register as $module_path) { |
|
| 1123 | + /**TEMPORARILY EXCLUDE gateways from modules for time being**/ |
|
| 1124 | + if ($module_path !== EE_MODULES . 'zzz-copy-this-module-template' |
|
| 1125 | + && $module_path !== EE_MODULES . 'gateways' |
|
| 1126 | + ) { |
|
| 1127 | + // add to list of installed modules |
|
| 1128 | + EE_Config::register_module($module_path); |
|
| 1129 | + } |
|
| 1130 | + } |
|
| 1131 | + } |
|
| 1132 | + // filter list of installed modules |
|
| 1133 | + return apply_filters( |
|
| 1134 | + 'FHEE__EE_Config___register_modules__installed_modules', |
|
| 1135 | + EE_Registry::instance()->modules |
|
| 1136 | + ); |
|
| 1137 | + } |
|
| 1138 | + |
|
| 1139 | + |
|
| 1140 | + /** |
|
| 1141 | + * register_module - makes core aware of this module |
|
| 1142 | + * |
|
| 1143 | + * @access public |
|
| 1144 | + * @param string $module_path - full path up to and including module folder |
|
| 1145 | + * @return bool |
|
| 1146 | + */ |
|
| 1147 | + public static function register_module($module_path = null) |
|
| 1148 | + { |
|
| 1149 | + do_action('AHEE__EE_Config__register_module__begin', $module_path); |
|
| 1150 | + $module_ext = '.module.php'; |
|
| 1151 | + // make all separators match |
|
| 1152 | + $module_path = str_replace(array('\\', '/'), DS, $module_path); |
|
| 1153 | + // does the file path INCLUDE the actual file name as part of the path ? |
|
| 1154 | + if (strpos($module_path, $module_ext) !== false) { |
|
| 1155 | + // grab and shortcode file name from directory name and break apart at dots |
|
| 1156 | + $module_file = explode('.', basename($module_path)); |
|
| 1157 | + // now we need to rebuild the shortcode path |
|
| 1158 | + $module_path = explode(DS, $module_path); |
|
| 1159 | + // remove last segment |
|
| 1160 | + array_pop($module_path); |
|
| 1161 | + // glue it back together |
|
| 1162 | + $module_path = implode(DS, $module_path) . DS; |
|
| 1163 | + // take first segment from file name pieces and sanitize it |
|
| 1164 | + $module = preg_replace('/[^a-zA-Z0-9_\-]/', '', $module_file[0]); |
|
| 1165 | + // ensure class prefix is added |
|
| 1166 | + $module_class = strpos($module, 'EED_') !== 0 ? 'EED_' . $module : $module; |
|
| 1167 | + } else { |
|
| 1168 | + // we need to generate the filename based off of the folder name |
|
| 1169 | + // grab and sanitize module name |
|
| 1170 | + $module = strtolower(basename($module_path)); |
|
| 1171 | + $module = preg_replace('/[^a-z0-9_\-]/', '', $module); |
|
| 1172 | + // like trailingslashit() |
|
| 1173 | + $module_path = rtrim($module_path, DS) . DS; |
|
| 1174 | + // create classname from module directory name |
|
| 1175 | + $module = str_replace(' ', '_', ucwords(str_replace('_', ' ', $module))); |
|
| 1176 | + // add class prefix |
|
| 1177 | + $module_class = 'EED_' . $module; |
|
| 1178 | + } |
|
| 1179 | + // does the module exist ? |
|
| 1180 | + if (! is_readable($module_path . DS . $module_class . $module_ext)) { |
|
| 1181 | + $msg = sprintf( |
|
| 1182 | + __( |
|
| 1183 | + 'The requested %s module file could not be found or is not readable due to file permissions.', |
|
| 1184 | + 'event_espresso' |
|
| 1185 | + ), |
|
| 1186 | + $module |
|
| 1187 | + ); |
|
| 1188 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1189 | + return false; |
|
| 1190 | + } |
|
| 1191 | + // load the module class file |
|
| 1192 | + require_once($module_path . $module_class . $module_ext); |
|
| 1193 | + // verify that class exists |
|
| 1194 | + if (! class_exists($module_class)) { |
|
| 1195 | + $msg = sprintf(__('The requested %s module class does not exist.', 'event_espresso'), $module_class); |
|
| 1196 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1197 | + return false; |
|
| 1198 | + } |
|
| 1199 | + // add to array of registered modules |
|
| 1200 | + EE_Registry::instance()->modules->{$module_class} = $module_path . $module_class . $module_ext; |
|
| 1201 | + do_action( |
|
| 1202 | + 'AHEE__EE_Config__register_module__complete', |
|
| 1203 | + $module_class, |
|
| 1204 | + EE_Registry::instance()->modules->{$module_class} |
|
| 1205 | + ); |
|
| 1206 | + return true; |
|
| 1207 | + } |
|
| 1208 | + |
|
| 1209 | + |
|
| 1210 | + /** |
|
| 1211 | + * _initialize_modules |
|
| 1212 | + * allow modules to set hooks for the rest of the system |
|
| 1213 | + * |
|
| 1214 | + * @access private |
|
| 1215 | + * @return void |
|
| 1216 | + */ |
|
| 1217 | + private function _initialize_modules() |
|
| 1218 | + { |
|
| 1219 | + // cycle thru shortcode folders |
|
| 1220 | + foreach (EE_Registry::instance()->modules as $module_class => $module_path) { |
|
| 1221 | + // fire the shortcode class's set_hooks methods in case it needs to hook into other parts of the system |
|
| 1222 | + // which set hooks ? |
|
| 1223 | + if (is_admin()) { |
|
| 1224 | + // fire immediately |
|
| 1225 | + call_user_func(array($module_class, 'set_hooks_admin')); |
|
| 1226 | + } else { |
|
| 1227 | + // delay until other systems are online |
|
| 1228 | + add_action( |
|
| 1229 | + 'AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons', |
|
| 1230 | + array($module_class, 'set_hooks') |
|
| 1231 | + ); |
|
| 1232 | + } |
|
| 1233 | + } |
|
| 1234 | + } |
|
| 1235 | + |
|
| 1236 | + |
|
| 1237 | + /** |
|
| 1238 | + * register_route - adds module method routes to route_map |
|
| 1239 | + * |
|
| 1240 | + * @access public |
|
| 1241 | + * @param string $route - "pretty" public alias for module method |
|
| 1242 | + * @param string $module - module name (classname without EED_ prefix) |
|
| 1243 | + * @param string $method_name - the actual module method to be routed to |
|
| 1244 | + * @param string $key - url param key indicating a route is being called |
|
| 1245 | + * @return bool |
|
| 1246 | + */ |
|
| 1247 | + public static function register_route($route = null, $module = null, $method_name = null, $key = 'ee') |
|
| 1248 | + { |
|
| 1249 | + do_action('AHEE__EE_Config__register_route__begin', $route, $module, $method_name); |
|
| 1250 | + $module = str_replace('EED_', '', $module); |
|
| 1251 | + $module_class = 'EED_' . $module; |
|
| 1252 | + if (! isset(EE_Registry::instance()->modules->{$module_class})) { |
|
| 1253 | + $msg = sprintf(__('The module %s has not been registered.', 'event_espresso'), $module); |
|
| 1254 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1255 | + return false; |
|
| 1256 | + } |
|
| 1257 | + if (empty($route)) { |
|
| 1258 | + $msg = sprintf(__('No route has been supplied.', 'event_espresso'), $route); |
|
| 1259 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1260 | + return false; |
|
| 1261 | + } |
|
| 1262 | + if (! method_exists('EED_' . $module, $method_name)) { |
|
| 1263 | + $msg = sprintf( |
|
| 1264 | + __('A valid class method for the %s route has not been supplied.', 'event_espresso'), |
|
| 1265 | + $route |
|
| 1266 | + ); |
|
| 1267 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1268 | + return false; |
|
| 1269 | + } |
|
| 1270 | + EE_Config::$_module_route_map[ $key ][ $route ] = array('EED_' . $module, $method_name); |
|
| 1271 | + return true; |
|
| 1272 | + } |
|
| 1273 | + |
|
| 1274 | + |
|
| 1275 | + /** |
|
| 1276 | + * get_route - get module method route |
|
| 1277 | + * |
|
| 1278 | + * @access public |
|
| 1279 | + * @param string $route - "pretty" public alias for module method |
|
| 1280 | + * @param string $key - url param key indicating a route is being called |
|
| 1281 | + * @return string |
|
| 1282 | + */ |
|
| 1283 | + public static function get_route($route = null, $key = 'ee') |
|
| 1284 | + { |
|
| 1285 | + do_action('AHEE__EE_Config__get_route__begin', $route); |
|
| 1286 | + $route = (string) apply_filters('FHEE__EE_Config__get_route', $route); |
|
| 1287 | + if (isset(EE_Config::$_module_route_map[ $key ][ $route ])) { |
|
| 1288 | + return EE_Config::$_module_route_map[ $key ][ $route ]; |
|
| 1289 | + } |
|
| 1290 | + return null; |
|
| 1291 | + } |
|
| 1292 | + |
|
| 1293 | + |
|
| 1294 | + /** |
|
| 1295 | + * get_routes - get ALL module method routes |
|
| 1296 | + * |
|
| 1297 | + * @access public |
|
| 1298 | + * @return array |
|
| 1299 | + */ |
|
| 1300 | + public static function get_routes() |
|
| 1301 | + { |
|
| 1302 | + return EE_Config::$_module_route_map; |
|
| 1303 | + } |
|
| 1304 | + |
|
| 1305 | + |
|
| 1306 | + /** |
|
| 1307 | + * register_forward - allows modules to forward request to another module for further processing |
|
| 1308 | + * |
|
| 1309 | + * @access public |
|
| 1310 | + * @param string $route - "pretty" public alias for module method |
|
| 1311 | + * @param integer $status - integer value corresponding to status constant strings set in module parent |
|
| 1312 | + * class, allows different forwards to be served based on status |
|
| 1313 | + * @param array|string $forward - function name or array( class, method ) |
|
| 1314 | + * @param string $key - url param key indicating a route is being called |
|
| 1315 | + * @return bool |
|
| 1316 | + */ |
|
| 1317 | + public static function register_forward($route = null, $status = 0, $forward = null, $key = 'ee') |
|
| 1318 | + { |
|
| 1319 | + do_action('AHEE__EE_Config__register_forward', $route, $status, $forward); |
|
| 1320 | + if (! isset(EE_Config::$_module_route_map[ $key ][ $route ]) || empty($route)) { |
|
| 1321 | + $msg = sprintf( |
|
| 1322 | + __('The module route %s for this forward has not been registered.', 'event_espresso'), |
|
| 1323 | + $route |
|
| 1324 | + ); |
|
| 1325 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1326 | + return false; |
|
| 1327 | + } |
|
| 1328 | + if (empty($forward)) { |
|
| 1329 | + $msg = sprintf(__('No forwarding route has been supplied.', 'event_espresso'), $route); |
|
| 1330 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1331 | + return false; |
|
| 1332 | + } |
|
| 1333 | + if (is_array($forward)) { |
|
| 1334 | + if (! isset($forward[1])) { |
|
| 1335 | + $msg = sprintf( |
|
| 1336 | + __('A class method for the %s forwarding route has not been supplied.', 'event_espresso'), |
|
| 1337 | + $route |
|
| 1338 | + ); |
|
| 1339 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1340 | + return false; |
|
| 1341 | + } |
|
| 1342 | + if (! method_exists($forward[0], $forward[1])) { |
|
| 1343 | + $msg = sprintf( |
|
| 1344 | + __('The class method %s for the %s forwarding route is in invalid.', 'event_espresso'), |
|
| 1345 | + $forward[1], |
|
| 1346 | + $route |
|
| 1347 | + ); |
|
| 1348 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1349 | + return false; |
|
| 1350 | + } |
|
| 1351 | + } elseif (! function_exists($forward)) { |
|
| 1352 | + $msg = sprintf( |
|
| 1353 | + __('The function %s for the %s forwarding route is in invalid.', 'event_espresso'), |
|
| 1354 | + $forward, |
|
| 1355 | + $route |
|
| 1356 | + ); |
|
| 1357 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1358 | + return false; |
|
| 1359 | + } |
|
| 1360 | + EE_Config::$_module_forward_map[ $key ][ $route ][ absint($status) ] = $forward; |
|
| 1361 | + return true; |
|
| 1362 | + } |
|
| 1363 | + |
|
| 1364 | + |
|
| 1365 | + /** |
|
| 1366 | + * get_forward - get forwarding route |
|
| 1367 | + * |
|
| 1368 | + * @access public |
|
| 1369 | + * @param string $route - "pretty" public alias for module method |
|
| 1370 | + * @param integer $status - integer value corresponding to status constant strings set in module parent class, |
|
| 1371 | + * allows different forwards to be served based on status |
|
| 1372 | + * @param string $key - url param key indicating a route is being called |
|
| 1373 | + * @return string |
|
| 1374 | + */ |
|
| 1375 | + public static function get_forward($route = null, $status = 0, $key = 'ee') |
|
| 1376 | + { |
|
| 1377 | + do_action('AHEE__EE_Config__get_forward__begin', $route, $status); |
|
| 1378 | + if (isset(EE_Config::$_module_forward_map[ $key ][ $route ][ $status ])) { |
|
| 1379 | + return apply_filters( |
|
| 1380 | + 'FHEE__EE_Config__get_forward', |
|
| 1381 | + EE_Config::$_module_forward_map[ $key ][ $route ][ $status ], |
|
| 1382 | + $route, |
|
| 1383 | + $status |
|
| 1384 | + ); |
|
| 1385 | + } |
|
| 1386 | + return null; |
|
| 1387 | + } |
|
| 1388 | + |
|
| 1389 | + |
|
| 1390 | + /** |
|
| 1391 | + * register_forward - allows modules to specify different view templates for different method routes and status |
|
| 1392 | + * results |
|
| 1393 | + * |
|
| 1394 | + * @access public |
|
| 1395 | + * @param string $route - "pretty" public alias for module method |
|
| 1396 | + * @param integer $status - integer value corresponding to status constant strings set in module parent class, |
|
| 1397 | + * allows different views to be served based on status |
|
| 1398 | + * @param string $view |
|
| 1399 | + * @param string $key - url param key indicating a route is being called |
|
| 1400 | + * @return bool |
|
| 1401 | + */ |
|
| 1402 | + public static function register_view($route = null, $status = 0, $view = null, $key = 'ee') |
|
| 1403 | + { |
|
| 1404 | + do_action('AHEE__EE_Config__register_view__begin', $route, $status, $view); |
|
| 1405 | + if (! isset(EE_Config::$_module_route_map[ $key ][ $route ]) || empty($route)) { |
|
| 1406 | + $msg = sprintf( |
|
| 1407 | + __('The module route %s for this view has not been registered.', 'event_espresso'), |
|
| 1408 | + $route |
|
| 1409 | + ); |
|
| 1410 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1411 | + return false; |
|
| 1412 | + } |
|
| 1413 | + if (! is_readable($view)) { |
|
| 1414 | + $msg = sprintf( |
|
| 1415 | + __( |
|
| 1416 | + 'The %s view file could not be found or is not readable due to file permissions.', |
|
| 1417 | + 'event_espresso' |
|
| 1418 | + ), |
|
| 1419 | + $view |
|
| 1420 | + ); |
|
| 1421 | + EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 1422 | + return false; |
|
| 1423 | + } |
|
| 1424 | + EE_Config::$_module_view_map[ $key ][ $route ][ absint($status) ] = $view; |
|
| 1425 | + return true; |
|
| 1426 | + } |
|
| 1427 | + |
|
| 1428 | + |
|
| 1429 | + /** |
|
| 1430 | + * get_view - get view for route and status |
|
| 1431 | + * |
|
| 1432 | + * @access public |
|
| 1433 | + * @param string $route - "pretty" public alias for module method |
|
| 1434 | + * @param integer $status - integer value corresponding to status constant strings set in module parent class, |
|
| 1435 | + * allows different views to be served based on status |
|
| 1436 | + * @param string $key - url param key indicating a route is being called |
|
| 1437 | + * @return string |
|
| 1438 | + */ |
|
| 1439 | + public static function get_view($route = null, $status = 0, $key = 'ee') |
|
| 1440 | + { |
|
| 1441 | + do_action('AHEE__EE_Config__get_view__begin', $route, $status); |
|
| 1442 | + if (isset(EE_Config::$_module_view_map[ $key ][ $route ][ $status ])) { |
|
| 1443 | + return apply_filters( |
|
| 1444 | + 'FHEE__EE_Config__get_view', |
|
| 1445 | + EE_Config::$_module_view_map[ $key ][ $route ][ $status ], |
|
| 1446 | + $route, |
|
| 1447 | + $status |
|
| 1448 | + ); |
|
| 1449 | + } |
|
| 1450 | + return null; |
|
| 1451 | + } |
|
| 1452 | + |
|
| 1453 | + |
|
| 1454 | + public function update_addon_option_names() |
|
| 1455 | + { |
|
| 1456 | + update_option(EE_Config::ADDON_OPTION_NAMES, $this->_addon_option_names); |
|
| 1457 | + } |
|
| 1458 | + |
|
| 1459 | + |
|
| 1460 | + public function shutdown() |
|
| 1461 | + { |
|
| 1462 | + $this->update_addon_option_names(); |
|
| 1463 | + } |
|
| 1464 | + |
|
| 1465 | + |
|
| 1466 | + /** |
|
| 1467 | + * @return LegacyShortcodesManager |
|
| 1468 | + */ |
|
| 1469 | + public static function getLegacyShortcodesManager() |
|
| 1470 | + { |
|
| 1471 | + |
|
| 1472 | + if (! EE_Config::instance()->legacy_shortcodes_manager instanceof LegacyShortcodesManager) { |
|
| 1473 | + EE_Config::instance()->legacy_shortcodes_manager = new LegacyShortcodesManager( |
|
| 1474 | + EE_Registry::instance() |
|
| 1475 | + ); |
|
| 1476 | + } |
|
| 1477 | + return EE_Config::instance()->legacy_shortcodes_manager; |
|
| 1478 | + } |
|
| 1479 | + |
|
| 1480 | + |
|
| 1481 | + /** |
|
| 1482 | + * register_shortcode - makes core aware of this shortcode |
|
| 1483 | + * |
|
| 1484 | + * @deprecated 4.9.26 |
|
| 1485 | + * @param string $shortcode_path - full path up to and including shortcode folder |
|
| 1486 | + * @return bool |
|
| 1487 | + */ |
|
| 1488 | + public static function register_shortcode($shortcode_path = null) |
|
| 1489 | + { |
|
| 1490 | + EE_Error::doing_it_wrong( |
|
| 1491 | + __METHOD__, |
|
| 1492 | + __( |
|
| 1493 | + 'Usage is deprecated. Use \EventEspresso\core\services\shortcodes\LegacyShortcodesManager::registerShortcode() as direct replacement, or better yet, please see the new \EventEspresso\core\services\shortcodes\ShortcodesManager class.', |
|
| 1494 | + 'event_espresso' |
|
| 1495 | + ), |
|
| 1496 | + '4.9.26' |
|
| 1497 | + ); |
|
| 1498 | + return EE_Config::instance()->getLegacyShortcodesManager()->registerShortcode($shortcode_path); |
|
| 1499 | + } |
|
| 1500 | +} |
|
| 2273 | 1501 | |
| 2274 | - /** |
|
| 2275 | - * ReCaptcha Type |
|
| 2276 | - * |
|
| 2277 | - * @var string $recaptcha_type |
|
| 2278 | - * options: 'audio', 'image' |
|
| 2279 | - */ |
|
| 2280 | - public $recaptcha_type; |
|
| 1502 | +/** |
|
| 1503 | + * Base class used for config classes. These classes should generally not have |
|
| 1504 | + * magic functions in use, except we'll allow them to magically set and get stuff... |
|
| 1505 | + * basically, they should just be well-defined stdClasses |
|
| 1506 | + */ |
|
| 1507 | +class EE_Config_Base |
|
| 1508 | +{ |
|
| 2281 | 1509 | |
| 2282 | - /** |
|
| 2283 | - * ReCaptcha language |
|
| 2284 | - * |
|
| 2285 | - * @var string $recaptcha_language |
|
| 2286 | - * eg 'en' |
|
| 2287 | - */ |
|
| 2288 | - public $recaptcha_language; |
|
| 1510 | + /** |
|
| 1511 | + * Utility function for escaping the value of a property and returning. |
|
| 1512 | + * |
|
| 1513 | + * @param string $property property name (checks to see if exists). |
|
| 1514 | + * @return mixed if a detected type found return the escaped value, otherwise just the raw value is returned. |
|
| 1515 | + * @throws \EE_Error |
|
| 1516 | + */ |
|
| 1517 | + public function get_pretty($property) |
|
| 1518 | + { |
|
| 1519 | + if (! property_exists($this, $property)) { |
|
| 1520 | + throw new EE_Error( |
|
| 1521 | + sprintf( |
|
| 1522 | + __( |
|
| 1523 | + '%1$s::get_pretty() has been called with the property %2$s which does not exist on the %1$s config class.', |
|
| 1524 | + 'event_espresso' |
|
| 1525 | + ), |
|
| 1526 | + get_class($this), |
|
| 1527 | + $property |
|
| 1528 | + ) |
|
| 1529 | + ); |
|
| 1530 | + } |
|
| 1531 | + // just handling escaping of strings for now. |
|
| 1532 | + if (is_string($this->{$property})) { |
|
| 1533 | + return stripslashes($this->{$property}); |
|
| 1534 | + } |
|
| 1535 | + return $this->{$property}; |
|
| 1536 | + } |
|
| 1537 | + |
|
| 1538 | + |
|
| 1539 | + public function populate() |
|
| 1540 | + { |
|
| 1541 | + // grab defaults via a new instance of this class. |
|
| 1542 | + $class_name = get_class($this); |
|
| 1543 | + $defaults = new $class_name; |
|
| 1544 | + // loop through the properties for this class and see if they are set. If they are NOT, then grab the |
|
| 1545 | + // default from our $defaults object. |
|
| 1546 | + foreach (get_object_vars($defaults) as $property => $value) { |
|
| 1547 | + if ($this->{$property} === null) { |
|
| 1548 | + $this->{$property} = $value; |
|
| 1549 | + } |
|
| 1550 | + } |
|
| 1551 | + // cleanup |
|
| 1552 | + unset($defaults); |
|
| 1553 | + } |
|
| 1554 | + |
|
| 1555 | + |
|
| 1556 | + /** |
|
| 1557 | + * __isset |
|
| 1558 | + * |
|
| 1559 | + * @param $a |
|
| 1560 | + * @return bool |
|
| 1561 | + */ |
|
| 1562 | + public function __isset($a) |
|
| 1563 | + { |
|
| 1564 | + return false; |
|
| 1565 | + } |
|
| 1566 | + |
|
| 1567 | + |
|
| 1568 | + /** |
|
| 1569 | + * __unset |
|
| 1570 | + * |
|
| 1571 | + * @param $a |
|
| 1572 | + * @return bool |
|
| 1573 | + */ |
|
| 1574 | + public function __unset($a) |
|
| 1575 | + { |
|
| 1576 | + return false; |
|
| 1577 | + } |
|
| 1578 | + |
|
| 1579 | + |
|
| 1580 | + /** |
|
| 1581 | + * __clone |
|
| 1582 | + */ |
|
| 1583 | + public function __clone() |
|
| 1584 | + { |
|
| 1585 | + } |
|
| 1586 | + |
|
| 1587 | + |
|
| 1588 | + /** |
|
| 1589 | + * __wakeup |
|
| 1590 | + */ |
|
| 1591 | + public function __wakeup() |
|
| 1592 | + { |
|
| 1593 | + } |
|
| 1594 | + |
|
| 1595 | + |
|
| 1596 | + /** |
|
| 1597 | + * __destruct |
|
| 1598 | + */ |
|
| 1599 | + public function __destruct() |
|
| 1600 | + { |
|
| 1601 | + } |
|
| 1602 | +} |
|
| 2289 | 1603 | |
| 2290 | - /** |
|
| 2291 | - * ReCaptcha public key |
|
| 2292 | - * |
|
| 2293 | - * @var string $recaptcha_publickey |
|
| 2294 | - */ |
|
| 2295 | - public $recaptcha_publickey; |
|
| 1604 | +/** |
|
| 1605 | + * Class for defining what's in the EE_Config relating to registration settings |
|
| 1606 | + */ |
|
| 1607 | +class EE_Core_Config extends EE_Config_Base |
|
| 1608 | +{ |
|
| 2296 | 1609 | |
| 2297 | - /** |
|
| 2298 | - * ReCaptcha private key |
|
| 2299 | - * |
|
| 2300 | - * @var string $recaptcha_privatekey |
|
| 2301 | - */ |
|
| 2302 | - public $recaptcha_privatekey; |
|
| 1610 | + public $current_blog_id; |
|
| 1611 | + |
|
| 1612 | + public $ee_ueip_optin; |
|
| 1613 | + |
|
| 1614 | + public $ee_ueip_has_notified; |
|
| 1615 | + |
|
| 1616 | + /** |
|
| 1617 | + * Not to be confused with the 4 critical page variables (See |
|
| 1618 | + * get_critical_pages_array()), this is just an array of wp posts that have EE |
|
| 1619 | + * shortcodes in them. Keys are slugs, values are arrays with only 1 element: where the key is the shortcode |
|
| 1620 | + * in the page, and the value is the page's ID. The key 'posts' is basically a duplicate of this same array. |
|
| 1621 | + * |
|
| 1622 | + * @var array |
|
| 1623 | + */ |
|
| 1624 | + public $post_shortcodes; |
|
| 1625 | + |
|
| 1626 | + public $module_route_map; |
|
| 1627 | + |
|
| 1628 | + public $module_forward_map; |
|
| 1629 | + |
|
| 1630 | + public $module_view_map; |
|
| 1631 | + |
|
| 1632 | + /** |
|
| 1633 | + * The next 4 vars are the IDs of critical EE pages. |
|
| 1634 | + * |
|
| 1635 | + * @var int |
|
| 1636 | + */ |
|
| 1637 | + public $reg_page_id; |
|
| 1638 | + |
|
| 1639 | + public $txn_page_id; |
|
| 1640 | + |
|
| 1641 | + public $thank_you_page_id; |
|
| 1642 | + |
|
| 1643 | + public $cancel_page_id; |
|
| 1644 | + |
|
| 1645 | + /** |
|
| 1646 | + * The next 4 vars are the URLs of critical EE pages. |
|
| 1647 | + * |
|
| 1648 | + * @var int |
|
| 1649 | + */ |
|
| 1650 | + public $reg_page_url; |
|
| 1651 | + |
|
| 1652 | + public $txn_page_url; |
|
| 1653 | + |
|
| 1654 | + public $thank_you_page_url; |
|
| 1655 | + |
|
| 1656 | + public $cancel_page_url; |
|
| 1657 | + |
|
| 1658 | + /** |
|
| 1659 | + * The next vars relate to the custom slugs for EE CPT routes |
|
| 1660 | + */ |
|
| 1661 | + public $event_cpt_slug; |
|
| 1662 | + |
|
| 1663 | + /** |
|
| 1664 | + * This caches the _ee_ueip_option in case this config is reset in the same |
|
| 1665 | + * request across blog switches in a multisite context. |
|
| 1666 | + * Avoids extra queries to the db for this option. |
|
| 1667 | + * |
|
| 1668 | + * @var bool |
|
| 1669 | + */ |
|
| 1670 | + public static $ee_ueip_option; |
|
| 1671 | + |
|
| 1672 | + |
|
| 1673 | + /** |
|
| 1674 | + * class constructor |
|
| 1675 | + * |
|
| 1676 | + * @access public |
|
| 1677 | + */ |
|
| 1678 | + public function __construct() |
|
| 1679 | + { |
|
| 1680 | + // set default organization settings |
|
| 1681 | + $this->current_blog_id = get_current_blog_id(); |
|
| 1682 | + $this->current_blog_id = $this->current_blog_id === null ? 1 : $this->current_blog_id; |
|
| 1683 | + $this->ee_ueip_optin = $this->_get_main_ee_ueip_optin(); |
|
| 1684 | + $this->ee_ueip_has_notified = is_main_site() ? get_option('ee_ueip_has_notified', false) : true; |
|
| 1685 | + $this->post_shortcodes = array(); |
|
| 1686 | + $this->module_route_map = array(); |
|
| 1687 | + $this->module_forward_map = array(); |
|
| 1688 | + $this->module_view_map = array(); |
|
| 1689 | + // critical EE page IDs |
|
| 1690 | + $this->reg_page_id = 0; |
|
| 1691 | + $this->txn_page_id = 0; |
|
| 1692 | + $this->thank_you_page_id = 0; |
|
| 1693 | + $this->cancel_page_id = 0; |
|
| 1694 | + // critical EE page URLs |
|
| 1695 | + $this->reg_page_url = ''; |
|
| 1696 | + $this->txn_page_url = ''; |
|
| 1697 | + $this->thank_you_page_url = ''; |
|
| 1698 | + $this->cancel_page_url = ''; |
|
| 1699 | + // cpt slugs |
|
| 1700 | + $this->event_cpt_slug = __('events', 'event_espresso'); |
|
| 1701 | + // ueip constant check |
|
| 1702 | + if (defined('EE_DISABLE_UXIP') && EE_DISABLE_UXIP) { |
|
| 1703 | + $this->ee_ueip_optin = false; |
|
| 1704 | + $this->ee_ueip_has_notified = true; |
|
| 1705 | + } |
|
| 1706 | + } |
|
| 1707 | + |
|
| 1708 | + |
|
| 1709 | + /** |
|
| 1710 | + * @return array |
|
| 1711 | + */ |
|
| 1712 | + public function get_critical_pages_array() |
|
| 1713 | + { |
|
| 1714 | + return array( |
|
| 1715 | + $this->reg_page_id, |
|
| 1716 | + $this->txn_page_id, |
|
| 1717 | + $this->thank_you_page_id, |
|
| 1718 | + $this->cancel_page_id, |
|
| 1719 | + ); |
|
| 1720 | + } |
|
| 1721 | + |
|
| 1722 | + |
|
| 1723 | + /** |
|
| 1724 | + * @return array |
|
| 1725 | + */ |
|
| 1726 | + public function get_critical_pages_shortcodes_array() |
|
| 1727 | + { |
|
| 1728 | + return array( |
|
| 1729 | + $this->reg_page_id => 'ESPRESSO_CHECKOUT', |
|
| 1730 | + $this->txn_page_id => 'ESPRESSO_TXN_PAGE', |
|
| 1731 | + $this->thank_you_page_id => 'ESPRESSO_THANK_YOU', |
|
| 1732 | + $this->cancel_page_id => 'ESPRESSO_CANCELLED', |
|
| 1733 | + ); |
|
| 1734 | + } |
|
| 1735 | + |
|
| 1736 | + |
|
| 1737 | + /** |
|
| 1738 | + * gets/returns URL for EE reg_page |
|
| 1739 | + * |
|
| 1740 | + * @access public |
|
| 1741 | + * @return string |
|
| 1742 | + */ |
|
| 1743 | + public function reg_page_url() |
|
| 1744 | + { |
|
| 1745 | + if (! $this->reg_page_url) { |
|
| 1746 | + $this->reg_page_url = add_query_arg( |
|
| 1747 | + array('uts' => time()), |
|
| 1748 | + get_permalink($this->reg_page_id) |
|
| 1749 | + ) . '#checkout'; |
|
| 1750 | + } |
|
| 1751 | + return $this->reg_page_url; |
|
| 1752 | + } |
|
| 1753 | + |
|
| 1754 | + |
|
| 1755 | + /** |
|
| 1756 | + * gets/returns URL for EE txn_page |
|
| 1757 | + * |
|
| 1758 | + * @param array $query_args like what gets passed to |
|
| 1759 | + * add_query_arg() as the first argument |
|
| 1760 | + * @access public |
|
| 1761 | + * @return string |
|
| 1762 | + */ |
|
| 1763 | + public function txn_page_url($query_args = array()) |
|
| 1764 | + { |
|
| 1765 | + if (! $this->txn_page_url) { |
|
| 1766 | + $this->txn_page_url = get_permalink($this->txn_page_id); |
|
| 1767 | + } |
|
| 1768 | + if ($query_args) { |
|
| 1769 | + return add_query_arg($query_args, $this->txn_page_url); |
|
| 1770 | + } else { |
|
| 1771 | + return $this->txn_page_url; |
|
| 1772 | + } |
|
| 1773 | + } |
|
| 1774 | + |
|
| 1775 | + |
|
| 1776 | + /** |
|
| 1777 | + * gets/returns URL for EE thank_you_page |
|
| 1778 | + * |
|
| 1779 | + * @param array $query_args like what gets passed to |
|
| 1780 | + * add_query_arg() as the first argument |
|
| 1781 | + * @access public |
|
| 1782 | + * @return string |
|
| 1783 | + */ |
|
| 1784 | + public function thank_you_page_url($query_args = array()) |
|
| 1785 | + { |
|
| 1786 | + if (! $this->thank_you_page_url) { |
|
| 1787 | + $this->thank_you_page_url = get_permalink($this->thank_you_page_id); |
|
| 1788 | + } |
|
| 1789 | + if ($query_args) { |
|
| 1790 | + return add_query_arg($query_args, $this->thank_you_page_url); |
|
| 1791 | + } else { |
|
| 1792 | + return $this->thank_you_page_url; |
|
| 1793 | + } |
|
| 1794 | + } |
|
| 1795 | + |
|
| 1796 | + |
|
| 1797 | + /** |
|
| 1798 | + * gets/returns URL for EE cancel_page |
|
| 1799 | + * |
|
| 1800 | + * @access public |
|
| 1801 | + * @return string |
|
| 1802 | + */ |
|
| 1803 | + public function cancel_page_url() |
|
| 1804 | + { |
|
| 1805 | + if (! $this->cancel_page_url) { |
|
| 1806 | + $this->cancel_page_url = get_permalink($this->cancel_page_id); |
|
| 1807 | + } |
|
| 1808 | + return $this->cancel_page_url; |
|
| 1809 | + } |
|
| 1810 | + |
|
| 1811 | + |
|
| 1812 | + /** |
|
| 1813 | + * Resets all critical page urls to their original state. Used primarily by the __sleep() magic method currently. |
|
| 1814 | + * |
|
| 1815 | + * @since 4.7.5 |
|
| 1816 | + */ |
|
| 1817 | + protected function _reset_urls() |
|
| 1818 | + { |
|
| 1819 | + $this->reg_page_url = ''; |
|
| 1820 | + $this->txn_page_url = ''; |
|
| 1821 | + $this->cancel_page_url = ''; |
|
| 1822 | + $this->thank_you_page_url = ''; |
|
| 1823 | + } |
|
| 1824 | + |
|
| 1825 | + |
|
| 1826 | + /** |
|
| 1827 | + * Used to return what the optin value is set for the EE User Experience Program. |
|
| 1828 | + * This accounts for multisite and this value being requested for a subsite. In multisite, the value is set |
|
| 1829 | + * on the main site only. |
|
| 1830 | + * |
|
| 1831 | + * @return mixed|void |
|
| 1832 | + */ |
|
| 1833 | + protected function _get_main_ee_ueip_optin() |
|
| 1834 | + { |
|
| 1835 | + // if this is the main site then we can just bypass our direct query. |
|
| 1836 | + if (is_main_site()) { |
|
| 1837 | + return get_option('ee_ueip_optin', false); |
|
| 1838 | + } |
|
| 1839 | + // is this already cached for this request? If so use it. |
|
| 1840 | + if (! empty(EE_Core_Config::$ee_ueip_option)) { |
|
| 1841 | + return EE_Core_Config::$ee_ueip_option; |
|
| 1842 | + } |
|
| 1843 | + global $wpdb; |
|
| 1844 | + $current_network_main_site = is_multisite() ? get_current_site() : null; |
|
| 1845 | + $current_main_site_id = ! empty($current_network_main_site) ? $current_network_main_site->blog_id : 1; |
|
| 1846 | + $option = 'ee_ueip_optin'; |
|
| 1847 | + // set correct table for query |
|
| 1848 | + $table_name = $wpdb->get_blog_prefix($current_main_site_id) . 'options'; |
|
| 1849 | + // rather than getting blog option for the $current_main_site_id, we do a direct $wpdb query because |
|
| 1850 | + // get_blog_option() does a switch_to_blog an that could cause infinite recursion because EE_Core_Config might be |
|
| 1851 | + // re-constructed on the blog switch. Note, we are still executing any core wp filters on this option retrieval. |
|
| 1852 | + // this bit of code is basically a direct copy of get_option without any caching because we are NOT switched to the blog |
|
| 1853 | + // for the purpose of caching. |
|
| 1854 | + $pre = apply_filters('pre_option_' . $option, false, $option); |
|
| 1855 | + if (false !== $pre) { |
|
| 1856 | + EE_Core_Config::$ee_ueip_option = $pre; |
|
| 1857 | + return EE_Core_Config::$ee_ueip_option; |
|
| 1858 | + } |
|
| 1859 | + $row = $wpdb->get_row( |
|
| 1860 | + $wpdb->prepare( |
|
| 1861 | + "SELECT option_value FROM $table_name WHERE option_name = %s LIMIT 1", |
|
| 1862 | + $option |
|
| 1863 | + ) |
|
| 1864 | + ); |
|
| 1865 | + if (is_object($row)) { |
|
| 1866 | + $value = $row->option_value; |
|
| 1867 | + } else { // option does not exist so use default. |
|
| 1868 | + return apply_filters('default_option_' . $option, false, $option); |
|
| 1869 | + } |
|
| 1870 | + EE_Core_Config::$ee_ueip_option = apply_filters('option_' . $option, maybe_unserialize($value), $option); |
|
| 1871 | + return EE_Core_Config::$ee_ueip_option; |
|
| 1872 | + } |
|
| 1873 | + |
|
| 1874 | + |
|
| 1875 | + /** |
|
| 1876 | + * Utility function for escaping the value of a property and returning. |
|
| 1877 | + * |
|
| 1878 | + * @param string $property property name (checks to see if exists). |
|
| 1879 | + * @return mixed if a detected type found return the escaped value, otherwise just the raw value is returned. |
|
| 1880 | + * @throws \EE_Error |
|
| 1881 | + */ |
|
| 1882 | + public function get_pretty($property) |
|
| 1883 | + { |
|
| 1884 | + if ($property === 'ee_ueip_optin') { |
|
| 1885 | + return $this->ee_ueip_optin ? 'yes' : 'no'; |
|
| 1886 | + } |
|
| 1887 | + return parent::get_pretty($property); |
|
| 1888 | + } |
|
| 1889 | + |
|
| 1890 | + |
|
| 1891 | + /** |
|
| 1892 | + * Currently used to ensure critical page urls have initial values saved to the db instead of any current set values |
|
| 1893 | + * on the object. |
|
| 1894 | + * |
|
| 1895 | + * @return array |
|
| 1896 | + */ |
|
| 1897 | + public function __sleep() |
|
| 1898 | + { |
|
| 1899 | + // reset all url properties |
|
| 1900 | + $this->_reset_urls(); |
|
| 1901 | + // return what to save to db |
|
| 1902 | + return array_keys(get_object_vars($this)); |
|
| 1903 | + } |
|
| 1904 | +} |
|
| 2303 | 1905 | |
| 2304 | - /** |
|
| 2305 | - * array of form names protected by ReCaptcha |
|
| 2306 | - * |
|
| 2307 | - * @var array $recaptcha_protected_forms |
|
| 2308 | - */ |
|
| 2309 | - public $recaptcha_protected_forms; |
|
| 1906 | +/** |
|
| 1907 | + * Config class for storing info on the Organization |
|
| 1908 | + */ |
|
| 1909 | +class EE_Organization_Config extends EE_Config_Base |
|
| 1910 | +{ |
|
| 2310 | 1911 | |
| 2311 | - /** |
|
| 2312 | - * ReCaptcha width |
|
| 2313 | - * |
|
| 2314 | - * @var int $recaptcha_width |
|
| 2315 | - * @deprecated |
|
| 2316 | - */ |
|
| 2317 | - public $recaptcha_width; |
|
| 1912 | + /** |
|
| 1913 | + * @var string $name |
|
| 1914 | + * eg EE4.1 |
|
| 1915 | + */ |
|
| 1916 | + public $name; |
|
| 1917 | + |
|
| 1918 | + /** |
|
| 1919 | + * @var string $address_1 |
|
| 1920 | + * eg 123 Onna Road |
|
| 1921 | + */ |
|
| 1922 | + public $address_1; |
|
| 1923 | + |
|
| 1924 | + /** |
|
| 1925 | + * @var string $address_2 |
|
| 1926 | + * eg PO Box 123 |
|
| 1927 | + */ |
|
| 1928 | + public $address_2; |
|
| 1929 | + |
|
| 1930 | + /** |
|
| 1931 | + * @var string $city |
|
| 1932 | + * eg Inna City |
|
| 1933 | + */ |
|
| 1934 | + public $city; |
|
| 1935 | + |
|
| 1936 | + /** |
|
| 1937 | + * @var int $STA_ID |
|
| 1938 | + * eg 4 |
|
| 1939 | + */ |
|
| 1940 | + public $STA_ID; |
|
| 1941 | + |
|
| 1942 | + /** |
|
| 1943 | + * @var string $CNT_ISO |
|
| 1944 | + * eg US |
|
| 1945 | + */ |
|
| 1946 | + public $CNT_ISO; |
|
| 1947 | + |
|
| 1948 | + /** |
|
| 1949 | + * @var string $zip |
|
| 1950 | + * eg 12345 or V1A 2B3 |
|
| 1951 | + */ |
|
| 1952 | + public $zip; |
|
| 1953 | + |
|
| 1954 | + /** |
|
| 1955 | + * @var string $email |
|
| 1956 | + * eg [email protected] |
|
| 1957 | + */ |
|
| 1958 | + public $email; |
|
| 1959 | + |
|
| 1960 | + /** |
|
| 1961 | + * @var string $phone |
|
| 1962 | + * eg. 111-111-1111 |
|
| 1963 | + */ |
|
| 1964 | + public $phone; |
|
| 1965 | + |
|
| 1966 | + /** |
|
| 1967 | + * @var string $vat |
|
| 1968 | + * VAT/Tax Number |
|
| 1969 | + */ |
|
| 1970 | + public $vat; |
|
| 1971 | + |
|
| 1972 | + /** |
|
| 1973 | + * @var string $logo_url |
|
| 1974 | + * eg http://www.somedomain.com/wp-content/uploads/kittehs.jpg |
|
| 1975 | + */ |
|
| 1976 | + public $logo_url; |
|
| 1977 | + |
|
| 1978 | + /** |
|
| 1979 | + * The below are all various properties for holding links to organization social network profiles |
|
| 1980 | + * |
|
| 1981 | + * @var string |
|
| 1982 | + */ |
|
| 1983 | + /** |
|
| 1984 | + * facebook (facebook.com/profile.name) |
|
| 1985 | + * |
|
| 1986 | + * @var string |
|
| 1987 | + */ |
|
| 1988 | + public $facebook; |
|
| 1989 | + |
|
| 1990 | + /** |
|
| 1991 | + * twitter (twitter.com/twitter_handle) |
|
| 1992 | + * |
|
| 1993 | + * @var string |
|
| 1994 | + */ |
|
| 1995 | + public $twitter; |
|
| 1996 | + |
|
| 1997 | + /** |
|
| 1998 | + * linkedin (linkedin.com/in/profile_name) |
|
| 1999 | + * |
|
| 2000 | + * @var string |
|
| 2001 | + */ |
|
| 2002 | + public $linkedin; |
|
| 2003 | + |
|
| 2004 | + /** |
|
| 2005 | + * pinterest (www.pinterest.com/profile_name) |
|
| 2006 | + * |
|
| 2007 | + * @var string |
|
| 2008 | + */ |
|
| 2009 | + public $pinterest; |
|
| 2010 | + |
|
| 2011 | + /** |
|
| 2012 | + * google+ (google.com/+profileName) |
|
| 2013 | + * |
|
| 2014 | + * @var string |
|
| 2015 | + */ |
|
| 2016 | + public $google; |
|
| 2017 | + |
|
| 2018 | + /** |
|
| 2019 | + * instagram (instagram.com/handle) |
|
| 2020 | + * |
|
| 2021 | + * @var string |
|
| 2022 | + */ |
|
| 2023 | + public $instagram; |
|
| 2024 | + |
|
| 2025 | + |
|
| 2026 | + /** |
|
| 2027 | + * class constructor |
|
| 2028 | + * |
|
| 2029 | + * @access public |
|
| 2030 | + */ |
|
| 2031 | + public function __construct() |
|
| 2032 | + { |
|
| 2033 | + // set default organization settings |
|
| 2034 | + // decode HTML entities from the WP blogname, because it's stored in the DB with HTML entities encoded |
|
| 2035 | + $this->name = wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES); |
|
| 2036 | + $this->address_1 = '123 Onna Road'; |
|
| 2037 | + $this->address_2 = 'PO Box 123'; |
|
| 2038 | + $this->city = 'Inna City'; |
|
| 2039 | + $this->STA_ID = 4; |
|
| 2040 | + $this->CNT_ISO = 'US'; |
|
| 2041 | + $this->zip = '12345'; |
|
| 2042 | + $this->email = get_bloginfo('admin_email'); |
|
| 2043 | + $this->phone = ''; |
|
| 2044 | + $this->vat = '123456789'; |
|
| 2045 | + $this->logo_url = ''; |
|
| 2046 | + $this->facebook = ''; |
|
| 2047 | + $this->twitter = ''; |
|
| 2048 | + $this->linkedin = ''; |
|
| 2049 | + $this->pinterest = ''; |
|
| 2050 | + $this->google = ''; |
|
| 2051 | + $this->instagram = ''; |
|
| 2052 | + } |
|
| 2053 | +} |
|
| 2318 | 2054 | |
| 2319 | - /** |
|
| 2320 | - * Whether or not invalid attempts to directly access the registration checkout page should be tracked. |
|
| 2321 | - * |
|
| 2322 | - * @var boolean $track_invalid_checkout_access |
|
| 2323 | - */ |
|
| 2324 | - protected $track_invalid_checkout_access = true; |
|
| 2055 | +/** |
|
| 2056 | + * Class for defining what's in the EE_Config relating to currency |
|
| 2057 | + */ |
|
| 2058 | +class EE_Currency_Config extends EE_Config_Base |
|
| 2059 | +{ |
|
| 2325 | 2060 | |
| 2326 | - /** |
|
| 2327 | - * Whether or not to show the privacy policy consent checkbox |
|
| 2328 | - * |
|
| 2329 | - * @var bool |
|
| 2330 | - */ |
|
| 2331 | - public $consent_checkbox_enabled; |
|
| 2061 | + /** |
|
| 2062 | + * @var string $code |
|
| 2063 | + * eg 'US' |
|
| 2064 | + */ |
|
| 2065 | + public $code; |
|
| 2066 | + |
|
| 2067 | + /** |
|
| 2068 | + * @var string $name |
|
| 2069 | + * eg 'Dollar' |
|
| 2070 | + */ |
|
| 2071 | + public $name; |
|
| 2072 | + |
|
| 2073 | + /** |
|
| 2074 | + * plural name |
|
| 2075 | + * |
|
| 2076 | + * @var string $plural |
|
| 2077 | + * eg 'Dollars' |
|
| 2078 | + */ |
|
| 2079 | + public $plural; |
|
| 2080 | + |
|
| 2081 | + /** |
|
| 2082 | + * currency sign |
|
| 2083 | + * |
|
| 2084 | + * @var string $sign |
|
| 2085 | + * eg '$' |
|
| 2086 | + */ |
|
| 2087 | + public $sign; |
|
| 2088 | + |
|
| 2089 | + /** |
|
| 2090 | + * Whether the currency sign should come before the number or not |
|
| 2091 | + * |
|
| 2092 | + * @var boolean $sign_b4 |
|
| 2093 | + */ |
|
| 2094 | + public $sign_b4; |
|
| 2095 | + |
|
| 2096 | + /** |
|
| 2097 | + * How many digits should come after the decimal place |
|
| 2098 | + * |
|
| 2099 | + * @var int $dec_plc |
|
| 2100 | + */ |
|
| 2101 | + public $dec_plc; |
|
| 2102 | + |
|
| 2103 | + /** |
|
| 2104 | + * Symbol to use for decimal mark |
|
| 2105 | + * |
|
| 2106 | + * @var string $dec_mrk |
|
| 2107 | + * eg '.' |
|
| 2108 | + */ |
|
| 2109 | + public $dec_mrk; |
|
| 2110 | + |
|
| 2111 | + /** |
|
| 2112 | + * Symbol to use for thousands |
|
| 2113 | + * |
|
| 2114 | + * @var string $thsnds |
|
| 2115 | + * eg ',' |
|
| 2116 | + */ |
|
| 2117 | + public $thsnds; |
|
| 2118 | + |
|
| 2119 | + |
|
| 2120 | + /** |
|
| 2121 | + * class constructor |
|
| 2122 | + * |
|
| 2123 | + * @access public |
|
| 2124 | + * @param string $CNT_ISO |
|
| 2125 | + * @throws \EE_Error |
|
| 2126 | + */ |
|
| 2127 | + public function __construct($CNT_ISO = '') |
|
| 2128 | + { |
|
| 2129 | + /** @var \EventEspresso\core\services\database\TableAnalysis $table_analysis */ |
|
| 2130 | + $table_analysis = EE_Registry::instance()->create('TableAnalysis', array(), true); |
|
| 2131 | + // get country code from organization settings or use default |
|
| 2132 | + $ORG_CNT = isset(EE_Registry::instance()->CFG->organization) |
|
| 2133 | + && EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config |
|
| 2134 | + ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 2135 | + : ''; |
|
| 2136 | + // but override if requested |
|
| 2137 | + $CNT_ISO = ! empty($CNT_ISO) ? $CNT_ISO : $ORG_CNT; |
|
| 2138 | + // so if that all went well, and we are not in M-Mode (cuz you can't query the db in M-Mode) and double-check the countries table exists |
|
| 2139 | + if (! empty($CNT_ISO) |
|
| 2140 | + && EE_Maintenance_Mode::instance()->models_can_query() |
|
| 2141 | + && $table_analysis->tableExists(EE_Registry::instance()->load_model('Country')->table()) |
|
| 2142 | + ) { |
|
| 2143 | + // retrieve the country settings from the db, just in case they have been customized |
|
| 2144 | + $country = EE_Registry::instance()->load_model('Country')->get_one_by_ID($CNT_ISO); |
|
| 2145 | + if ($country instanceof EE_Country) { |
|
| 2146 | + $this->code = $country->currency_code(); // currency code: USD, CAD, EUR |
|
| 2147 | + $this->name = $country->currency_name_single(); // Dollar |
|
| 2148 | + $this->plural = $country->currency_name_plural(); // Dollars |
|
| 2149 | + $this->sign = $country->currency_sign(); // currency sign: $ |
|
| 2150 | + $this->sign_b4 = $country->currency_sign_before( |
|
| 2151 | + ); // currency sign before or after: $TRUE or FALSE$ |
|
| 2152 | + $this->dec_plc = $country->currency_decimal_places(); // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2153 | + $this->dec_mrk = $country->currency_decimal_mark( |
|
| 2154 | + ); // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2155 | + $this->thsnds = $country->currency_thousands_separator( |
|
| 2156 | + ); // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2157 | + } |
|
| 2158 | + } |
|
| 2159 | + // fallback to hardcoded defaults, in case the above failed |
|
| 2160 | + if (empty($this->code)) { |
|
| 2161 | + // set default currency settings |
|
| 2162 | + $this->code = 'USD'; // currency code: USD, CAD, EUR |
|
| 2163 | + $this->name = __('Dollar', 'event_espresso'); // Dollar |
|
| 2164 | + $this->plural = __('Dollars', 'event_espresso'); // Dollars |
|
| 2165 | + $this->sign = '$'; // currency sign: $ |
|
| 2166 | + $this->sign_b4 = true; // currency sign before or after: $TRUE or FALSE$ |
|
| 2167 | + $this->dec_plc = 2; // decimal places: 2 = 0.00 3 = 0.000 |
|
| 2168 | + $this->dec_mrk = '.'; // decimal mark: (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
|
| 2169 | + $this->thsnds = ','; // thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
|
| 2170 | + } |
|
| 2171 | + } |
|
| 2172 | +} |
|
| 2332 | 2173 | |
| 2333 | - /** |
|
| 2334 | - * Label text to show on the checkbox |
|
| 2335 | - * |
|
| 2336 | - * @var string |
|
| 2337 | - */ |
|
| 2338 | - public $consent_checkbox_label_text; |
|
| 2174 | +/** |
|
| 2175 | + * Class for defining what's in the EE_Config relating to registration settings |
|
| 2176 | + */ |
|
| 2177 | +class EE_Registration_Config extends EE_Config_Base |
|
| 2178 | +{ |
|
| 2339 | 2179 | |
| 2340 | - /* |
|
| 2180 | + /** |
|
| 2181 | + * Default registration status |
|
| 2182 | + * |
|
| 2183 | + * @var string $default_STS_ID |
|
| 2184 | + * eg 'RPP' |
|
| 2185 | + */ |
|
| 2186 | + public $default_STS_ID; |
|
| 2187 | + |
|
| 2188 | + /** |
|
| 2189 | + * For new events, this will be the default value for the maximum number of tickets (equivalent to maximum number of |
|
| 2190 | + * registrations) |
|
| 2191 | + * |
|
| 2192 | + * @var int |
|
| 2193 | + */ |
|
| 2194 | + public $default_maximum_number_of_tickets; |
|
| 2195 | + |
|
| 2196 | + /** |
|
| 2197 | + * level of validation to apply to email addresses |
|
| 2198 | + * |
|
| 2199 | + * @var string $email_validation_level |
|
| 2200 | + * options: 'basic', 'wp_default', 'i18n', 'i18n_dns' |
|
| 2201 | + */ |
|
| 2202 | + public $email_validation_level; |
|
| 2203 | + |
|
| 2204 | + /** |
|
| 2205 | + * whether or not to show alternate payment options during the reg process if payment status is pending |
|
| 2206 | + * |
|
| 2207 | + * @var boolean $show_pending_payment_options |
|
| 2208 | + */ |
|
| 2209 | + public $show_pending_payment_options; |
|
| 2210 | + |
|
| 2211 | + /** |
|
| 2212 | + * Whether to skip the registration confirmation page |
|
| 2213 | + * |
|
| 2214 | + * @var boolean $skip_reg_confirmation |
|
| 2215 | + */ |
|
| 2216 | + public $skip_reg_confirmation; |
|
| 2217 | + |
|
| 2218 | + /** |
|
| 2219 | + * an array of SPCO reg steps where: |
|
| 2220 | + * the keys denotes the reg step order |
|
| 2221 | + * each element consists of an array with the following elements: |
|
| 2222 | + * "file_path" => the file path to the EE_SPCO_Reg_Step class |
|
| 2223 | + * "class_name" => the specific EE_SPCO_Reg_Step child class name |
|
| 2224 | + * "slug" => the URL param used to trigger the reg step |
|
| 2225 | + * |
|
| 2226 | + * @var array $reg_steps |
|
| 2227 | + */ |
|
| 2228 | + public $reg_steps; |
|
| 2229 | + |
|
| 2230 | + /** |
|
| 2231 | + * Whether registration confirmation should be the last page of SPCO |
|
| 2232 | + * |
|
| 2233 | + * @var boolean $reg_confirmation_last |
|
| 2234 | + */ |
|
| 2235 | + public $reg_confirmation_last; |
|
| 2236 | + |
|
| 2237 | + /** |
|
| 2238 | + * Whether or not to enable the EE Bot Trap |
|
| 2239 | + * |
|
| 2240 | + * @var boolean $use_bot_trap |
|
| 2241 | + */ |
|
| 2242 | + public $use_bot_trap; |
|
| 2243 | + |
|
| 2244 | + /** |
|
| 2245 | + * Whether or not to encrypt some data sent by the EE Bot Trap |
|
| 2246 | + * |
|
| 2247 | + * @var boolean $use_encryption |
|
| 2248 | + */ |
|
| 2249 | + public $use_encryption; |
|
| 2250 | + |
|
| 2251 | + /** |
|
| 2252 | + * Whether or not to use ReCaptcha |
|
| 2253 | + * |
|
| 2254 | + * @var boolean $use_captcha |
|
| 2255 | + */ |
|
| 2256 | + public $use_captcha; |
|
| 2257 | + |
|
| 2258 | + /** |
|
| 2259 | + * ReCaptcha Theme |
|
| 2260 | + * |
|
| 2261 | + * @var string $recaptcha_theme |
|
| 2262 | + * options: 'dark', 'light', 'invisible' |
|
| 2263 | + */ |
|
| 2264 | + public $recaptcha_theme; |
|
| 2265 | + |
|
| 2266 | + /** |
|
| 2267 | + * ReCaptcha Badge - determines the position of the reCAPTCHA badge if using Invisible ReCaptcha. |
|
| 2268 | + * |
|
| 2269 | + * @var string $recaptcha_badge |
|
| 2270 | + * options: 'bottomright', 'bottomleft', 'inline' |
|
| 2271 | + */ |
|
| 2272 | + public $recaptcha_badge; |
|
| 2273 | + |
|
| 2274 | + /** |
|
| 2275 | + * ReCaptcha Type |
|
| 2276 | + * |
|
| 2277 | + * @var string $recaptcha_type |
|
| 2278 | + * options: 'audio', 'image' |
|
| 2279 | + */ |
|
| 2280 | + public $recaptcha_type; |
|
| 2281 | + |
|
| 2282 | + /** |
|
| 2283 | + * ReCaptcha language |
|
| 2284 | + * |
|
| 2285 | + * @var string $recaptcha_language |
|
| 2286 | + * eg 'en' |
|
| 2287 | + */ |
|
| 2288 | + public $recaptcha_language; |
|
| 2289 | + |
|
| 2290 | + /** |
|
| 2291 | + * ReCaptcha public key |
|
| 2292 | + * |
|
| 2293 | + * @var string $recaptcha_publickey |
|
| 2294 | + */ |
|
| 2295 | + public $recaptcha_publickey; |
|
| 2296 | + |
|
| 2297 | + /** |
|
| 2298 | + * ReCaptcha private key |
|
| 2299 | + * |
|
| 2300 | + * @var string $recaptcha_privatekey |
|
| 2301 | + */ |
|
| 2302 | + public $recaptcha_privatekey; |
|
| 2303 | + |
|
| 2304 | + /** |
|
| 2305 | + * array of form names protected by ReCaptcha |
|
| 2306 | + * |
|
| 2307 | + * @var array $recaptcha_protected_forms |
|
| 2308 | + */ |
|
| 2309 | + public $recaptcha_protected_forms; |
|
| 2310 | + |
|
| 2311 | + /** |
|
| 2312 | + * ReCaptcha width |
|
| 2313 | + * |
|
| 2314 | + * @var int $recaptcha_width |
|
| 2315 | + * @deprecated |
|
| 2316 | + */ |
|
| 2317 | + public $recaptcha_width; |
|
| 2318 | + |
|
| 2319 | + /** |
|
| 2320 | + * Whether or not invalid attempts to directly access the registration checkout page should be tracked. |
|
| 2321 | + * |
|
| 2322 | + * @var boolean $track_invalid_checkout_access |
|
| 2323 | + */ |
|
| 2324 | + protected $track_invalid_checkout_access = true; |
|
| 2325 | + |
|
| 2326 | + /** |
|
| 2327 | + * Whether or not to show the privacy policy consent checkbox |
|
| 2328 | + * |
|
| 2329 | + * @var bool |
|
| 2330 | + */ |
|
| 2331 | + public $consent_checkbox_enabled; |
|
| 2332 | + |
|
| 2333 | + /** |
|
| 2334 | + * Label text to show on the checkbox |
|
| 2335 | + * |
|
| 2336 | + * @var string |
|
| 2337 | + */ |
|
| 2338 | + public $consent_checkbox_label_text; |
|
| 2339 | + |
|
| 2340 | + /* |
|
| 2341 | 2341 | * String describing how long to keep payment logs. Passed into DateTime constructor |
| 2342 | 2342 | * @var string |
| 2343 | 2343 | */ |
| 2344 | - public $gateway_log_lifespan = '1 week'; |
|
| 2345 | - |
|
| 2346 | - |
|
| 2347 | - /** |
|
| 2348 | - * class constructor |
|
| 2349 | - * |
|
| 2350 | - * @access public |
|
| 2351 | - */ |
|
| 2352 | - public function __construct() |
|
| 2353 | - { |
|
| 2354 | - // set default registration settings |
|
| 2355 | - $this->default_STS_ID = EEM_Registration::status_id_pending_payment; |
|
| 2356 | - $this->email_validation_level = 'wp_default'; |
|
| 2357 | - $this->show_pending_payment_options = true; |
|
| 2358 | - $this->skip_reg_confirmation = true; |
|
| 2359 | - $this->reg_steps = array(); |
|
| 2360 | - $this->reg_confirmation_last = false; |
|
| 2361 | - $this->use_bot_trap = true; |
|
| 2362 | - $this->use_encryption = true; |
|
| 2363 | - $this->use_captcha = false; |
|
| 2364 | - $this->recaptcha_theme = 'light'; |
|
| 2365 | - $this->recaptcha_badge = 'bottomleft'; |
|
| 2366 | - $this->recaptcha_type = 'image'; |
|
| 2367 | - $this->recaptcha_language = 'en'; |
|
| 2368 | - $this->recaptcha_publickey = null; |
|
| 2369 | - $this->recaptcha_privatekey = null; |
|
| 2370 | - $this->recaptcha_protected_forms = array(); |
|
| 2371 | - $this->recaptcha_width = 500; |
|
| 2372 | - $this->default_maximum_number_of_tickets = 10; |
|
| 2373 | - $this->consent_checkbox_enabled = false; |
|
| 2374 | - $this->consent_checkbox_label_text = ''; |
|
| 2375 | - $this->gateway_log_lifespan = '7 days'; |
|
| 2376 | - } |
|
| 2377 | - |
|
| 2378 | - |
|
| 2379 | - /** |
|
| 2380 | - * This is called by the config loader and hooks are initialized AFTER the config has been populated. |
|
| 2381 | - * |
|
| 2382 | - * @since 4.8.8.rc.019 |
|
| 2383 | - */ |
|
| 2384 | - public function do_hooks() |
|
| 2385 | - { |
|
| 2386 | - add_action('AHEE__EE_Config___load_core_config__end', array($this, 'set_default_reg_status_on_EEM_Event')); |
|
| 2387 | - add_action('AHEE__EE_Config___load_core_config__end', array($this, 'set_default_max_ticket_on_EEM_Event')); |
|
| 2388 | - add_action('setup_theme', array($this, 'setDefaultCheckboxLabelText')); |
|
| 2389 | - } |
|
| 2390 | - |
|
| 2391 | - |
|
| 2392 | - /** |
|
| 2393 | - * Hooked into `AHEE__EE_Config___load_core_config__end` to ensure the default for the |
|
| 2394 | - * EVT_default_registration_status field matches the config setting for default_STS_ID. |
|
| 2395 | - */ |
|
| 2396 | - public function set_default_reg_status_on_EEM_Event() |
|
| 2397 | - { |
|
| 2398 | - EEM_Event::set_default_reg_status($this->default_STS_ID); |
|
| 2399 | - } |
|
| 2400 | - |
|
| 2401 | - |
|
| 2402 | - /** |
|
| 2403 | - * Hooked into `AHEE__EE_Config___load_core_config__end` to ensure the default for the EVT_additional_limit field |
|
| 2404 | - * for Events matches the config setting for default_maximum_number_of_tickets |
|
| 2405 | - */ |
|
| 2406 | - public function set_default_max_ticket_on_EEM_Event() |
|
| 2407 | - { |
|
| 2408 | - EEM_Event::set_default_additional_limit($this->default_maximum_number_of_tickets); |
|
| 2409 | - } |
|
| 2410 | - |
|
| 2411 | - |
|
| 2412 | - /** |
|
| 2413 | - * Sets the default consent checkbox text. This needs to be done a bit later than when EE_Registration_Config is |
|
| 2414 | - * constructed because that happens before we can get the privacy policy page's permalink. |
|
| 2415 | - * |
|
| 2416 | - * @throws InvalidArgumentException |
|
| 2417 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2418 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2419 | - */ |
|
| 2420 | - public function setDefaultCheckboxLabelText() |
|
| 2421 | - { |
|
| 2422 | - if ($this->getConsentCheckboxLabelText() === null |
|
| 2423 | - || $this->getConsentCheckboxLabelText() === '') { |
|
| 2424 | - $opening_a_tag = ''; |
|
| 2425 | - $closing_a_tag = ''; |
|
| 2426 | - if (function_exists('get_privacy_policy_url')) { |
|
| 2427 | - $privacy_page_url = get_privacy_policy_url(); |
|
| 2428 | - if (! empty($privacy_page_url)) { |
|
| 2429 | - $opening_a_tag = '<a href="' . $privacy_page_url . '" target="_blank">'; |
|
| 2430 | - $closing_a_tag = '</a>'; |
|
| 2431 | - } |
|
| 2432 | - } |
|
| 2433 | - $loader = LoaderFactory::getLoader(); |
|
| 2434 | - $org_config = $loader->getShared('EE_Organization_Config'); |
|
| 2435 | - /** |
|
| 2436 | - * @var $org_config EE_Organization_Config |
|
| 2437 | - */ |
|
| 2438 | - |
|
| 2439 | - $this->setConsentCheckboxLabelText( |
|
| 2440 | - sprintf( |
|
| 2441 | - esc_html__( |
|
| 2442 | - 'I consent to %1$s storing and using my personal information, according to their %2$sprivacy policy%3$s.', |
|
| 2443 | - 'event_espresso' |
|
| 2444 | - ), |
|
| 2445 | - $org_config->name, |
|
| 2446 | - $opening_a_tag, |
|
| 2447 | - $closing_a_tag |
|
| 2448 | - ) |
|
| 2449 | - ); |
|
| 2450 | - } |
|
| 2451 | - } |
|
| 2452 | - |
|
| 2453 | - |
|
| 2454 | - /** |
|
| 2455 | - * @return boolean |
|
| 2456 | - */ |
|
| 2457 | - public function track_invalid_checkout_access() |
|
| 2458 | - { |
|
| 2459 | - return $this->track_invalid_checkout_access; |
|
| 2460 | - } |
|
| 2461 | - |
|
| 2462 | - |
|
| 2463 | - /** |
|
| 2464 | - * @param boolean $track_invalid_checkout_access |
|
| 2465 | - */ |
|
| 2466 | - public function set_track_invalid_checkout_access($track_invalid_checkout_access) |
|
| 2467 | - { |
|
| 2468 | - $this->track_invalid_checkout_access = filter_var( |
|
| 2469 | - $track_invalid_checkout_access, |
|
| 2470 | - FILTER_VALIDATE_BOOLEAN |
|
| 2471 | - ); |
|
| 2472 | - } |
|
| 2473 | - |
|
| 2474 | - |
|
| 2475 | - /** |
|
| 2476 | - * Gets the options to make availalbe for the gateway log lifespan |
|
| 2477 | - * @return array |
|
| 2478 | - */ |
|
| 2479 | - public function gatewayLogLifespanOptions() |
|
| 2480 | - { |
|
| 2481 | - return (array) apply_filters( |
|
| 2482 | - 'FHEE_EE_Admin_Config__gatewayLogLifespanOptions', |
|
| 2483 | - array( |
|
| 2484 | - '1 second' => esc_html__('Don\'t Log At All', 'event_espresso'), |
|
| 2485 | - '1 day' => esc_html__('1 Day', 'event_espresso'), |
|
| 2486 | - '7 days' => esc_html__('7 Days', 'event_espresso'), |
|
| 2487 | - '14 days' => esc_html__('14 Days', 'event_espresso'), |
|
| 2488 | - '30 days' => esc_html__('30 Days', 'event_espresso') |
|
| 2489 | - ) |
|
| 2490 | - ); |
|
| 2491 | - } |
|
| 2492 | - |
|
| 2493 | - |
|
| 2494 | - /** |
|
| 2495 | - * @return bool |
|
| 2496 | - */ |
|
| 2497 | - public function isConsentCheckboxEnabled() |
|
| 2498 | - { |
|
| 2499 | - return $this->consent_checkbox_enabled; |
|
| 2500 | - } |
|
| 2501 | - |
|
| 2502 | - |
|
| 2503 | - /** |
|
| 2504 | - * @param bool $consent_checkbox_enabled |
|
| 2505 | - */ |
|
| 2506 | - public function setConsentCheckboxEnabled($consent_checkbox_enabled) |
|
| 2507 | - { |
|
| 2508 | - $this->consent_checkbox_enabled = filter_var( |
|
| 2509 | - $consent_checkbox_enabled, |
|
| 2510 | - FILTER_VALIDATE_BOOLEAN |
|
| 2511 | - ); |
|
| 2512 | - } |
|
| 2513 | - |
|
| 2514 | - |
|
| 2515 | - /** |
|
| 2516 | - * @return string |
|
| 2517 | - */ |
|
| 2518 | - public function getConsentCheckboxLabelText() |
|
| 2519 | - { |
|
| 2520 | - return $this->consent_checkbox_label_text; |
|
| 2521 | - } |
|
| 2522 | - |
|
| 2523 | - |
|
| 2524 | - /** |
|
| 2525 | - * @param string $consent_checkbox_label_text |
|
| 2526 | - */ |
|
| 2527 | - public function setConsentCheckboxLabelText($consent_checkbox_label_text) |
|
| 2528 | - { |
|
| 2529 | - $this->consent_checkbox_label_text = (string) $consent_checkbox_label_text; |
|
| 2530 | - } |
|
| 2344 | + public $gateway_log_lifespan = '1 week'; |
|
| 2345 | + |
|
| 2346 | + |
|
| 2347 | + /** |
|
| 2348 | + * class constructor |
|
| 2349 | + * |
|
| 2350 | + * @access public |
|
| 2351 | + */ |
|
| 2352 | + public function __construct() |
|
| 2353 | + { |
|
| 2354 | + // set default registration settings |
|
| 2355 | + $this->default_STS_ID = EEM_Registration::status_id_pending_payment; |
|
| 2356 | + $this->email_validation_level = 'wp_default'; |
|
| 2357 | + $this->show_pending_payment_options = true; |
|
| 2358 | + $this->skip_reg_confirmation = true; |
|
| 2359 | + $this->reg_steps = array(); |
|
| 2360 | + $this->reg_confirmation_last = false; |
|
| 2361 | + $this->use_bot_trap = true; |
|
| 2362 | + $this->use_encryption = true; |
|
| 2363 | + $this->use_captcha = false; |
|
| 2364 | + $this->recaptcha_theme = 'light'; |
|
| 2365 | + $this->recaptcha_badge = 'bottomleft'; |
|
| 2366 | + $this->recaptcha_type = 'image'; |
|
| 2367 | + $this->recaptcha_language = 'en'; |
|
| 2368 | + $this->recaptcha_publickey = null; |
|
| 2369 | + $this->recaptcha_privatekey = null; |
|
| 2370 | + $this->recaptcha_protected_forms = array(); |
|
| 2371 | + $this->recaptcha_width = 500; |
|
| 2372 | + $this->default_maximum_number_of_tickets = 10; |
|
| 2373 | + $this->consent_checkbox_enabled = false; |
|
| 2374 | + $this->consent_checkbox_label_text = ''; |
|
| 2375 | + $this->gateway_log_lifespan = '7 days'; |
|
| 2376 | + } |
|
| 2377 | + |
|
| 2378 | + |
|
| 2379 | + /** |
|
| 2380 | + * This is called by the config loader and hooks are initialized AFTER the config has been populated. |
|
| 2381 | + * |
|
| 2382 | + * @since 4.8.8.rc.019 |
|
| 2383 | + */ |
|
| 2384 | + public function do_hooks() |
|
| 2385 | + { |
|
| 2386 | + add_action('AHEE__EE_Config___load_core_config__end', array($this, 'set_default_reg_status_on_EEM_Event')); |
|
| 2387 | + add_action('AHEE__EE_Config___load_core_config__end', array($this, 'set_default_max_ticket_on_EEM_Event')); |
|
| 2388 | + add_action('setup_theme', array($this, 'setDefaultCheckboxLabelText')); |
|
| 2389 | + } |
|
| 2390 | + |
|
| 2391 | + |
|
| 2392 | + /** |
|
| 2393 | + * Hooked into `AHEE__EE_Config___load_core_config__end` to ensure the default for the |
|
| 2394 | + * EVT_default_registration_status field matches the config setting for default_STS_ID. |
|
| 2395 | + */ |
|
| 2396 | + public function set_default_reg_status_on_EEM_Event() |
|
| 2397 | + { |
|
| 2398 | + EEM_Event::set_default_reg_status($this->default_STS_ID); |
|
| 2399 | + } |
|
| 2400 | + |
|
| 2401 | + |
|
| 2402 | + /** |
|
| 2403 | + * Hooked into `AHEE__EE_Config___load_core_config__end` to ensure the default for the EVT_additional_limit field |
|
| 2404 | + * for Events matches the config setting for default_maximum_number_of_tickets |
|
| 2405 | + */ |
|
| 2406 | + public function set_default_max_ticket_on_EEM_Event() |
|
| 2407 | + { |
|
| 2408 | + EEM_Event::set_default_additional_limit($this->default_maximum_number_of_tickets); |
|
| 2409 | + } |
|
| 2410 | + |
|
| 2411 | + |
|
| 2412 | + /** |
|
| 2413 | + * Sets the default consent checkbox text. This needs to be done a bit later than when EE_Registration_Config is |
|
| 2414 | + * constructed because that happens before we can get the privacy policy page's permalink. |
|
| 2415 | + * |
|
| 2416 | + * @throws InvalidArgumentException |
|
| 2417 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2418 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2419 | + */ |
|
| 2420 | + public function setDefaultCheckboxLabelText() |
|
| 2421 | + { |
|
| 2422 | + if ($this->getConsentCheckboxLabelText() === null |
|
| 2423 | + || $this->getConsentCheckboxLabelText() === '') { |
|
| 2424 | + $opening_a_tag = ''; |
|
| 2425 | + $closing_a_tag = ''; |
|
| 2426 | + if (function_exists('get_privacy_policy_url')) { |
|
| 2427 | + $privacy_page_url = get_privacy_policy_url(); |
|
| 2428 | + if (! empty($privacy_page_url)) { |
|
| 2429 | + $opening_a_tag = '<a href="' . $privacy_page_url . '" target="_blank">'; |
|
| 2430 | + $closing_a_tag = '</a>'; |
|
| 2431 | + } |
|
| 2432 | + } |
|
| 2433 | + $loader = LoaderFactory::getLoader(); |
|
| 2434 | + $org_config = $loader->getShared('EE_Organization_Config'); |
|
| 2435 | + /** |
|
| 2436 | + * @var $org_config EE_Organization_Config |
|
| 2437 | + */ |
|
| 2438 | + |
|
| 2439 | + $this->setConsentCheckboxLabelText( |
|
| 2440 | + sprintf( |
|
| 2441 | + esc_html__( |
|
| 2442 | + 'I consent to %1$s storing and using my personal information, according to their %2$sprivacy policy%3$s.', |
|
| 2443 | + 'event_espresso' |
|
| 2444 | + ), |
|
| 2445 | + $org_config->name, |
|
| 2446 | + $opening_a_tag, |
|
| 2447 | + $closing_a_tag |
|
| 2448 | + ) |
|
| 2449 | + ); |
|
| 2450 | + } |
|
| 2451 | + } |
|
| 2452 | + |
|
| 2453 | + |
|
| 2454 | + /** |
|
| 2455 | + * @return boolean |
|
| 2456 | + */ |
|
| 2457 | + public function track_invalid_checkout_access() |
|
| 2458 | + { |
|
| 2459 | + return $this->track_invalid_checkout_access; |
|
| 2460 | + } |
|
| 2461 | + |
|
| 2462 | + |
|
| 2463 | + /** |
|
| 2464 | + * @param boolean $track_invalid_checkout_access |
|
| 2465 | + */ |
|
| 2466 | + public function set_track_invalid_checkout_access($track_invalid_checkout_access) |
|
| 2467 | + { |
|
| 2468 | + $this->track_invalid_checkout_access = filter_var( |
|
| 2469 | + $track_invalid_checkout_access, |
|
| 2470 | + FILTER_VALIDATE_BOOLEAN |
|
| 2471 | + ); |
|
| 2472 | + } |
|
| 2473 | + |
|
| 2474 | + |
|
| 2475 | + /** |
|
| 2476 | + * Gets the options to make availalbe for the gateway log lifespan |
|
| 2477 | + * @return array |
|
| 2478 | + */ |
|
| 2479 | + public function gatewayLogLifespanOptions() |
|
| 2480 | + { |
|
| 2481 | + return (array) apply_filters( |
|
| 2482 | + 'FHEE_EE_Admin_Config__gatewayLogLifespanOptions', |
|
| 2483 | + array( |
|
| 2484 | + '1 second' => esc_html__('Don\'t Log At All', 'event_espresso'), |
|
| 2485 | + '1 day' => esc_html__('1 Day', 'event_espresso'), |
|
| 2486 | + '7 days' => esc_html__('7 Days', 'event_espresso'), |
|
| 2487 | + '14 days' => esc_html__('14 Days', 'event_espresso'), |
|
| 2488 | + '30 days' => esc_html__('30 Days', 'event_espresso') |
|
| 2489 | + ) |
|
| 2490 | + ); |
|
| 2491 | + } |
|
| 2492 | + |
|
| 2493 | + |
|
| 2494 | + /** |
|
| 2495 | + * @return bool |
|
| 2496 | + */ |
|
| 2497 | + public function isConsentCheckboxEnabled() |
|
| 2498 | + { |
|
| 2499 | + return $this->consent_checkbox_enabled; |
|
| 2500 | + } |
|
| 2501 | + |
|
| 2502 | + |
|
| 2503 | + /** |
|
| 2504 | + * @param bool $consent_checkbox_enabled |
|
| 2505 | + */ |
|
| 2506 | + public function setConsentCheckboxEnabled($consent_checkbox_enabled) |
|
| 2507 | + { |
|
| 2508 | + $this->consent_checkbox_enabled = filter_var( |
|
| 2509 | + $consent_checkbox_enabled, |
|
| 2510 | + FILTER_VALIDATE_BOOLEAN |
|
| 2511 | + ); |
|
| 2512 | + } |
|
| 2513 | + |
|
| 2514 | + |
|
| 2515 | + /** |
|
| 2516 | + * @return string |
|
| 2517 | + */ |
|
| 2518 | + public function getConsentCheckboxLabelText() |
|
| 2519 | + { |
|
| 2520 | + return $this->consent_checkbox_label_text; |
|
| 2521 | + } |
|
| 2522 | + |
|
| 2523 | + |
|
| 2524 | + /** |
|
| 2525 | + * @param string $consent_checkbox_label_text |
|
| 2526 | + */ |
|
| 2527 | + public function setConsentCheckboxLabelText($consent_checkbox_label_text) |
|
| 2528 | + { |
|
| 2529 | + $this->consent_checkbox_label_text = (string) $consent_checkbox_label_text; |
|
| 2530 | + } |
|
| 2531 | 2531 | } |
| 2532 | 2532 | |
| 2533 | 2533 | /** |
@@ -2536,154 +2536,154 @@ discard block |
||
| 2536 | 2536 | class EE_Admin_Config extends EE_Config_Base |
| 2537 | 2537 | { |
| 2538 | 2538 | |
| 2539 | - /** |
|
| 2540 | - * @var boolean $use_personnel_manager |
|
| 2541 | - */ |
|
| 2542 | - public $use_personnel_manager; |
|
| 2543 | - |
|
| 2544 | - /** |
|
| 2545 | - * @var boolean $use_dashboard_widget |
|
| 2546 | - */ |
|
| 2547 | - public $use_dashboard_widget; |
|
| 2548 | - |
|
| 2549 | - /** |
|
| 2550 | - * @var int $events_in_dashboard |
|
| 2551 | - */ |
|
| 2552 | - public $events_in_dashboard; |
|
| 2553 | - |
|
| 2554 | - /** |
|
| 2555 | - * @var boolean $use_event_timezones |
|
| 2556 | - */ |
|
| 2557 | - public $use_event_timezones; |
|
| 2558 | - |
|
| 2559 | - /** |
|
| 2560 | - * @var boolean $use_full_logging |
|
| 2561 | - */ |
|
| 2562 | - public $use_full_logging; |
|
| 2563 | - |
|
| 2564 | - /** |
|
| 2565 | - * @var string $log_file_name |
|
| 2566 | - */ |
|
| 2567 | - public $log_file_name; |
|
| 2568 | - |
|
| 2569 | - /** |
|
| 2570 | - * @var string $debug_file_name |
|
| 2571 | - */ |
|
| 2572 | - public $debug_file_name; |
|
| 2573 | - |
|
| 2574 | - /** |
|
| 2575 | - * @var boolean $use_remote_logging |
|
| 2576 | - */ |
|
| 2577 | - public $use_remote_logging; |
|
| 2578 | - |
|
| 2579 | - /** |
|
| 2580 | - * @var string $remote_logging_url |
|
| 2581 | - */ |
|
| 2582 | - public $remote_logging_url; |
|
| 2583 | - |
|
| 2584 | - /** |
|
| 2585 | - * @var boolean $show_reg_footer |
|
| 2586 | - */ |
|
| 2587 | - public $show_reg_footer; |
|
| 2588 | - |
|
| 2589 | - /** |
|
| 2590 | - * @var string $affiliate_id |
|
| 2591 | - */ |
|
| 2592 | - public $affiliate_id; |
|
| 2593 | - |
|
| 2594 | - /** |
|
| 2595 | - * help tours on or off (global setting) |
|
| 2596 | - * |
|
| 2597 | - * @var boolean |
|
| 2598 | - */ |
|
| 2599 | - public $help_tour_activation; |
|
| 2600 | - |
|
| 2601 | - /** |
|
| 2602 | - * adds extra layer of encoding to session data to prevent serialization errors |
|
| 2603 | - * but is incompatible with some server configuration errors |
|
| 2604 | - * if you get "500 internal server errors" during registration, try turning this on |
|
| 2605 | - * if you get PHP fatal errors regarding base 64 methods not defined, then turn this off |
|
| 2606 | - * |
|
| 2607 | - * @var boolean $encode_session_data |
|
| 2608 | - */ |
|
| 2609 | - private $encode_session_data = false; |
|
| 2610 | - |
|
| 2611 | - |
|
| 2612 | - /** |
|
| 2613 | - * class constructor |
|
| 2614 | - * |
|
| 2615 | - * @access public |
|
| 2616 | - */ |
|
| 2617 | - public function __construct() |
|
| 2618 | - { |
|
| 2619 | - // set default general admin settings |
|
| 2620 | - $this->use_personnel_manager = true; |
|
| 2621 | - $this->use_dashboard_widget = true; |
|
| 2622 | - $this->events_in_dashboard = 30; |
|
| 2623 | - $this->use_event_timezones = false; |
|
| 2624 | - $this->use_full_logging = false; |
|
| 2625 | - $this->use_remote_logging = false; |
|
| 2626 | - $this->remote_logging_url = null; |
|
| 2627 | - $this->show_reg_footer = true; |
|
| 2628 | - $this->affiliate_id = 'default'; |
|
| 2629 | - $this->help_tour_activation = true; |
|
| 2630 | - $this->encode_session_data = false; |
|
| 2631 | - } |
|
| 2632 | - |
|
| 2633 | - |
|
| 2634 | - /** |
|
| 2635 | - * @param bool $reset |
|
| 2636 | - * @return string |
|
| 2637 | - */ |
|
| 2638 | - public function log_file_name($reset = false) |
|
| 2639 | - { |
|
| 2640 | - if (empty($this->log_file_name) || $reset) { |
|
| 2641 | - $this->log_file_name = sanitize_key('espresso_log_' . md5(uniqid('', true))) . '.txt'; |
|
| 2642 | - EE_Config::instance()->update_espresso_config(false, false); |
|
| 2643 | - } |
|
| 2644 | - return $this->log_file_name; |
|
| 2645 | - } |
|
| 2646 | - |
|
| 2647 | - |
|
| 2648 | - /** |
|
| 2649 | - * @param bool $reset |
|
| 2650 | - * @return string |
|
| 2651 | - */ |
|
| 2652 | - public function debug_file_name($reset = false) |
|
| 2653 | - { |
|
| 2654 | - if (empty($this->debug_file_name) || $reset) { |
|
| 2655 | - $this->debug_file_name = sanitize_key('espresso_debug_' . md5(uniqid('', true))) . '.txt'; |
|
| 2656 | - EE_Config::instance()->update_espresso_config(false, false); |
|
| 2657 | - } |
|
| 2658 | - return $this->debug_file_name; |
|
| 2659 | - } |
|
| 2660 | - |
|
| 2661 | - |
|
| 2662 | - /** |
|
| 2663 | - * @return string |
|
| 2664 | - */ |
|
| 2665 | - public function affiliate_id() |
|
| 2666 | - { |
|
| 2667 | - return ! empty($this->affiliate_id) ? $this->affiliate_id : 'default'; |
|
| 2668 | - } |
|
| 2669 | - |
|
| 2670 | - |
|
| 2671 | - /** |
|
| 2672 | - * @return boolean |
|
| 2673 | - */ |
|
| 2674 | - public function encode_session_data() |
|
| 2675 | - { |
|
| 2676 | - return filter_var($this->encode_session_data, FILTER_VALIDATE_BOOLEAN); |
|
| 2677 | - } |
|
| 2678 | - |
|
| 2679 | - |
|
| 2680 | - /** |
|
| 2681 | - * @param boolean $encode_session_data |
|
| 2682 | - */ |
|
| 2683 | - public function set_encode_session_data($encode_session_data) |
|
| 2684 | - { |
|
| 2685 | - $this->encode_session_data = filter_var($encode_session_data, FILTER_VALIDATE_BOOLEAN); |
|
| 2686 | - } |
|
| 2539 | + /** |
|
| 2540 | + * @var boolean $use_personnel_manager |
|
| 2541 | + */ |
|
| 2542 | + public $use_personnel_manager; |
|
| 2543 | + |
|
| 2544 | + /** |
|
| 2545 | + * @var boolean $use_dashboard_widget |
|
| 2546 | + */ |
|
| 2547 | + public $use_dashboard_widget; |
|
| 2548 | + |
|
| 2549 | + /** |
|
| 2550 | + * @var int $events_in_dashboard |
|
| 2551 | + */ |
|
| 2552 | + public $events_in_dashboard; |
|
| 2553 | + |
|
| 2554 | + /** |
|
| 2555 | + * @var boolean $use_event_timezones |
|
| 2556 | + */ |
|
| 2557 | + public $use_event_timezones; |
|
| 2558 | + |
|
| 2559 | + /** |
|
| 2560 | + * @var boolean $use_full_logging |
|
| 2561 | + */ |
|
| 2562 | + public $use_full_logging; |
|
| 2563 | + |
|
| 2564 | + /** |
|
| 2565 | + * @var string $log_file_name |
|
| 2566 | + */ |
|
| 2567 | + public $log_file_name; |
|
| 2568 | + |
|
| 2569 | + /** |
|
| 2570 | + * @var string $debug_file_name |
|
| 2571 | + */ |
|
| 2572 | + public $debug_file_name; |
|
| 2573 | + |
|
| 2574 | + /** |
|
| 2575 | + * @var boolean $use_remote_logging |
|
| 2576 | + */ |
|
| 2577 | + public $use_remote_logging; |
|
| 2578 | + |
|
| 2579 | + /** |
|
| 2580 | + * @var string $remote_logging_url |
|
| 2581 | + */ |
|
| 2582 | + public $remote_logging_url; |
|
| 2583 | + |
|
| 2584 | + /** |
|
| 2585 | + * @var boolean $show_reg_footer |
|
| 2586 | + */ |
|
| 2587 | + public $show_reg_footer; |
|
| 2588 | + |
|
| 2589 | + /** |
|
| 2590 | + * @var string $affiliate_id |
|
| 2591 | + */ |
|
| 2592 | + public $affiliate_id; |
|
| 2593 | + |
|
| 2594 | + /** |
|
| 2595 | + * help tours on or off (global setting) |
|
| 2596 | + * |
|
| 2597 | + * @var boolean |
|
| 2598 | + */ |
|
| 2599 | + public $help_tour_activation; |
|
| 2600 | + |
|
| 2601 | + /** |
|
| 2602 | + * adds extra layer of encoding to session data to prevent serialization errors |
|
| 2603 | + * but is incompatible with some server configuration errors |
|
| 2604 | + * if you get "500 internal server errors" during registration, try turning this on |
|
| 2605 | + * if you get PHP fatal errors regarding base 64 methods not defined, then turn this off |
|
| 2606 | + * |
|
| 2607 | + * @var boolean $encode_session_data |
|
| 2608 | + */ |
|
| 2609 | + private $encode_session_data = false; |
|
| 2610 | + |
|
| 2611 | + |
|
| 2612 | + /** |
|
| 2613 | + * class constructor |
|
| 2614 | + * |
|
| 2615 | + * @access public |
|
| 2616 | + */ |
|
| 2617 | + public function __construct() |
|
| 2618 | + { |
|
| 2619 | + // set default general admin settings |
|
| 2620 | + $this->use_personnel_manager = true; |
|
| 2621 | + $this->use_dashboard_widget = true; |
|
| 2622 | + $this->events_in_dashboard = 30; |
|
| 2623 | + $this->use_event_timezones = false; |
|
| 2624 | + $this->use_full_logging = false; |
|
| 2625 | + $this->use_remote_logging = false; |
|
| 2626 | + $this->remote_logging_url = null; |
|
| 2627 | + $this->show_reg_footer = true; |
|
| 2628 | + $this->affiliate_id = 'default'; |
|
| 2629 | + $this->help_tour_activation = true; |
|
| 2630 | + $this->encode_session_data = false; |
|
| 2631 | + } |
|
| 2632 | + |
|
| 2633 | + |
|
| 2634 | + /** |
|
| 2635 | + * @param bool $reset |
|
| 2636 | + * @return string |
|
| 2637 | + */ |
|
| 2638 | + public function log_file_name($reset = false) |
|
| 2639 | + { |
|
| 2640 | + if (empty($this->log_file_name) || $reset) { |
|
| 2641 | + $this->log_file_name = sanitize_key('espresso_log_' . md5(uniqid('', true))) . '.txt'; |
|
| 2642 | + EE_Config::instance()->update_espresso_config(false, false); |
|
| 2643 | + } |
|
| 2644 | + return $this->log_file_name; |
|
| 2645 | + } |
|
| 2646 | + |
|
| 2647 | + |
|
| 2648 | + /** |
|
| 2649 | + * @param bool $reset |
|
| 2650 | + * @return string |
|
| 2651 | + */ |
|
| 2652 | + public function debug_file_name($reset = false) |
|
| 2653 | + { |
|
| 2654 | + if (empty($this->debug_file_name) || $reset) { |
|
| 2655 | + $this->debug_file_name = sanitize_key('espresso_debug_' . md5(uniqid('', true))) . '.txt'; |
|
| 2656 | + EE_Config::instance()->update_espresso_config(false, false); |
|
| 2657 | + } |
|
| 2658 | + return $this->debug_file_name; |
|
| 2659 | + } |
|
| 2660 | + |
|
| 2661 | + |
|
| 2662 | + /** |
|
| 2663 | + * @return string |
|
| 2664 | + */ |
|
| 2665 | + public function affiliate_id() |
|
| 2666 | + { |
|
| 2667 | + return ! empty($this->affiliate_id) ? $this->affiliate_id : 'default'; |
|
| 2668 | + } |
|
| 2669 | + |
|
| 2670 | + |
|
| 2671 | + /** |
|
| 2672 | + * @return boolean |
|
| 2673 | + */ |
|
| 2674 | + public function encode_session_data() |
|
| 2675 | + { |
|
| 2676 | + return filter_var($this->encode_session_data, FILTER_VALIDATE_BOOLEAN); |
|
| 2677 | + } |
|
| 2678 | + |
|
| 2679 | + |
|
| 2680 | + /** |
|
| 2681 | + * @param boolean $encode_session_data |
|
| 2682 | + */ |
|
| 2683 | + public function set_encode_session_data($encode_session_data) |
|
| 2684 | + { |
|
| 2685 | + $this->encode_session_data = filter_var($encode_session_data, FILTER_VALIDATE_BOOLEAN); |
|
| 2686 | + } |
|
| 2687 | 2687 | } |
| 2688 | 2688 | |
| 2689 | 2689 | /** |
@@ -2692,70 +2692,70 @@ discard block |
||
| 2692 | 2692 | class EE_Template_Config extends EE_Config_Base |
| 2693 | 2693 | { |
| 2694 | 2694 | |
| 2695 | - /** |
|
| 2696 | - * @var boolean $enable_default_style |
|
| 2697 | - */ |
|
| 2698 | - public $enable_default_style; |
|
| 2699 | - |
|
| 2700 | - /** |
|
| 2701 | - * @var string $custom_style_sheet |
|
| 2702 | - */ |
|
| 2703 | - public $custom_style_sheet; |
|
| 2704 | - |
|
| 2705 | - /** |
|
| 2706 | - * @var boolean $display_address_in_regform |
|
| 2707 | - */ |
|
| 2708 | - public $display_address_in_regform; |
|
| 2709 | - |
|
| 2710 | - /** |
|
| 2711 | - * @var int $display_description_on_multi_reg_page |
|
| 2712 | - */ |
|
| 2713 | - public $display_description_on_multi_reg_page; |
|
| 2714 | - |
|
| 2715 | - /** |
|
| 2716 | - * @var boolean $use_custom_templates |
|
| 2717 | - */ |
|
| 2718 | - public $use_custom_templates; |
|
| 2719 | - |
|
| 2720 | - /** |
|
| 2721 | - * @var string $current_espresso_theme |
|
| 2722 | - */ |
|
| 2723 | - public $current_espresso_theme; |
|
| 2724 | - |
|
| 2725 | - /** |
|
| 2726 | - * @var EE_Ticket_Selector_Config $EED_Ticket_Selector |
|
| 2727 | - */ |
|
| 2728 | - public $EED_Ticket_Selector; |
|
| 2729 | - |
|
| 2730 | - /** |
|
| 2731 | - * @var EE_Event_Single_Config $EED_Event_Single |
|
| 2732 | - */ |
|
| 2733 | - public $EED_Event_Single; |
|
| 2734 | - |
|
| 2735 | - /** |
|
| 2736 | - * @var EE_Events_Archive_Config $EED_Events_Archive |
|
| 2737 | - */ |
|
| 2738 | - public $EED_Events_Archive; |
|
| 2739 | - |
|
| 2740 | - |
|
| 2741 | - /** |
|
| 2742 | - * class constructor |
|
| 2743 | - * |
|
| 2744 | - * @access public |
|
| 2745 | - */ |
|
| 2746 | - public function __construct() |
|
| 2747 | - { |
|
| 2748 | - // set default template settings |
|
| 2749 | - $this->enable_default_style = true; |
|
| 2750 | - $this->custom_style_sheet = null; |
|
| 2751 | - $this->display_address_in_regform = true; |
|
| 2752 | - $this->display_description_on_multi_reg_page = false; |
|
| 2753 | - $this->use_custom_templates = false; |
|
| 2754 | - $this->current_espresso_theme = 'Espresso_Arabica_2014'; |
|
| 2755 | - $this->EED_Event_Single = null; |
|
| 2756 | - $this->EED_Events_Archive = null; |
|
| 2757 | - $this->EED_Ticket_Selector = null; |
|
| 2758 | - } |
|
| 2695 | + /** |
|
| 2696 | + * @var boolean $enable_default_style |
|
| 2697 | + */ |
|
| 2698 | + public $enable_default_style; |
|
| 2699 | + |
|
| 2700 | + /** |
|
| 2701 | + * @var string $custom_style_sheet |
|
| 2702 | + */ |
|
| 2703 | + public $custom_style_sheet; |
|
| 2704 | + |
|
| 2705 | + /** |
|
| 2706 | + * @var boolean $display_address_in_regform |
|
| 2707 | + */ |
|
| 2708 | + public $display_address_in_regform; |
|
| 2709 | + |
|
| 2710 | + /** |
|
| 2711 | + * @var int $display_description_on_multi_reg_page |
|
| 2712 | + */ |
|
| 2713 | + public $display_description_on_multi_reg_page; |
|
| 2714 | + |
|
| 2715 | + /** |
|
| 2716 | + * @var boolean $use_custom_templates |
|
| 2717 | + */ |
|
| 2718 | + public $use_custom_templates; |
|
| 2719 | + |
|
| 2720 | + /** |
|
| 2721 | + * @var string $current_espresso_theme |
|
| 2722 | + */ |
|
| 2723 | + public $current_espresso_theme; |
|
| 2724 | + |
|
| 2725 | + /** |
|
| 2726 | + * @var EE_Ticket_Selector_Config $EED_Ticket_Selector |
|
| 2727 | + */ |
|
| 2728 | + public $EED_Ticket_Selector; |
|
| 2729 | + |
|
| 2730 | + /** |
|
| 2731 | + * @var EE_Event_Single_Config $EED_Event_Single |
|
| 2732 | + */ |
|
| 2733 | + public $EED_Event_Single; |
|
| 2734 | + |
|
| 2735 | + /** |
|
| 2736 | + * @var EE_Events_Archive_Config $EED_Events_Archive |
|
| 2737 | + */ |
|
| 2738 | + public $EED_Events_Archive; |
|
| 2739 | + |
|
| 2740 | + |
|
| 2741 | + /** |
|
| 2742 | + * class constructor |
|
| 2743 | + * |
|
| 2744 | + * @access public |
|
| 2745 | + */ |
|
| 2746 | + public function __construct() |
|
| 2747 | + { |
|
| 2748 | + // set default template settings |
|
| 2749 | + $this->enable_default_style = true; |
|
| 2750 | + $this->custom_style_sheet = null; |
|
| 2751 | + $this->display_address_in_regform = true; |
|
| 2752 | + $this->display_description_on_multi_reg_page = false; |
|
| 2753 | + $this->use_custom_templates = false; |
|
| 2754 | + $this->current_espresso_theme = 'Espresso_Arabica_2014'; |
|
| 2755 | + $this->EED_Event_Single = null; |
|
| 2756 | + $this->EED_Events_Archive = null; |
|
| 2757 | + $this->EED_Ticket_Selector = null; |
|
| 2758 | + } |
|
| 2759 | 2759 | } |
| 2760 | 2760 | |
| 2761 | 2761 | /** |
@@ -2764,114 +2764,114 @@ discard block |
||
| 2764 | 2764 | class EE_Map_Config extends EE_Config_Base |
| 2765 | 2765 | { |
| 2766 | 2766 | |
| 2767 | - /** |
|
| 2768 | - * @var boolean $use_google_maps |
|
| 2769 | - */ |
|
| 2770 | - public $use_google_maps; |
|
| 2771 | - |
|
| 2772 | - /** |
|
| 2773 | - * @var string $api_key |
|
| 2774 | - */ |
|
| 2775 | - public $google_map_api_key; |
|
| 2776 | - |
|
| 2777 | - /** |
|
| 2778 | - * @var int $event_details_map_width |
|
| 2779 | - */ |
|
| 2780 | - public $event_details_map_width; |
|
| 2781 | - |
|
| 2782 | - /** |
|
| 2783 | - * @var int $event_details_map_height |
|
| 2784 | - */ |
|
| 2785 | - public $event_details_map_height; |
|
| 2786 | - |
|
| 2787 | - /** |
|
| 2788 | - * @var int $event_details_map_zoom |
|
| 2789 | - */ |
|
| 2790 | - public $event_details_map_zoom; |
|
| 2791 | - |
|
| 2792 | - /** |
|
| 2793 | - * @var boolean $event_details_display_nav |
|
| 2794 | - */ |
|
| 2795 | - public $event_details_display_nav; |
|
| 2796 | - |
|
| 2797 | - /** |
|
| 2798 | - * @var boolean $event_details_nav_size |
|
| 2799 | - */ |
|
| 2800 | - public $event_details_nav_size; |
|
| 2801 | - |
|
| 2802 | - /** |
|
| 2803 | - * @var string $event_details_control_type |
|
| 2804 | - */ |
|
| 2805 | - public $event_details_control_type; |
|
| 2806 | - |
|
| 2807 | - /** |
|
| 2808 | - * @var string $event_details_map_align |
|
| 2809 | - */ |
|
| 2810 | - public $event_details_map_align; |
|
| 2811 | - |
|
| 2812 | - /** |
|
| 2813 | - * @var int $event_list_map_width |
|
| 2814 | - */ |
|
| 2815 | - public $event_list_map_width; |
|
| 2816 | - |
|
| 2817 | - /** |
|
| 2818 | - * @var int $event_list_map_height |
|
| 2819 | - */ |
|
| 2820 | - public $event_list_map_height; |
|
| 2821 | - |
|
| 2822 | - /** |
|
| 2823 | - * @var int $event_list_map_zoom |
|
| 2824 | - */ |
|
| 2825 | - public $event_list_map_zoom; |
|
| 2826 | - |
|
| 2827 | - /** |
|
| 2828 | - * @var boolean $event_list_display_nav |
|
| 2829 | - */ |
|
| 2830 | - public $event_list_display_nav; |
|
| 2831 | - |
|
| 2832 | - /** |
|
| 2833 | - * @var boolean $event_list_nav_size |
|
| 2834 | - */ |
|
| 2835 | - public $event_list_nav_size; |
|
| 2836 | - |
|
| 2837 | - /** |
|
| 2838 | - * @var string $event_list_control_type |
|
| 2839 | - */ |
|
| 2840 | - public $event_list_control_type; |
|
| 2841 | - |
|
| 2842 | - /** |
|
| 2843 | - * @var string $event_list_map_align |
|
| 2844 | - */ |
|
| 2845 | - public $event_list_map_align; |
|
| 2846 | - |
|
| 2847 | - |
|
| 2848 | - /** |
|
| 2849 | - * class constructor |
|
| 2850 | - * |
|
| 2851 | - * @access public |
|
| 2852 | - */ |
|
| 2853 | - public function __construct() |
|
| 2854 | - { |
|
| 2855 | - // set default map settings |
|
| 2856 | - $this->use_google_maps = true; |
|
| 2857 | - $this->google_map_api_key = ''; |
|
| 2858 | - // for event details pages (reg page) |
|
| 2859 | - $this->event_details_map_width = 585; // ee_map_width_single |
|
| 2860 | - $this->event_details_map_height = 362; // ee_map_height_single |
|
| 2861 | - $this->event_details_map_zoom = 14; // ee_map_zoom_single |
|
| 2862 | - $this->event_details_display_nav = true; // ee_map_nav_display_single |
|
| 2863 | - $this->event_details_nav_size = false; // ee_map_nav_size_single |
|
| 2864 | - $this->event_details_control_type = 'default'; // ee_map_type_control_single |
|
| 2865 | - $this->event_details_map_align = 'center'; // ee_map_align_single |
|
| 2866 | - // for event list pages |
|
| 2867 | - $this->event_list_map_width = 300; // ee_map_width |
|
| 2868 | - $this->event_list_map_height = 185; // ee_map_height |
|
| 2869 | - $this->event_list_map_zoom = 12; // ee_map_zoom |
|
| 2870 | - $this->event_list_display_nav = false; // ee_map_nav_display |
|
| 2871 | - $this->event_list_nav_size = true; // ee_map_nav_size |
|
| 2872 | - $this->event_list_control_type = 'dropdown'; // ee_map_type_control |
|
| 2873 | - $this->event_list_map_align = 'center'; // ee_map_align |
|
| 2874 | - } |
|
| 2767 | + /** |
|
| 2768 | + * @var boolean $use_google_maps |
|
| 2769 | + */ |
|
| 2770 | + public $use_google_maps; |
|
| 2771 | + |
|
| 2772 | + /** |
|
| 2773 | + * @var string $api_key |
|
| 2774 | + */ |
|
| 2775 | + public $google_map_api_key; |
|
| 2776 | + |
|
| 2777 | + /** |
|
| 2778 | + * @var int $event_details_map_width |
|
| 2779 | + */ |
|
| 2780 | + public $event_details_map_width; |
|
| 2781 | + |
|
| 2782 | + /** |
|
| 2783 | + * @var int $event_details_map_height |
|
| 2784 | + */ |
|
| 2785 | + public $event_details_map_height; |
|
| 2786 | + |
|
| 2787 | + /** |
|
| 2788 | + * @var int $event_details_map_zoom |
|
| 2789 | + */ |
|
| 2790 | + public $event_details_map_zoom; |
|
| 2791 | + |
|
| 2792 | + /** |
|
| 2793 | + * @var boolean $event_details_display_nav |
|
| 2794 | + */ |
|
| 2795 | + public $event_details_display_nav; |
|
| 2796 | + |
|
| 2797 | + /** |
|
| 2798 | + * @var boolean $event_details_nav_size |
|
| 2799 | + */ |
|
| 2800 | + public $event_details_nav_size; |
|
| 2801 | + |
|
| 2802 | + /** |
|
| 2803 | + * @var string $event_details_control_type |
|
| 2804 | + */ |
|
| 2805 | + public $event_details_control_type; |
|
| 2806 | + |
|
| 2807 | + /** |
|
| 2808 | + * @var string $event_details_map_align |
|
| 2809 | + */ |
|
| 2810 | + public $event_details_map_align; |
|
| 2811 | + |
|
| 2812 | + /** |
|
| 2813 | + * @var int $event_list_map_width |
|
| 2814 | + */ |
|
| 2815 | + public $event_list_map_width; |
|
| 2816 | + |
|
| 2817 | + /** |
|
| 2818 | + * @var int $event_list_map_height |
|
| 2819 | + */ |
|
| 2820 | + public $event_list_map_height; |
|
| 2821 | + |
|
| 2822 | + /** |
|
| 2823 | + * @var int $event_list_map_zoom |
|
| 2824 | + */ |
|
| 2825 | + public $event_list_map_zoom; |
|
| 2826 | + |
|
| 2827 | + /** |
|
| 2828 | + * @var boolean $event_list_display_nav |
|
| 2829 | + */ |
|
| 2830 | + public $event_list_display_nav; |
|
| 2831 | + |
|
| 2832 | + /** |
|
| 2833 | + * @var boolean $event_list_nav_size |
|
| 2834 | + */ |
|
| 2835 | + public $event_list_nav_size; |
|
| 2836 | + |
|
| 2837 | + /** |
|
| 2838 | + * @var string $event_list_control_type |
|
| 2839 | + */ |
|
| 2840 | + public $event_list_control_type; |
|
| 2841 | + |
|
| 2842 | + /** |
|
| 2843 | + * @var string $event_list_map_align |
|
| 2844 | + */ |
|
| 2845 | + public $event_list_map_align; |
|
| 2846 | + |
|
| 2847 | + |
|
| 2848 | + /** |
|
| 2849 | + * class constructor |
|
| 2850 | + * |
|
| 2851 | + * @access public |
|
| 2852 | + */ |
|
| 2853 | + public function __construct() |
|
| 2854 | + { |
|
| 2855 | + // set default map settings |
|
| 2856 | + $this->use_google_maps = true; |
|
| 2857 | + $this->google_map_api_key = ''; |
|
| 2858 | + // for event details pages (reg page) |
|
| 2859 | + $this->event_details_map_width = 585; // ee_map_width_single |
|
| 2860 | + $this->event_details_map_height = 362; // ee_map_height_single |
|
| 2861 | + $this->event_details_map_zoom = 14; // ee_map_zoom_single |
|
| 2862 | + $this->event_details_display_nav = true; // ee_map_nav_display_single |
|
| 2863 | + $this->event_details_nav_size = false; // ee_map_nav_size_single |
|
| 2864 | + $this->event_details_control_type = 'default'; // ee_map_type_control_single |
|
| 2865 | + $this->event_details_map_align = 'center'; // ee_map_align_single |
|
| 2866 | + // for event list pages |
|
| 2867 | + $this->event_list_map_width = 300; // ee_map_width |
|
| 2868 | + $this->event_list_map_height = 185; // ee_map_height |
|
| 2869 | + $this->event_list_map_zoom = 12; // ee_map_zoom |
|
| 2870 | + $this->event_list_display_nav = false; // ee_map_nav_display |
|
| 2871 | + $this->event_list_nav_size = true; // ee_map_nav_size |
|
| 2872 | + $this->event_list_control_type = 'dropdown'; // ee_map_type_control |
|
| 2873 | + $this->event_list_map_align = 'center'; // ee_map_align |
|
| 2874 | + } |
|
| 2875 | 2875 | } |
| 2876 | 2876 | |
| 2877 | 2877 | /** |
@@ -2880,46 +2880,46 @@ discard block |
||
| 2880 | 2880 | class EE_Events_Archive_Config extends EE_Config_Base |
| 2881 | 2881 | { |
| 2882 | 2882 | |
| 2883 | - public $display_status_banner; |
|
| 2883 | + public $display_status_banner; |
|
| 2884 | 2884 | |
| 2885 | - public $display_description; |
|
| 2885 | + public $display_description; |
|
| 2886 | 2886 | |
| 2887 | - public $display_ticket_selector; |
|
| 2887 | + public $display_ticket_selector; |
|
| 2888 | 2888 | |
| 2889 | - public $display_datetimes; |
|
| 2889 | + public $display_datetimes; |
|
| 2890 | 2890 | |
| 2891 | - public $display_venue; |
|
| 2891 | + public $display_venue; |
|
| 2892 | 2892 | |
| 2893 | - public $display_expired_events; |
|
| 2893 | + public $display_expired_events; |
|
| 2894 | 2894 | |
| 2895 | - public $use_sortable_display_order; |
|
| 2895 | + public $use_sortable_display_order; |
|
| 2896 | 2896 | |
| 2897 | - public $display_order_tickets; |
|
| 2897 | + public $display_order_tickets; |
|
| 2898 | 2898 | |
| 2899 | - public $display_order_datetimes; |
|
| 2899 | + public $display_order_datetimes; |
|
| 2900 | 2900 | |
| 2901 | - public $display_order_event; |
|
| 2901 | + public $display_order_event; |
|
| 2902 | 2902 | |
| 2903 | - public $display_order_venue; |
|
| 2903 | + public $display_order_venue; |
|
| 2904 | 2904 | |
| 2905 | 2905 | |
| 2906 | - /** |
|
| 2907 | - * class constructor |
|
| 2908 | - */ |
|
| 2909 | - public function __construct() |
|
| 2910 | - { |
|
| 2911 | - $this->display_status_banner = 0; |
|
| 2912 | - $this->display_description = 1; |
|
| 2913 | - $this->display_ticket_selector = 0; |
|
| 2914 | - $this->display_datetimes = 1; |
|
| 2915 | - $this->display_venue = 0; |
|
| 2916 | - $this->display_expired_events = 0; |
|
| 2917 | - $this->use_sortable_display_order = false; |
|
| 2918 | - $this->display_order_tickets = 100; |
|
| 2919 | - $this->display_order_datetimes = 110; |
|
| 2920 | - $this->display_order_event = 120; |
|
| 2921 | - $this->display_order_venue = 130; |
|
| 2922 | - } |
|
| 2906 | + /** |
|
| 2907 | + * class constructor |
|
| 2908 | + */ |
|
| 2909 | + public function __construct() |
|
| 2910 | + { |
|
| 2911 | + $this->display_status_banner = 0; |
|
| 2912 | + $this->display_description = 1; |
|
| 2913 | + $this->display_ticket_selector = 0; |
|
| 2914 | + $this->display_datetimes = 1; |
|
| 2915 | + $this->display_venue = 0; |
|
| 2916 | + $this->display_expired_events = 0; |
|
| 2917 | + $this->use_sortable_display_order = false; |
|
| 2918 | + $this->display_order_tickets = 100; |
|
| 2919 | + $this->display_order_datetimes = 110; |
|
| 2920 | + $this->display_order_event = 120; |
|
| 2921 | + $this->display_order_venue = 130; |
|
| 2922 | + } |
|
| 2923 | 2923 | } |
| 2924 | 2924 | |
| 2925 | 2925 | /** |
@@ -2928,34 +2928,34 @@ discard block |
||
| 2928 | 2928 | class EE_Event_Single_Config extends EE_Config_Base |
| 2929 | 2929 | { |
| 2930 | 2930 | |
| 2931 | - public $display_status_banner_single; |
|
| 2931 | + public $display_status_banner_single; |
|
| 2932 | 2932 | |
| 2933 | - public $display_venue; |
|
| 2933 | + public $display_venue; |
|
| 2934 | 2934 | |
| 2935 | - public $use_sortable_display_order; |
|
| 2935 | + public $use_sortable_display_order; |
|
| 2936 | 2936 | |
| 2937 | - public $display_order_tickets; |
|
| 2937 | + public $display_order_tickets; |
|
| 2938 | 2938 | |
| 2939 | - public $display_order_datetimes; |
|
| 2939 | + public $display_order_datetimes; |
|
| 2940 | 2940 | |
| 2941 | - public $display_order_event; |
|
| 2941 | + public $display_order_event; |
|
| 2942 | 2942 | |
| 2943 | - public $display_order_venue; |
|
| 2943 | + public $display_order_venue; |
|
| 2944 | 2944 | |
| 2945 | 2945 | |
| 2946 | - /** |
|
| 2947 | - * class constructor |
|
| 2948 | - */ |
|
| 2949 | - public function __construct() |
|
| 2950 | - { |
|
| 2951 | - $this->display_status_banner_single = 0; |
|
| 2952 | - $this->display_venue = 1; |
|
| 2953 | - $this->use_sortable_display_order = false; |
|
| 2954 | - $this->display_order_tickets = 100; |
|
| 2955 | - $this->display_order_datetimes = 110; |
|
| 2956 | - $this->display_order_event = 120; |
|
| 2957 | - $this->display_order_venue = 130; |
|
| 2958 | - } |
|
| 2946 | + /** |
|
| 2947 | + * class constructor |
|
| 2948 | + */ |
|
| 2949 | + public function __construct() |
|
| 2950 | + { |
|
| 2951 | + $this->display_status_banner_single = 0; |
|
| 2952 | + $this->display_venue = 1; |
|
| 2953 | + $this->use_sortable_display_order = false; |
|
| 2954 | + $this->display_order_tickets = 100; |
|
| 2955 | + $this->display_order_datetimes = 110; |
|
| 2956 | + $this->display_order_event = 120; |
|
| 2957 | + $this->display_order_venue = 130; |
|
| 2958 | + } |
|
| 2959 | 2959 | } |
| 2960 | 2960 | |
| 2961 | 2961 | /** |
@@ -2964,146 +2964,146 @@ discard block |
||
| 2964 | 2964 | class EE_Ticket_Selector_Config extends EE_Config_Base |
| 2965 | 2965 | { |
| 2966 | 2966 | |
| 2967 | - /** |
|
| 2968 | - * constant to indicate that a datetime selector should NEVER be shown for ticket selectors |
|
| 2969 | - */ |
|
| 2970 | - const DO_NOT_SHOW_DATETIME_SELECTOR = 'no_datetime_selector'; |
|
| 2971 | - |
|
| 2972 | - /** |
|
| 2973 | - * constant to indicate that a datetime selector should only be shown for ticket selectors |
|
| 2974 | - * when the number of datetimes for the event matches the value set for $datetime_selector_threshold |
|
| 2975 | - */ |
|
| 2976 | - const MAYBE_SHOW_DATETIME_SELECTOR = 'maybe_datetime_selector'; |
|
| 2977 | - |
|
| 2978 | - /** |
|
| 2979 | - * @var boolean $show_ticket_sale_columns |
|
| 2980 | - */ |
|
| 2981 | - public $show_ticket_sale_columns; |
|
| 2982 | - |
|
| 2983 | - /** |
|
| 2984 | - * @var boolean $show_ticket_details |
|
| 2985 | - */ |
|
| 2986 | - public $show_ticket_details; |
|
| 2987 | - |
|
| 2988 | - /** |
|
| 2989 | - * @var boolean $show_expired_tickets |
|
| 2990 | - */ |
|
| 2991 | - public $show_expired_tickets; |
|
| 2992 | - |
|
| 2993 | - /** |
|
| 2994 | - * whether or not to display a dropdown box populated with event datetimes |
|
| 2995 | - * that toggles which tickets are displayed for a ticket selector. |
|
| 2996 | - * uses one of the *_DATETIME_SELECTOR constants defined above |
|
| 2997 | - * |
|
| 2998 | - * @var string $show_datetime_selector |
|
| 2999 | - */ |
|
| 3000 | - private $show_datetime_selector = 'no_datetime_selector'; |
|
| 3001 | - |
|
| 3002 | - /** |
|
| 3003 | - * the number of datetimes an event has to have before conditionally displaying a datetime selector |
|
| 3004 | - * |
|
| 3005 | - * @var int $datetime_selector_threshold |
|
| 3006 | - */ |
|
| 3007 | - private $datetime_selector_threshold = 3; |
|
| 3008 | - |
|
| 3009 | - |
|
| 3010 | - /** |
|
| 3011 | - * class constructor |
|
| 3012 | - */ |
|
| 3013 | - public function __construct() |
|
| 3014 | - { |
|
| 3015 | - $this->show_ticket_sale_columns = true; |
|
| 3016 | - $this->show_ticket_details = true; |
|
| 3017 | - $this->show_expired_tickets = true; |
|
| 3018 | - $this->show_datetime_selector = \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR; |
|
| 3019 | - $this->datetime_selector_threshold = 3; |
|
| 3020 | - } |
|
| 3021 | - |
|
| 3022 | - |
|
| 3023 | - /** |
|
| 3024 | - * returns true if a datetime selector should be displayed |
|
| 3025 | - * |
|
| 3026 | - * @param array $datetimes |
|
| 3027 | - * @return bool |
|
| 3028 | - */ |
|
| 3029 | - public function showDatetimeSelector(array $datetimes) |
|
| 3030 | - { |
|
| 3031 | - // if the settings are NOT: don't show OR below threshold, THEN active = true |
|
| 3032 | - return ! ( |
|
| 3033 | - $this->getShowDatetimeSelector() === \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR |
|
| 3034 | - || ( |
|
| 3035 | - $this->getShowDatetimeSelector() === \EE_Ticket_Selector_Config::MAYBE_SHOW_DATETIME_SELECTOR |
|
| 3036 | - && count($datetimes) < $this->getDatetimeSelectorThreshold() |
|
| 3037 | - ) |
|
| 3038 | - ); |
|
| 3039 | - } |
|
| 3040 | - |
|
| 3041 | - |
|
| 3042 | - /** |
|
| 3043 | - * @return string |
|
| 3044 | - */ |
|
| 3045 | - public function getShowDatetimeSelector() |
|
| 3046 | - { |
|
| 3047 | - return $this->show_datetime_selector; |
|
| 3048 | - } |
|
| 3049 | - |
|
| 3050 | - |
|
| 3051 | - /** |
|
| 3052 | - * @param bool $keys_only |
|
| 3053 | - * @return array |
|
| 3054 | - */ |
|
| 3055 | - public function getShowDatetimeSelectorOptions($keys_only = true) |
|
| 3056 | - { |
|
| 3057 | - return $keys_only |
|
| 3058 | - ? array( |
|
| 3059 | - \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR, |
|
| 3060 | - \EE_Ticket_Selector_Config::MAYBE_SHOW_DATETIME_SELECTOR, |
|
| 3061 | - ) |
|
| 3062 | - : array( |
|
| 3063 | - \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR => esc_html__( |
|
| 3064 | - 'Do not show date & time filter', |
|
| 3065 | - 'event_espresso' |
|
| 3066 | - ), |
|
| 3067 | - \EE_Ticket_Selector_Config::MAYBE_SHOW_DATETIME_SELECTOR => esc_html__( |
|
| 3068 | - 'Maybe show date & time filter', |
|
| 3069 | - 'event_espresso' |
|
| 3070 | - ), |
|
| 3071 | - ); |
|
| 3072 | - } |
|
| 3073 | - |
|
| 3074 | - |
|
| 3075 | - /** |
|
| 3076 | - * @param string $show_datetime_selector |
|
| 3077 | - */ |
|
| 3078 | - public function setShowDatetimeSelector($show_datetime_selector) |
|
| 3079 | - { |
|
| 3080 | - $this->show_datetime_selector = in_array( |
|
| 3081 | - $show_datetime_selector, |
|
| 3082 | - $this->getShowDatetimeSelectorOptions(), |
|
| 3083 | - true |
|
| 3084 | - ) |
|
| 3085 | - ? $show_datetime_selector |
|
| 3086 | - : \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR; |
|
| 3087 | - } |
|
| 3088 | - |
|
| 3089 | - |
|
| 3090 | - /** |
|
| 3091 | - * @return int |
|
| 3092 | - */ |
|
| 3093 | - public function getDatetimeSelectorThreshold() |
|
| 3094 | - { |
|
| 3095 | - return $this->datetime_selector_threshold; |
|
| 3096 | - } |
|
| 3097 | - |
|
| 3098 | - |
|
| 3099 | - /** |
|
| 3100 | - * @param int $datetime_selector_threshold |
|
| 3101 | - */ |
|
| 3102 | - public function setDatetimeSelectorThreshold($datetime_selector_threshold) |
|
| 3103 | - { |
|
| 3104 | - $datetime_selector_threshold = absint($datetime_selector_threshold); |
|
| 3105 | - $this->datetime_selector_threshold = $datetime_selector_threshold ? $datetime_selector_threshold : 3; |
|
| 3106 | - } |
|
| 2967 | + /** |
|
| 2968 | + * constant to indicate that a datetime selector should NEVER be shown for ticket selectors |
|
| 2969 | + */ |
|
| 2970 | + const DO_NOT_SHOW_DATETIME_SELECTOR = 'no_datetime_selector'; |
|
| 2971 | + |
|
| 2972 | + /** |
|
| 2973 | + * constant to indicate that a datetime selector should only be shown for ticket selectors |
|
| 2974 | + * when the number of datetimes for the event matches the value set for $datetime_selector_threshold |
|
| 2975 | + */ |
|
| 2976 | + const MAYBE_SHOW_DATETIME_SELECTOR = 'maybe_datetime_selector'; |
|
| 2977 | + |
|
| 2978 | + /** |
|
| 2979 | + * @var boolean $show_ticket_sale_columns |
|
| 2980 | + */ |
|
| 2981 | + public $show_ticket_sale_columns; |
|
| 2982 | + |
|
| 2983 | + /** |
|
| 2984 | + * @var boolean $show_ticket_details |
|
| 2985 | + */ |
|
| 2986 | + public $show_ticket_details; |
|
| 2987 | + |
|
| 2988 | + /** |
|
| 2989 | + * @var boolean $show_expired_tickets |
|
| 2990 | + */ |
|
| 2991 | + public $show_expired_tickets; |
|
| 2992 | + |
|
| 2993 | + /** |
|
| 2994 | + * whether or not to display a dropdown box populated with event datetimes |
|
| 2995 | + * that toggles which tickets are displayed for a ticket selector. |
|
| 2996 | + * uses one of the *_DATETIME_SELECTOR constants defined above |
|
| 2997 | + * |
|
| 2998 | + * @var string $show_datetime_selector |
|
| 2999 | + */ |
|
| 3000 | + private $show_datetime_selector = 'no_datetime_selector'; |
|
| 3001 | + |
|
| 3002 | + /** |
|
| 3003 | + * the number of datetimes an event has to have before conditionally displaying a datetime selector |
|
| 3004 | + * |
|
| 3005 | + * @var int $datetime_selector_threshold |
|
| 3006 | + */ |
|
| 3007 | + private $datetime_selector_threshold = 3; |
|
| 3008 | + |
|
| 3009 | + |
|
| 3010 | + /** |
|
| 3011 | + * class constructor |
|
| 3012 | + */ |
|
| 3013 | + public function __construct() |
|
| 3014 | + { |
|
| 3015 | + $this->show_ticket_sale_columns = true; |
|
| 3016 | + $this->show_ticket_details = true; |
|
| 3017 | + $this->show_expired_tickets = true; |
|
| 3018 | + $this->show_datetime_selector = \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR; |
|
| 3019 | + $this->datetime_selector_threshold = 3; |
|
| 3020 | + } |
|
| 3021 | + |
|
| 3022 | + |
|
| 3023 | + /** |
|
| 3024 | + * returns true if a datetime selector should be displayed |
|
| 3025 | + * |
|
| 3026 | + * @param array $datetimes |
|
| 3027 | + * @return bool |
|
| 3028 | + */ |
|
| 3029 | + public function showDatetimeSelector(array $datetimes) |
|
| 3030 | + { |
|
| 3031 | + // if the settings are NOT: don't show OR below threshold, THEN active = true |
|
| 3032 | + return ! ( |
|
| 3033 | + $this->getShowDatetimeSelector() === \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR |
|
| 3034 | + || ( |
|
| 3035 | + $this->getShowDatetimeSelector() === \EE_Ticket_Selector_Config::MAYBE_SHOW_DATETIME_SELECTOR |
|
| 3036 | + && count($datetimes) < $this->getDatetimeSelectorThreshold() |
|
| 3037 | + ) |
|
| 3038 | + ); |
|
| 3039 | + } |
|
| 3040 | + |
|
| 3041 | + |
|
| 3042 | + /** |
|
| 3043 | + * @return string |
|
| 3044 | + */ |
|
| 3045 | + public function getShowDatetimeSelector() |
|
| 3046 | + { |
|
| 3047 | + return $this->show_datetime_selector; |
|
| 3048 | + } |
|
| 3049 | + |
|
| 3050 | + |
|
| 3051 | + /** |
|
| 3052 | + * @param bool $keys_only |
|
| 3053 | + * @return array |
|
| 3054 | + */ |
|
| 3055 | + public function getShowDatetimeSelectorOptions($keys_only = true) |
|
| 3056 | + { |
|
| 3057 | + return $keys_only |
|
| 3058 | + ? array( |
|
| 3059 | + \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR, |
|
| 3060 | + \EE_Ticket_Selector_Config::MAYBE_SHOW_DATETIME_SELECTOR, |
|
| 3061 | + ) |
|
| 3062 | + : array( |
|
| 3063 | + \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR => esc_html__( |
|
| 3064 | + 'Do not show date & time filter', |
|
| 3065 | + 'event_espresso' |
|
| 3066 | + ), |
|
| 3067 | + \EE_Ticket_Selector_Config::MAYBE_SHOW_DATETIME_SELECTOR => esc_html__( |
|
| 3068 | + 'Maybe show date & time filter', |
|
| 3069 | + 'event_espresso' |
|
| 3070 | + ), |
|
| 3071 | + ); |
|
| 3072 | + } |
|
| 3073 | + |
|
| 3074 | + |
|
| 3075 | + /** |
|
| 3076 | + * @param string $show_datetime_selector |
|
| 3077 | + */ |
|
| 3078 | + public function setShowDatetimeSelector($show_datetime_selector) |
|
| 3079 | + { |
|
| 3080 | + $this->show_datetime_selector = in_array( |
|
| 3081 | + $show_datetime_selector, |
|
| 3082 | + $this->getShowDatetimeSelectorOptions(), |
|
| 3083 | + true |
|
| 3084 | + ) |
|
| 3085 | + ? $show_datetime_selector |
|
| 3086 | + : \EE_Ticket_Selector_Config::DO_NOT_SHOW_DATETIME_SELECTOR; |
|
| 3087 | + } |
|
| 3088 | + |
|
| 3089 | + |
|
| 3090 | + /** |
|
| 3091 | + * @return int |
|
| 3092 | + */ |
|
| 3093 | + public function getDatetimeSelectorThreshold() |
|
| 3094 | + { |
|
| 3095 | + return $this->datetime_selector_threshold; |
|
| 3096 | + } |
|
| 3097 | + |
|
| 3098 | + |
|
| 3099 | + /** |
|
| 3100 | + * @param int $datetime_selector_threshold |
|
| 3101 | + */ |
|
| 3102 | + public function setDatetimeSelectorThreshold($datetime_selector_threshold) |
|
| 3103 | + { |
|
| 3104 | + $datetime_selector_threshold = absint($datetime_selector_threshold); |
|
| 3105 | + $this->datetime_selector_threshold = $datetime_selector_threshold ? $datetime_selector_threshold : 3; |
|
| 3106 | + } |
|
| 3107 | 3107 | } |
| 3108 | 3108 | |
| 3109 | 3109 | /** |
@@ -3116,81 +3116,81 @@ discard block |
||
| 3116 | 3116 | class EE_Environment_Config extends EE_Config_Base |
| 3117 | 3117 | { |
| 3118 | 3118 | |
| 3119 | - /** |
|
| 3120 | - * Hold any php environment variables that we want to track. |
|
| 3121 | - * |
|
| 3122 | - * @var stdClass; |
|
| 3123 | - */ |
|
| 3124 | - public $php; |
|
| 3125 | - |
|
| 3126 | - |
|
| 3127 | - /** |
|
| 3128 | - * constructor |
|
| 3129 | - */ |
|
| 3130 | - public function __construct() |
|
| 3131 | - { |
|
| 3132 | - $this->php = new stdClass(); |
|
| 3133 | - $this->_set_php_values(); |
|
| 3134 | - } |
|
| 3135 | - |
|
| 3136 | - |
|
| 3137 | - /** |
|
| 3138 | - * This sets the php environment variables. |
|
| 3139 | - * |
|
| 3140 | - * @since 4.4.0 |
|
| 3141 | - * @return void |
|
| 3142 | - */ |
|
| 3143 | - protected function _set_php_values() |
|
| 3144 | - { |
|
| 3145 | - $this->php->max_input_vars = ini_get('max_input_vars'); |
|
| 3146 | - $this->php->version = phpversion(); |
|
| 3147 | - } |
|
| 3148 | - |
|
| 3149 | - |
|
| 3150 | - /** |
|
| 3151 | - * helper method for determining whether input_count is |
|
| 3152 | - * reaching the potential maximum the server can handle |
|
| 3153 | - * according to max_input_vars |
|
| 3154 | - * |
|
| 3155 | - * @param int $input_count the count of input vars. |
|
| 3156 | - * @return array { |
|
| 3157 | - * An array that represents whether available space and if no available space the error |
|
| 3158 | - * message. |
|
| 3159 | - * @type bool $has_space whether more inputs can be added. |
|
| 3160 | - * @type string $msg Any message to be displayed. |
|
| 3161 | - * } |
|
| 3162 | - */ |
|
| 3163 | - public function max_input_vars_limit_check($input_count = 0) |
|
| 3164 | - { |
|
| 3165 | - if (! empty($this->php->max_input_vars) |
|
| 3166 | - && ($input_count >= $this->php->max_input_vars) |
|
| 3167 | - && (PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION >= 3 && PHP_RELEASE_VERSION >= 9) |
|
| 3168 | - ) { |
|
| 3169 | - return sprintf( |
|
| 3170 | - __( |
|
| 3171 | - 'The maximum number of inputs on this page has been exceeded. You cannot add anymore items (i.e. tickets, datetimes, custom fields) on this page because of your servers PHP "max_input_vars" setting.%1$sThere are %2$d inputs and the maximum amount currently allowed by your server is %3$d.', |
|
| 3172 | - 'event_espresso' |
|
| 3173 | - ), |
|
| 3174 | - '<br>', |
|
| 3175 | - $input_count, |
|
| 3176 | - $this->php->max_input_vars |
|
| 3177 | - ); |
|
| 3178 | - } else { |
|
| 3179 | - return ''; |
|
| 3180 | - } |
|
| 3181 | - } |
|
| 3182 | - |
|
| 3183 | - |
|
| 3184 | - /** |
|
| 3185 | - * The purpose of this method is just to force rechecking php values so if they've changed, they get updated. |
|
| 3186 | - * |
|
| 3187 | - * @since 4.4.1 |
|
| 3188 | - * @return void |
|
| 3189 | - */ |
|
| 3190 | - public function recheck_values() |
|
| 3191 | - { |
|
| 3192 | - $this->_set_php_values(); |
|
| 3193 | - } |
|
| 3119 | + /** |
|
| 3120 | + * Hold any php environment variables that we want to track. |
|
| 3121 | + * |
|
| 3122 | + * @var stdClass; |
|
| 3123 | + */ |
|
| 3124 | + public $php; |
|
| 3125 | + |
|
| 3126 | + |
|
| 3127 | + /** |
|
| 3128 | + * constructor |
|
| 3129 | + */ |
|
| 3130 | + public function __construct() |
|
| 3131 | + { |
|
| 3132 | + $this->php = new stdClass(); |
|
| 3133 | + $this->_set_php_values(); |
|
| 3134 | + } |
|
| 3135 | + |
|
| 3136 | + |
|
| 3137 | + /** |
|
| 3138 | + * This sets the php environment variables. |
|
| 3139 | + * |
|
| 3140 | + * @since 4.4.0 |
|
| 3141 | + * @return void |
|
| 3142 | + */ |
|
| 3143 | + protected function _set_php_values() |
|
| 3144 | + { |
|
| 3145 | + $this->php->max_input_vars = ini_get('max_input_vars'); |
|
| 3146 | + $this->php->version = phpversion(); |
|
| 3147 | + } |
|
| 3148 | + |
|
| 3149 | + |
|
| 3150 | + /** |
|
| 3151 | + * helper method for determining whether input_count is |
|
| 3152 | + * reaching the potential maximum the server can handle |
|
| 3153 | + * according to max_input_vars |
|
| 3154 | + * |
|
| 3155 | + * @param int $input_count the count of input vars. |
|
| 3156 | + * @return array { |
|
| 3157 | + * An array that represents whether available space and if no available space the error |
|
| 3158 | + * message. |
|
| 3159 | + * @type bool $has_space whether more inputs can be added. |
|
| 3160 | + * @type string $msg Any message to be displayed. |
|
| 3161 | + * } |
|
| 3162 | + */ |
|
| 3163 | + public function max_input_vars_limit_check($input_count = 0) |
|
| 3164 | + { |
|
| 3165 | + if (! empty($this->php->max_input_vars) |
|
| 3166 | + && ($input_count >= $this->php->max_input_vars) |
|
| 3167 | + && (PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION >= 3 && PHP_RELEASE_VERSION >= 9) |
|
| 3168 | + ) { |
|
| 3169 | + return sprintf( |
|
| 3170 | + __( |
|
| 3171 | + 'The maximum number of inputs on this page has been exceeded. You cannot add anymore items (i.e. tickets, datetimes, custom fields) on this page because of your servers PHP "max_input_vars" setting.%1$sThere are %2$d inputs and the maximum amount currently allowed by your server is %3$d.', |
|
| 3172 | + 'event_espresso' |
|
| 3173 | + ), |
|
| 3174 | + '<br>', |
|
| 3175 | + $input_count, |
|
| 3176 | + $this->php->max_input_vars |
|
| 3177 | + ); |
|
| 3178 | + } else { |
|
| 3179 | + return ''; |
|
| 3180 | + } |
|
| 3181 | + } |
|
| 3182 | + |
|
| 3183 | + |
|
| 3184 | + /** |
|
| 3185 | + * The purpose of this method is just to force rechecking php values so if they've changed, they get updated. |
|
| 3186 | + * |
|
| 3187 | + * @since 4.4.1 |
|
| 3188 | + * @return void |
|
| 3189 | + */ |
|
| 3190 | + public function recheck_values() |
|
| 3191 | + { |
|
| 3192 | + $this->_set_php_values(); |
|
| 3193 | + } |
|
| 3194 | 3194 | } |
| 3195 | 3195 | |
| 3196 | 3196 | /** |
@@ -3203,21 +3203,21 @@ discard block |
||
| 3203 | 3203 | class EE_Tax_Config extends EE_Config_Base |
| 3204 | 3204 | { |
| 3205 | 3205 | |
| 3206 | - /* |
|
| 3206 | + /* |
|
| 3207 | 3207 | * flag to indicate whether or not to display ticket prices with the taxes included |
| 3208 | 3208 | * |
| 3209 | 3209 | * @var boolean $prices_displayed_including_taxes |
| 3210 | 3210 | */ |
| 3211 | - public $prices_displayed_including_taxes; |
|
| 3211 | + public $prices_displayed_including_taxes; |
|
| 3212 | 3212 | |
| 3213 | 3213 | |
| 3214 | - /** |
|
| 3215 | - * class constructor |
|
| 3216 | - */ |
|
| 3217 | - public function __construct() |
|
| 3218 | - { |
|
| 3219 | - $this->prices_displayed_including_taxes = true; |
|
| 3220 | - } |
|
| 3214 | + /** |
|
| 3215 | + * class constructor |
|
| 3216 | + */ |
|
| 3217 | + public function __construct() |
|
| 3218 | + { |
|
| 3219 | + $this->prices_displayed_including_taxes = true; |
|
| 3220 | + } |
|
| 3221 | 3221 | } |
| 3222 | 3222 | |
| 3223 | 3223 | /** |
@@ -3231,19 +3231,19 @@ discard block |
||
| 3231 | 3231 | class EE_Messages_Config extends EE_Config_Base |
| 3232 | 3232 | { |
| 3233 | 3233 | |
| 3234 | - /** |
|
| 3235 | - * This is an integer representing the deletion threshold in months for when old messages will get deleted. |
|
| 3236 | - * A value of 0 represents never deleting. Default is 0. |
|
| 3237 | - * |
|
| 3238 | - * @var integer |
|
| 3239 | - */ |
|
| 3240 | - public $delete_threshold; |
|
| 3234 | + /** |
|
| 3235 | + * This is an integer representing the deletion threshold in months for when old messages will get deleted. |
|
| 3236 | + * A value of 0 represents never deleting. Default is 0. |
|
| 3237 | + * |
|
| 3238 | + * @var integer |
|
| 3239 | + */ |
|
| 3240 | + public $delete_threshold; |
|
| 3241 | 3241 | |
| 3242 | 3242 | |
| 3243 | - public function __construct() |
|
| 3244 | - { |
|
| 3245 | - $this->delete_threshold = 0; |
|
| 3246 | - } |
|
| 3243 | + public function __construct() |
|
| 3244 | + { |
|
| 3245 | + $this->delete_threshold = 0; |
|
| 3246 | + } |
|
| 3247 | 3247 | } |
| 3248 | 3248 | |
| 3249 | 3249 | /** |
@@ -3254,31 +3254,31 @@ discard block |
||
| 3254 | 3254 | class EE_Gateway_Config extends EE_Config_Base |
| 3255 | 3255 | { |
| 3256 | 3256 | |
| 3257 | - /** |
|
| 3258 | - * Array with keys that are payment gateways slugs, and values are arrays |
|
| 3259 | - * with any config info the gateway wants to store |
|
| 3260 | - * |
|
| 3261 | - * @var array |
|
| 3262 | - */ |
|
| 3263 | - public $payment_settings; |
|
| 3264 | - |
|
| 3265 | - /** |
|
| 3266 | - * Where keys are gateway slugs, and values are booleans indicating whether or not |
|
| 3267 | - * the gateway is stored in the uploads directory |
|
| 3268 | - * |
|
| 3269 | - * @var array |
|
| 3270 | - */ |
|
| 3271 | - public $active_gateways; |
|
| 3272 | - |
|
| 3273 | - |
|
| 3274 | - /** |
|
| 3275 | - * class constructor |
|
| 3276 | - * |
|
| 3277 | - * @deprecated |
|
| 3278 | - */ |
|
| 3279 | - public function __construct() |
|
| 3280 | - { |
|
| 3281 | - $this->payment_settings = array(); |
|
| 3282 | - $this->active_gateways = array('Invoice' => false); |
|
| 3283 | - } |
|
| 3257 | + /** |
|
| 3258 | + * Array with keys that are payment gateways slugs, and values are arrays |
|
| 3259 | + * with any config info the gateway wants to store |
|
| 3260 | + * |
|
| 3261 | + * @var array |
|
| 3262 | + */ |
|
| 3263 | + public $payment_settings; |
|
| 3264 | + |
|
| 3265 | + /** |
|
| 3266 | + * Where keys are gateway slugs, and values are booleans indicating whether or not |
|
| 3267 | + * the gateway is stored in the uploads directory |
|
| 3268 | + * |
|
| 3269 | + * @var array |
|
| 3270 | + */ |
|
| 3271 | + public $active_gateways; |
|
| 3272 | + |
|
| 3273 | + |
|
| 3274 | + /** |
|
| 3275 | + * class constructor |
|
| 3276 | + * |
|
| 3277 | + * @deprecated |
|
| 3278 | + */ |
|
| 3279 | + public function __construct() |
|
| 3280 | + { |
|
| 3281 | + $this->payment_settings = array(); |
|
| 3282 | + $this->active_gateways = array('Invoice' => false); |
|
| 3283 | + } |
|
| 3284 | 3284 | } |
@@ -18,1423 +18,1423 @@ |
||
| 18 | 18 | class EE_SPCO_Reg_Step_Attendee_Information extends EE_SPCO_Reg_Step |
| 19 | 19 | { |
| 20 | 20 | |
| 21 | - /** |
|
| 22 | - * @type bool $_print_copy_info |
|
| 23 | - */ |
|
| 24 | - private $_print_copy_info = false; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * @type array $_attendee_data |
|
| 28 | - */ |
|
| 29 | - private $_attendee_data = array(); |
|
| 30 | - |
|
| 31 | - /** |
|
| 32 | - * @type array $_required_questions |
|
| 33 | - */ |
|
| 34 | - private $_required_questions = array(); |
|
| 35 | - |
|
| 36 | - /** |
|
| 37 | - * @type array $_registration_answers |
|
| 38 | - */ |
|
| 39 | - private $_registration_answers = array(); |
|
| 40 | - |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * class constructor |
|
| 44 | - * |
|
| 45 | - * @access public |
|
| 46 | - * @param EE_Checkout $checkout |
|
| 47 | - */ |
|
| 48 | - public function __construct(EE_Checkout $checkout) |
|
| 49 | - { |
|
| 50 | - $this->_slug = 'attendee_information'; |
|
| 51 | - $this->_name = esc_html__('Attendee Information', 'event_espresso'); |
|
| 52 | - $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . DS . 'attendee_info_main.template.php'; |
|
| 53 | - $this->checkout = $checkout; |
|
| 54 | - $this->_reset_success_message(); |
|
| 55 | - $this->set_instructions( |
|
| 56 | - esc_html__('Please answer the following registration questions before proceeding.', 'event_espresso') |
|
| 57 | - ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - |
|
| 61 | - public function translate_js_strings() |
|
| 62 | - { |
|
| 63 | - EE_Registry::$i18n_js_strings['required_field'] = esc_html__( |
|
| 64 | - ' is a required question.', |
|
| 65 | - 'event_espresso' |
|
| 66 | - ); |
|
| 67 | - EE_Registry::$i18n_js_strings['required_multi_field'] = esc_html__( |
|
| 68 | - ' is a required question. Please enter a value for at least one of the options.', |
|
| 69 | - 'event_espresso' |
|
| 70 | - ); |
|
| 71 | - EE_Registry::$i18n_js_strings['answer_required_questions'] = esc_html__( |
|
| 72 | - 'Please answer all required questions correctly before proceeding.', |
|
| 73 | - 'event_espresso' |
|
| 74 | - ); |
|
| 75 | - EE_Registry::$i18n_js_strings['attendee_info_copied'] = sprintf( |
|
| 76 | - esc_html_x( |
|
| 77 | - 'The attendee information was successfully copied.%sPlease ensure the rest of the registration form is completed before proceeding.', |
|
| 78 | - 'The attendee information was successfully copied.(line break)Please ensure the rest of the registration form is completed before proceeding.', |
|
| 79 | - 'event_espresso' |
|
| 80 | - ), |
|
| 81 | - '<br/>' |
|
| 82 | - ); |
|
| 83 | - EE_Registry::$i18n_js_strings['attendee_info_copy_error'] = esc_html__( |
|
| 84 | - 'An unknown error occurred on the server while attempting to copy the attendee information. Please refresh the page and try again.', |
|
| 85 | - 'event_espresso' |
|
| 86 | - ); |
|
| 87 | - EE_Registry::$i18n_js_strings['enter_valid_email'] = esc_html__( |
|
| 88 | - 'You must enter a valid email address.', |
|
| 89 | - 'event_espresso' |
|
| 90 | - ); |
|
| 91 | - EE_Registry::$i18n_js_strings['valid_email_and_questions'] = esc_html__( |
|
| 92 | - 'You must enter a valid email address and answer all other required questions before you can proceed.', |
|
| 93 | - 'event_espresso' |
|
| 94 | - ); |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - |
|
| 98 | - public function enqueue_styles_and_scripts() |
|
| 99 | - { |
|
| 100 | - } |
|
| 101 | - |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * @return boolean |
|
| 105 | - */ |
|
| 106 | - public function initialize_reg_step() |
|
| 107 | - { |
|
| 108 | - return true; |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - |
|
| 112 | - /** |
|
| 113 | - * @return EE_Form_Section_Proper |
|
| 114 | - * @throws DomainException |
|
| 115 | - * @throws EE_Error |
|
| 116 | - * @throws InvalidArgumentException |
|
| 117 | - * @throws ReflectionException |
|
| 118 | - * @throws EntityNotFoundException |
|
| 119 | - * @throws InvalidDataTypeException |
|
| 120 | - * @throws InvalidInterfaceException |
|
| 121 | - */ |
|
| 122 | - public function generate_reg_form() |
|
| 123 | - { |
|
| 124 | - $this->_print_copy_info = false; |
|
| 125 | - $primary_registrant = null; |
|
| 126 | - // autoload Line_Item_Display classes |
|
| 127 | - EEH_Autoloader::register_line_item_display_autoloaders(); |
|
| 128 | - $Line_Item_Display = new EE_Line_Item_Display(); |
|
| 129 | - // calculate taxes |
|
| 130 | - $Line_Item_Display->display_line_item( |
|
| 131 | - $this->checkout->cart->get_grand_total(), |
|
| 132 | - array('set_tax_rate' => true) |
|
| 133 | - ); |
|
| 134 | - /** @var $subsections EE_Form_Section_Proper[] */ |
|
| 135 | - $extra_inputs_section = $this->reg_step_hidden_inputs(); |
|
| 136 | - $subsections = array( |
|
| 137 | - 'default_hidden_inputs' => $extra_inputs_section, |
|
| 138 | - ); |
|
| 139 | - |
|
| 140 | - /** |
|
| 141 | - * @var $reg_config EE_Registration_Config |
|
| 142 | - */ |
|
| 143 | - $reg_config = LoaderFactory::getLoader()->getShared('EE_Registration_Config'); |
|
| 144 | - // if this isn't a revisit, and they have the privacy consent box enalbed, add it |
|
| 145 | - if (! $this->checkout->revisit && $reg_config->isConsentCheckboxEnabled()) { |
|
| 146 | - $extra_inputs_section->add_subsections( |
|
| 147 | - array( |
|
| 148 | - 'consent_box' => new EE_Form_Section_Proper( |
|
| 149 | - array( |
|
| 150 | - 'layout_strategy' => |
|
| 151 | - new EE_Template_Layout( |
|
| 152 | - array( |
|
| 153 | - 'input_template_file' => SPCO_REG_STEPS_PATH . $this->_slug . DS . 'privacy_consent.template.php', |
|
| 154 | - ) |
|
| 155 | - ), |
|
| 156 | - 'subsections' => array( |
|
| 157 | - 'consent' => new EE_Checkbox_Multi_Input( |
|
| 158 | - array( |
|
| 159 | - 'consent' => $reg_config->getConsentCheckboxLabelText(), |
|
| 160 | - ), |
|
| 161 | - array( |
|
| 162 | - 'required' => true, |
|
| 163 | - 'required_validation_error_message' => esc_html__( |
|
| 164 | - 'You must consent to these terms in order to register.', |
|
| 165 | - 'event_espresso' |
|
| 166 | - ), |
|
| 167 | - 'html_label_text' => '', |
|
| 168 | - ) |
|
| 169 | - ), |
|
| 170 | - ), |
|
| 171 | - ) |
|
| 172 | - ), |
|
| 173 | - ), |
|
| 174 | - null, |
|
| 175 | - false |
|
| 176 | - ); |
|
| 177 | - } |
|
| 178 | - $template_args = array( |
|
| 179 | - 'revisit' => $this->checkout->revisit, |
|
| 180 | - 'registrations' => array(), |
|
| 181 | - 'ticket_count' => array(), |
|
| 182 | - ); |
|
| 183 | - // grab the saved registrations from the transaction |
|
| 184 | - $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 185 | - if ($registrations) { |
|
| 186 | - foreach ($registrations as $registration) { |
|
| 187 | - // can this registration be processed during this visit ? |
|
| 188 | - if ($registration instanceof EE_Registration |
|
| 189 | - && $this->checkout->visit_allows_processing_of_this_registration($registration) |
|
| 190 | - ) { |
|
| 191 | - $subsections[ $registration->reg_url_link() ] = $this->_registrations_reg_form($registration); |
|
| 192 | - if (! $this->checkout->admin_request) { |
|
| 193 | - $template_args['registrations'][ $registration->reg_url_link() ] = $registration; |
|
| 194 | - $template_args['ticket_count'][ $registration->ticket()->ID() ] = isset( |
|
| 195 | - $template_args['ticket_count'][ $registration->ticket()->ID() ] |
|
| 196 | - ) |
|
| 197 | - ? $template_args['ticket_count'][ $registration->ticket()->ID() ] + 1 |
|
| 198 | - : 1; |
|
| 199 | - $ticket_line_item = EEH_Line_Item::get_line_items_by_object_type_and_IDs( |
|
| 200 | - $this->checkout->cart->get_grand_total(), |
|
| 201 | - 'Ticket', |
|
| 202 | - array($registration->ticket()->ID()) |
|
| 203 | - ); |
|
| 204 | - $ticket_line_item = is_array($ticket_line_item) |
|
| 205 | - ? reset($ticket_line_item) |
|
| 206 | - : $ticket_line_item; |
|
| 207 | - $template_args['ticket_line_item'][ $registration->ticket()->ID() ] = |
|
| 208 | - $Line_Item_Display->display_line_item($ticket_line_item); |
|
| 209 | - } |
|
| 210 | - if ($registration->is_primary_registrant()) { |
|
| 211 | - $primary_registrant = $registration->reg_url_link(); |
|
| 212 | - } |
|
| 213 | - } |
|
| 214 | - } |
|
| 215 | - // print_copy_info ? |
|
| 216 | - if ($primary_registrant && ! $this->checkout->admin_request && count($registrations) > 1) { |
|
| 217 | - // TODO: add admin option for toggling copy attendee info, |
|
| 218 | - // then use that value to change $this->_print_copy_info |
|
| 219 | - $copy_options['spco_copy_attendee_chk'] = $this->_print_copy_info |
|
| 220 | - ? $this->_copy_attendee_info_form() |
|
| 221 | - : $this->_auto_copy_attendee_info(); |
|
| 222 | - // generate hidden input |
|
| 223 | - if (isset($subsections[ $primary_registrant ]) |
|
| 224 | - && $subsections[ $primary_registrant ] instanceof EE_Form_Section_Proper |
|
| 225 | - ) { |
|
| 226 | - $subsections[ $primary_registrant ]->add_subsections( |
|
| 227 | - $copy_options, |
|
| 228 | - 'primary_registrant', |
|
| 229 | - false |
|
| 230 | - ); |
|
| 231 | - } |
|
| 232 | - } |
|
| 233 | - } |
|
| 234 | - return new EE_Form_Section_Proper( |
|
| 235 | - array( |
|
| 236 | - 'name' => $this->reg_form_name(), |
|
| 237 | - 'html_id' => $this->reg_form_name(), |
|
| 238 | - 'subsections' => $subsections, |
|
| 239 | - 'layout_strategy' => $this->checkout->admin_request |
|
| 240 | - ? |
|
| 241 | - new EE_Div_Per_Section_Layout() |
|
| 242 | - : |
|
| 243 | - new EE_Template_Layout( |
|
| 244 | - array( |
|
| 245 | - 'layout_template_file' => $this->_template, // layout_template |
|
| 246 | - 'template_args' => $template_args, |
|
| 247 | - ) |
|
| 248 | - ), |
|
| 249 | - ) |
|
| 250 | - ); |
|
| 251 | - } |
|
| 252 | - |
|
| 253 | - |
|
| 254 | - /** |
|
| 255 | - * @param EE_Registration $registration |
|
| 256 | - * @return EE_Form_Section_Base |
|
| 257 | - * @throws EE_Error |
|
| 258 | - * @throws InvalidArgumentException |
|
| 259 | - * @throws EntityNotFoundException |
|
| 260 | - * @throws InvalidDataTypeException |
|
| 261 | - * @throws InvalidInterfaceException |
|
| 262 | - * @throws ReflectionException |
|
| 263 | - */ |
|
| 264 | - private function _registrations_reg_form(EE_Registration $registration) |
|
| 265 | - { |
|
| 266 | - static $attendee_nmbr = 1; |
|
| 267 | - $form_args = array(); |
|
| 268 | - // verify that registration has valid event |
|
| 269 | - if ($registration->event() instanceof EE_Event) { |
|
| 270 | - $question_groups = $registration->event()->question_groups( |
|
| 271 | - apply_filters( |
|
| 272 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___registrations_reg_form__question_groups_query_parameters', |
|
| 273 | - array( |
|
| 274 | - array( |
|
| 275 | - 'Event.EVT_ID' => $registration->event()->ID(), |
|
| 276 | - 'Event_Question_Group.EQG_primary' => $registration->count() === 1, |
|
| 277 | - ), |
|
| 278 | - 'order_by' => array('QSG_order' => 'ASC'), |
|
| 279 | - ), |
|
| 280 | - $registration, |
|
| 281 | - $this |
|
| 282 | - ) |
|
| 283 | - ); |
|
| 284 | - if ($question_groups) { |
|
| 285 | - // array of params to pass to parent constructor |
|
| 286 | - $form_args = array( |
|
| 287 | - 'html_id' => 'ee-registration-' . $registration->reg_url_link(), |
|
| 288 | - 'html_class' => 'ee-reg-form-attendee-dv', |
|
| 289 | - 'html_style' => $this->checkout->admin_request |
|
| 290 | - ? 'padding:0em 2em 1em; margin:3em 0 0; border:1px solid #ddd;' |
|
| 291 | - : '', |
|
| 292 | - 'subsections' => array(), |
|
| 293 | - 'layout_strategy' => new EE_Fieldset_Section_Layout( |
|
| 294 | - array( |
|
| 295 | - 'legend_class' => 'spco-attendee-lgnd smaller-text lt-grey-text', |
|
| 296 | - 'legend_text' => sprintf( |
|
| 297 | - esc_html_x( |
|
| 298 | - 'Attendee %d', |
|
| 299 | - 'Attendee 123', |
|
| 300 | - 'event_espresso' |
|
| 301 | - ), |
|
| 302 | - $attendee_nmbr |
|
| 303 | - ), |
|
| 304 | - ) |
|
| 305 | - ), |
|
| 306 | - ); |
|
| 307 | - foreach ($question_groups as $question_group) { |
|
| 308 | - if ($question_group instanceof EE_Question_Group) { |
|
| 309 | - $form_args['subsections'][ $question_group->identifier() ] = $this->_question_group_reg_form( |
|
| 310 | - $registration, |
|
| 311 | - $question_group |
|
| 312 | - ); |
|
| 313 | - } |
|
| 314 | - } |
|
| 315 | - // add hidden input |
|
| 316 | - $form_args['subsections']['additional_attendee_reg_info'] = $this->_additional_attendee_reg_info_input( |
|
| 317 | - $registration |
|
| 318 | - ); |
|
| 319 | - // if we have question groups for additional attendees, then display the copy options |
|
| 320 | - $this->_print_copy_info = $attendee_nmbr > 1 ? true : $this->_print_copy_info; |
|
| 321 | - if ($registration->is_primary_registrant()) { |
|
| 322 | - // generate hidden input |
|
| 323 | - $form_args['subsections']['primary_registrant'] = $this->_additional_primary_registrant_inputs( |
|
| 324 | - $registration |
|
| 325 | - ); |
|
| 326 | - } |
|
| 327 | - } |
|
| 328 | - } |
|
| 329 | - $attendee_nmbr++; |
|
| 330 | - return ! empty($form_args) |
|
| 331 | - ? new EE_Form_Section_Proper($form_args) |
|
| 332 | - : new EE_Form_Section_HTML(); |
|
| 333 | - } |
|
| 334 | - |
|
| 335 | - |
|
| 336 | - /** |
|
| 337 | - * @param EE_Registration $registration |
|
| 338 | - * @param bool $additional_attendee_reg_info |
|
| 339 | - * @return EE_Form_Input_Base |
|
| 340 | - * @throws EE_Error |
|
| 341 | - */ |
|
| 342 | - private function _additional_attendee_reg_info_input( |
|
| 343 | - EE_Registration $registration, |
|
| 344 | - $additional_attendee_reg_info = true |
|
| 345 | - ) { |
|
| 346 | - // generate hidden input |
|
| 347 | - return new EE_Hidden_Input( |
|
| 348 | - array( |
|
| 349 | - 'html_id' => 'additional-attendee-reg-info-' . $registration->reg_url_link(), |
|
| 350 | - 'default' => $additional_attendee_reg_info, |
|
| 351 | - ) |
|
| 352 | - ); |
|
| 353 | - } |
|
| 354 | - |
|
| 355 | - |
|
| 356 | - /** |
|
| 357 | - * @param EE_Registration $registration |
|
| 358 | - * @param EE_Question_Group $question_group |
|
| 359 | - * @return EE_Form_Section_Proper |
|
| 360 | - * @throws EE_Error |
|
| 361 | - * @throws InvalidArgumentException |
|
| 362 | - * @throws InvalidDataTypeException |
|
| 363 | - * @throws InvalidInterfaceException |
|
| 364 | - * @throws ReflectionException |
|
| 365 | - */ |
|
| 366 | - private function _question_group_reg_form(EE_Registration $registration, EE_Question_Group $question_group) |
|
| 367 | - { |
|
| 368 | - // array of params to pass to parent constructor |
|
| 369 | - $form_args = array( |
|
| 370 | - 'html_id' => 'ee-reg-form-qstn-grp-' . $question_group->identifier() . '-' . $registration->ID(), |
|
| 371 | - 'html_class' => $this->checkout->admin_request |
|
| 372 | - ? 'form-table ee-reg-form-qstn-grp-dv' |
|
| 373 | - : 'ee-reg-form-qstn-grp-dv', |
|
| 374 | - 'html_label_id' => 'ee-reg-form-qstn-grp-' . $question_group->identifier() . '-' |
|
| 375 | - . $registration->ID() . '-lbl', |
|
| 376 | - 'subsections' => array( |
|
| 377 | - 'reg_form_qstn_grp_hdr' => $this->_question_group_header($question_group), |
|
| 378 | - ), |
|
| 379 | - 'layout_strategy' => $this->checkout->admin_request |
|
| 380 | - ? new EE_Admin_Two_Column_Layout() |
|
| 381 | - : new EE_Div_Per_Section_Layout(), |
|
| 382 | - ); |
|
| 383 | - // where params |
|
| 384 | - $query_params = array('QST_deleted' => 0); |
|
| 385 | - // don't load admin only questions on the frontend |
|
| 386 | - if (! $this->checkout->admin_request) { |
|
| 387 | - $query_params['QST_admin_only'] = array('!=', true); |
|
| 388 | - } |
|
| 389 | - $questions = $question_group->get_many_related( |
|
| 390 | - 'Question', |
|
| 391 | - apply_filters( |
|
| 392 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__related_questions_query_params', |
|
| 393 | - array( |
|
| 394 | - $query_params, |
|
| 395 | - 'order_by' => array( |
|
| 396 | - 'Question_Group_Question.QGQ_order' => 'ASC', |
|
| 397 | - ), |
|
| 398 | - ), |
|
| 399 | - $question_group, |
|
| 400 | - $registration, |
|
| 401 | - $this |
|
| 402 | - ) |
|
| 403 | - ); |
|
| 404 | - // filter for additional content before questions |
|
| 405 | - $form_args['subsections']['reg_form_questions_before'] = new EE_Form_Section_HTML( |
|
| 406 | - apply_filters( |
|
| 407 | - 'FHEE__EEH_Form_Fields__generate_question_groups_html__before_question_group_questions', |
|
| 408 | - '', |
|
| 409 | - $registration, |
|
| 410 | - $question_group, |
|
| 411 | - $this |
|
| 412 | - ) |
|
| 413 | - ); |
|
| 414 | - // loop thru questions |
|
| 415 | - foreach ($questions as $question) { |
|
| 416 | - if ($question instanceof EE_Question) { |
|
| 417 | - $identifier = $question->is_system_question() |
|
| 418 | - ? $question->system_ID() |
|
| 419 | - : $question->ID(); |
|
| 420 | - $form_args['subsections'][ $identifier ] = $this->reg_form_question($registration, $question); |
|
| 421 | - } |
|
| 422 | - } |
|
| 423 | - $form_args['subsections'] = apply_filters( |
|
| 424 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information__question_group_reg_form__subsections_array', |
|
| 425 | - $form_args['subsections'], |
|
| 426 | - $registration, |
|
| 427 | - $question_group, |
|
| 428 | - $this |
|
| 429 | - ); |
|
| 430 | - // filter for additional content after questions |
|
| 431 | - $form_args['subsections']['reg_form_questions_after'] = new EE_Form_Section_HTML( |
|
| 432 | - apply_filters( |
|
| 433 | - 'FHEE__EEH_Form_Fields__generate_question_groups_html__after_question_group_questions', |
|
| 434 | - '', |
|
| 435 | - $registration, |
|
| 436 | - $question_group, |
|
| 437 | - $this |
|
| 438 | - ) |
|
| 439 | - ); |
|
| 440 | - // d($form_args); |
|
| 441 | - $question_group_reg_form = new EE_Form_Section_Proper($form_args); |
|
| 442 | - return apply_filters( |
|
| 443 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__question_group_reg_form', |
|
| 444 | - $question_group_reg_form, |
|
| 445 | - $registration, |
|
| 446 | - $question_group, |
|
| 447 | - $this |
|
| 448 | - ); |
|
| 449 | - } |
|
| 450 | - |
|
| 451 | - |
|
| 452 | - /** |
|
| 453 | - * @param EE_Question_Group $question_group |
|
| 454 | - * @return EE_Form_Section_HTML |
|
| 455 | - */ |
|
| 456 | - private function _question_group_header(EE_Question_Group $question_group) |
|
| 457 | - { |
|
| 458 | - $html = ''; |
|
| 459 | - // group_name |
|
| 460 | - if ($question_group->show_group_name() && $question_group->name() !== '') { |
|
| 461 | - if ($this->checkout->admin_request) { |
|
| 462 | - $html .= EEH_HTML::br(); |
|
| 463 | - $html .= EEH_HTML::h3( |
|
| 464 | - $question_group->name(), |
|
| 465 | - '', |
|
| 466 | - 'ee-reg-form-qstn-grp-title title', |
|
| 467 | - 'font-size: 1.3em; padding-left:0;' |
|
| 468 | - ); |
|
| 469 | - } else { |
|
| 470 | - $html .= EEH_HTML::h4( |
|
| 471 | - $question_group->name(), |
|
| 472 | - '', |
|
| 473 | - 'ee-reg-form-qstn-grp-title section-title' |
|
| 474 | - ); |
|
| 475 | - } |
|
| 476 | - } |
|
| 477 | - // group_desc |
|
| 478 | - if ($question_group->show_group_desc() && $question_group->desc() !== '') { |
|
| 479 | - $html .= EEH_HTML::p( |
|
| 480 | - $question_group->desc(), |
|
| 481 | - '', |
|
| 482 | - $this->checkout->admin_request |
|
| 483 | - ? 'ee-reg-form-qstn-grp-desc-pg' |
|
| 484 | - : 'ee-reg-form-qstn-grp-desc-pg small-text lt-grey-text' |
|
| 485 | - ); |
|
| 486 | - } |
|
| 487 | - return new EE_Form_Section_HTML($html); |
|
| 488 | - } |
|
| 489 | - |
|
| 490 | - |
|
| 491 | - /** |
|
| 492 | - * @return EE_Form_Section_Proper |
|
| 493 | - * @throws EE_Error |
|
| 494 | - * @throws InvalidArgumentException |
|
| 495 | - * @throws ReflectionException |
|
| 496 | - * @throws InvalidDataTypeException |
|
| 497 | - * @throws InvalidInterfaceException |
|
| 498 | - */ |
|
| 499 | - private function _copy_attendee_info_form() |
|
| 500 | - { |
|
| 501 | - // array of params to pass to parent constructor |
|
| 502 | - return new EE_Form_Section_Proper( |
|
| 503 | - array( |
|
| 504 | - 'subsections' => $this->_copy_attendee_info_inputs(), |
|
| 505 | - 'layout_strategy' => new EE_Template_Layout( |
|
| 506 | - array( |
|
| 507 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 508 | - . $this->_slug |
|
| 509 | - . DS |
|
| 510 | - . 'copy_attendee_info.template.php', |
|
| 511 | - 'begin_template_file' => null, |
|
| 512 | - 'input_template_file' => null, |
|
| 513 | - 'subsection_template_file' => null, |
|
| 514 | - 'end_template_file' => null, |
|
| 515 | - ) |
|
| 516 | - ), |
|
| 517 | - ) |
|
| 518 | - ); |
|
| 519 | - } |
|
| 520 | - |
|
| 521 | - |
|
| 522 | - /** |
|
| 523 | - * @return EE_Form_Section_HTML |
|
| 524 | - * @throws DomainException |
|
| 525 | - * @throws InvalidArgumentException |
|
| 526 | - * @throws InvalidDataTypeException |
|
| 527 | - * @throws InvalidInterfaceException |
|
| 528 | - */ |
|
| 529 | - private function _auto_copy_attendee_info() |
|
| 530 | - { |
|
| 531 | - return new EE_Form_Section_HTML( |
|
| 532 | - EEH_Template::locate_template( |
|
| 533 | - SPCO_REG_STEPS_PATH . $this->_slug . DS . '_auto_copy_attendee_info.template.php', |
|
| 534 | - apply_filters( |
|
| 535 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information__auto_copy_attendee_info__template_args', |
|
| 536 | - array() |
|
| 537 | - ), |
|
| 538 | - true, |
|
| 539 | - true |
|
| 540 | - ) |
|
| 541 | - ); |
|
| 542 | - } |
|
| 543 | - |
|
| 544 | - |
|
| 545 | - /** |
|
| 546 | - * @return array |
|
| 547 | - * @throws EE_Error |
|
| 548 | - * @throws InvalidArgumentException |
|
| 549 | - * @throws ReflectionException |
|
| 550 | - * @throws InvalidDataTypeException |
|
| 551 | - * @throws InvalidInterfaceException |
|
| 552 | - */ |
|
| 553 | - private function _copy_attendee_info_inputs() |
|
| 554 | - { |
|
| 555 | - $copy_attendee_info_inputs = array(); |
|
| 556 | - $prev_ticket = null; |
|
| 557 | - // grab the saved registrations from the transaction |
|
| 558 | - $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 559 | - foreach ($registrations as $registration) { |
|
| 560 | - // for all attendees other than the primary attendee |
|
| 561 | - if ($registration instanceof EE_Registration && ! $registration->is_primary_registrant()) { |
|
| 562 | - // if this is a new ticket OR if this is the very first additional attendee after the primary attendee |
|
| 563 | - if ($registration->ticket()->ID() !== $prev_ticket) { |
|
| 564 | - $item_name = $registration->ticket()->name(); |
|
| 565 | - $item_name .= $registration->ticket()->description() !== '' |
|
| 566 | - ? ' - ' . $registration->ticket()->description() |
|
| 567 | - : ''; |
|
| 568 | - $copy_attendee_info_inputs[ 'spco_copy_attendee_chk[ticket-' . $registration->ticket()->ID( |
|
| 569 | - ) . ']' ] = |
|
| 570 | - new EE_Form_Section_HTML( |
|
| 571 | - '<h6 class="spco-copy-attendee-event-hdr">' . $item_name . '</h6>' |
|
| 572 | - ); |
|
| 573 | - $prev_ticket = $registration->ticket()->ID(); |
|
| 574 | - } |
|
| 575 | - |
|
| 576 | - $copy_attendee_info_inputs[ 'spco_copy_attendee_chk[' . $registration->ID() . ']' ] = |
|
| 577 | - new EE_Checkbox_Multi_Input( |
|
| 578 | - array( |
|
| 579 | - $registration->ID() => sprintf( |
|
| 580 | - esc_html_x('Attendee #%s', 'Attendee #123', 'event_espresso'), |
|
| 581 | - $registration->count() |
|
| 582 | - ), |
|
| 583 | - ), |
|
| 584 | - array( |
|
| 585 | - 'html_id' => 'spco-copy-attendee-chk-' . $registration->reg_url_link(), |
|
| 586 | - 'html_class' => 'spco-copy-attendee-chk ee-do-not-validate', |
|
| 587 | - 'display_html_label_text' => false, |
|
| 588 | - ) |
|
| 589 | - ); |
|
| 590 | - } |
|
| 591 | - } |
|
| 592 | - return $copy_attendee_info_inputs; |
|
| 593 | - } |
|
| 594 | - |
|
| 595 | - |
|
| 596 | - /** |
|
| 597 | - * @param EE_Registration $registration |
|
| 598 | - * @return EE_Form_Input_Base |
|
| 599 | - * @throws EE_Error |
|
| 600 | - */ |
|
| 601 | - private function _additional_primary_registrant_inputs(EE_Registration $registration) |
|
| 602 | - { |
|
| 603 | - // generate hidden input |
|
| 604 | - return new EE_Hidden_Input( |
|
| 605 | - array( |
|
| 606 | - 'html_id' => 'primary_registrant', |
|
| 607 | - 'default' => $registration->reg_url_link(), |
|
| 608 | - ) |
|
| 609 | - ); |
|
| 610 | - } |
|
| 611 | - |
|
| 612 | - |
|
| 613 | - /** |
|
| 614 | - * @param EE_Registration $registration |
|
| 615 | - * @param EE_Question $question |
|
| 616 | - * @return EE_Form_Input_Base |
|
| 617 | - * @throws EE_Error |
|
| 618 | - * @throws InvalidArgumentException |
|
| 619 | - * @throws InvalidDataTypeException |
|
| 620 | - * @throws InvalidInterfaceException |
|
| 621 | - * @throws ReflectionException |
|
| 622 | - */ |
|
| 623 | - public function reg_form_question(EE_Registration $registration, EE_Question $question) |
|
| 624 | - { |
|
| 625 | - |
|
| 626 | - // if this question was for an attendee detail, then check for that answer |
|
| 627 | - $answer_value = EEM_Answer::instance()->get_attendee_property_answer_value( |
|
| 628 | - $registration, |
|
| 629 | - $question->system_ID() |
|
| 630 | - ); |
|
| 631 | - $answer = $answer_value === null |
|
| 632 | - ? EEM_Answer::instance()->get_one( |
|
| 633 | - array(array('QST_ID' => $question->ID(), 'REG_ID' => $registration->ID())) |
|
| 634 | - ) |
|
| 635 | - : null; |
|
| 636 | - // if NOT returning to edit an existing registration |
|
| 637 | - // OR if this question is for an attendee property |
|
| 638 | - // OR we still don't have an EE_Answer object |
|
| 639 | - if ($answer_value || ! $answer instanceof EE_Answer || ! $registration->reg_url_link()) { |
|
| 640 | - // create an EE_Answer object for storing everything in |
|
| 641 | - $answer = EE_Answer::new_instance( |
|
| 642 | - array( |
|
| 643 | - 'QST_ID' => $question->ID(), |
|
| 644 | - 'REG_ID' => $registration->ID(), |
|
| 645 | - ) |
|
| 646 | - ); |
|
| 647 | - } |
|
| 648 | - // verify instance |
|
| 649 | - if ($answer instanceof EE_Answer) { |
|
| 650 | - if (! empty($answer_value)) { |
|
| 651 | - $answer->set('ANS_value', $answer_value); |
|
| 652 | - } |
|
| 653 | - $answer->cache('Question', $question); |
|
| 654 | - // remember system ID had a bug where sometimes it could be null |
|
| 655 | - $answer_cache_id = $question->is_system_question() |
|
| 656 | - ? $question->system_ID() . '-' . $registration->reg_url_link() |
|
| 657 | - : $question->ID() . '-' . $registration->reg_url_link(); |
|
| 658 | - $registration->cache('Answer', $answer, $answer_cache_id); |
|
| 659 | - } |
|
| 660 | - return $this->_generate_question_input($registration, $question, $answer); |
|
| 661 | - } |
|
| 662 | - |
|
| 663 | - |
|
| 664 | - /** |
|
| 665 | - * @param EE_Registration $registration |
|
| 666 | - * @param EE_Question $question |
|
| 667 | - * @param $answer |
|
| 668 | - * @return EE_Form_Input_Base |
|
| 669 | - * @throws EE_Error |
|
| 670 | - * @throws InvalidArgumentException |
|
| 671 | - * @throws ReflectionException |
|
| 672 | - * @throws InvalidDataTypeException |
|
| 673 | - * @throws InvalidInterfaceException |
|
| 674 | - */ |
|
| 675 | - private function _generate_question_input(EE_Registration $registration, EE_Question $question, $answer) |
|
| 676 | - { |
|
| 677 | - $identifier = $question->is_system_question() |
|
| 678 | - ? $question->system_ID() |
|
| 679 | - : $question->ID(); |
|
| 680 | - $this->_required_questions[ $identifier ] = $question->required() ? true : false; |
|
| 681 | - add_filter( |
|
| 682 | - 'FHEE__EE_Question__generate_form_input__country_options', |
|
| 683 | - array($this, 'use_cached_countries_for_form_input'), |
|
| 684 | - 10, |
|
| 685 | - 4 |
|
| 686 | - ); |
|
| 687 | - add_filter( |
|
| 688 | - 'FHEE__EE_Question__generate_form_input__state_options', |
|
| 689 | - array($this, 'use_cached_states_for_form_input'), |
|
| 690 | - 10, |
|
| 691 | - 4 |
|
| 692 | - ); |
|
| 693 | - $input_constructor_args = array( |
|
| 694 | - 'html_name' => 'ee_reg_qstn[' . $registration->ID() . '][' . $identifier . ']', |
|
| 695 | - 'html_id' => 'ee_reg_qstn-' . $registration->ID() . '-' . $identifier, |
|
| 696 | - 'html_class' => 'ee-reg-qstn ee-reg-qstn-' . $identifier, |
|
| 697 | - 'html_label_id' => 'ee_reg_qstn-' . $registration->ID() . '-' . $identifier, |
|
| 698 | - 'html_label_class' => 'ee-reg-qstn', |
|
| 699 | - ); |
|
| 700 | - $input_constructor_args['html_label_id'] .= '-lbl'; |
|
| 701 | - if ($answer instanceof EE_Answer && $answer->ID()) { |
|
| 702 | - $input_constructor_args['html_name'] .= '[' . $answer->ID() . ']'; |
|
| 703 | - $input_constructor_args['html_id'] .= '-' . $answer->ID(); |
|
| 704 | - $input_constructor_args['html_label_id'] .= '-' . $answer->ID(); |
|
| 705 | - } |
|
| 706 | - $form_input = $question->generate_form_input( |
|
| 707 | - $registration, |
|
| 708 | - $answer, |
|
| 709 | - $input_constructor_args |
|
| 710 | - ); |
|
| 711 | - remove_filter( |
|
| 712 | - 'FHEE__EE_Question__generate_form_input__country_options', |
|
| 713 | - array($this, 'use_cached_countries_for_form_input') |
|
| 714 | - ); |
|
| 715 | - remove_filter( |
|
| 716 | - 'FHEE__EE_Question__generate_form_input__state_options', |
|
| 717 | - array($this, 'use_cached_states_for_form_input') |
|
| 718 | - ); |
|
| 719 | - return $form_input; |
|
| 720 | - } |
|
| 721 | - |
|
| 722 | - |
|
| 723 | - /** |
|
| 724 | - * Gets the list of countries for the form input |
|
| 725 | - * |
|
| 726 | - * @param array|null $countries_list |
|
| 727 | - * @param EE_Question $question |
|
| 728 | - * @param EE_Registration $registration |
|
| 729 | - * @param EE_Answer $answer |
|
| 730 | - * @return array 2d keys are country IDs, values are their names |
|
| 731 | - * @throws EE_Error |
|
| 732 | - * @throws InvalidArgumentException |
|
| 733 | - * @throws InvalidDataTypeException |
|
| 734 | - * @throws InvalidInterfaceException |
|
| 735 | - * @throws ReflectionException |
|
| 736 | - */ |
|
| 737 | - public function use_cached_countries_for_form_input( |
|
| 738 | - $countries_list, |
|
| 739 | - EE_Question $question = null, |
|
| 740 | - EE_Registration $registration = null, |
|
| 741 | - EE_Answer $answer = null |
|
| 742 | - ) { |
|
| 743 | - $country_options = array('' => ''); |
|
| 744 | - // get possibly cached list of countries |
|
| 745 | - $countries = $this->checkout->action === 'process_reg_step' |
|
| 746 | - ? EEM_Country::instance()->get_all_countries() |
|
| 747 | - : EEM_Country::instance()->get_all_active_countries(); |
|
| 748 | - if (! empty($countries)) { |
|
| 749 | - foreach ($countries as $country) { |
|
| 750 | - if ($country instanceof EE_Country) { |
|
| 751 | - $country_options[ $country->ID() ] = $country->name(); |
|
| 752 | - } |
|
| 753 | - } |
|
| 754 | - } |
|
| 755 | - if ($question instanceof EE_Question && $registration instanceof EE_Registration) { |
|
| 756 | - $answer = EEM_Answer::instance()->get_one( |
|
| 757 | - array(array('QST_ID' => $question->ID(), 'REG_ID' => $registration->ID())) |
|
| 758 | - ); |
|
| 759 | - } else { |
|
| 760 | - $answer = EE_Answer::new_instance(); |
|
| 761 | - } |
|
| 762 | - $country_options = apply_filters( |
|
| 763 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__country_options', |
|
| 764 | - $country_options, |
|
| 765 | - $this, |
|
| 766 | - $registration, |
|
| 767 | - $question, |
|
| 768 | - $answer |
|
| 769 | - ); |
|
| 770 | - return $country_options; |
|
| 771 | - } |
|
| 772 | - |
|
| 773 | - |
|
| 774 | - /** |
|
| 775 | - * Gets the list of states for the form input |
|
| 776 | - * |
|
| 777 | - * @param array|null $states_list |
|
| 778 | - * @param EE_Question $question |
|
| 779 | - * @param EE_Registration $registration |
|
| 780 | - * @param EE_Answer $answer |
|
| 781 | - * @return array 2d keys are state IDs, values are their names |
|
| 782 | - * @throws EE_Error |
|
| 783 | - * @throws InvalidArgumentException |
|
| 784 | - * @throws InvalidDataTypeException |
|
| 785 | - * @throws InvalidInterfaceException |
|
| 786 | - * @throws ReflectionException |
|
| 787 | - */ |
|
| 788 | - public function use_cached_states_for_form_input( |
|
| 789 | - $states_list, |
|
| 790 | - EE_Question $question = null, |
|
| 791 | - EE_Registration $registration = null, |
|
| 792 | - EE_Answer $answer = null |
|
| 793 | - ) { |
|
| 794 | - $state_options = array('' => array('' => '')); |
|
| 795 | - $states = $this->checkout->action === 'process_reg_step' |
|
| 796 | - ? EEM_State::instance()->get_all_states() |
|
| 797 | - : EEM_State::instance()->get_all_active_states(); |
|
| 798 | - if (! empty($states)) { |
|
| 799 | - foreach ($states as $state) { |
|
| 800 | - if ($state instanceof EE_State) { |
|
| 801 | - $state_options[ $state->country()->name() ][ $state->ID() ] = $state->name(); |
|
| 802 | - } |
|
| 803 | - } |
|
| 804 | - } |
|
| 805 | - $state_options = apply_filters( |
|
| 806 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__state_options', |
|
| 807 | - $state_options, |
|
| 808 | - $this, |
|
| 809 | - $registration, |
|
| 810 | - $question, |
|
| 811 | - $answer |
|
| 812 | - ); |
|
| 813 | - return $state_options; |
|
| 814 | - } |
|
| 815 | - |
|
| 816 | - |
|
| 817 | - /********************************************************************************************************/ |
|
| 818 | - /**************************************** PROCESS REG STEP ****************************************/ |
|
| 819 | - /********************************************************************************************************/ |
|
| 820 | - |
|
| 821 | - |
|
| 822 | - /** |
|
| 823 | - * @return bool |
|
| 824 | - * @throws EE_Error |
|
| 825 | - * @throws InvalidArgumentException |
|
| 826 | - * @throws ReflectionException |
|
| 827 | - * @throws RuntimeException |
|
| 828 | - * @throws InvalidDataTypeException |
|
| 829 | - * @throws InvalidInterfaceException |
|
| 830 | - */ |
|
| 831 | - public function process_reg_step() |
|
| 832 | - { |
|
| 833 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 834 | - // grab validated data from form |
|
| 835 | - $valid_data = $this->checkout->current_step->valid_data(); |
|
| 836 | - // EEH_Debug_Tools::printr( $_REQUEST, '$_REQUEST', __FILE__, __LINE__ ); |
|
| 837 | - // EEH_Debug_Tools::printr( $valid_data, '$valid_data', __FILE__, __LINE__ ); |
|
| 838 | - // if we don't have any $valid_data then something went TERRIBLY WRONG !!! |
|
| 839 | - if (empty($valid_data)) { |
|
| 840 | - EE_Error::add_error( |
|
| 841 | - esc_html__('No valid question responses were received.', 'event_espresso'), |
|
| 842 | - __FILE__, |
|
| 843 | - __FUNCTION__, |
|
| 844 | - __LINE__ |
|
| 845 | - ); |
|
| 846 | - return false; |
|
| 847 | - } |
|
| 848 | - if (! $this->checkout->transaction instanceof EE_Transaction || ! $this->checkout->continue_reg) { |
|
| 849 | - EE_Error::add_error( |
|
| 850 | - esc_html__( |
|
| 851 | - 'A valid transaction could not be initiated for processing your registrations.', |
|
| 852 | - 'event_espresso' |
|
| 853 | - ), |
|
| 854 | - __FILE__, |
|
| 855 | - __FUNCTION__, |
|
| 856 | - __LINE__ |
|
| 857 | - ); |
|
| 858 | - return false; |
|
| 859 | - } |
|
| 860 | - // get cached registrations |
|
| 861 | - $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 862 | - // verify we got the goods |
|
| 863 | - if (empty($registrations)) { |
|
| 864 | - // combine the old translated string with a new one, in order to not break translations |
|
| 865 | - $error_message = esc_html__( |
|
| 866 | - 'Your form data could not be applied to any valid registrations.', |
|
| 867 | - 'event_espresso' |
|
| 868 | - ) |
|
| 869 | - . sprintf( |
|
| 870 | - esc_html_x( |
|
| 871 | - '%3$sThis can sometimes happen if too much time has been taken to complete the registration process.%3$sPlease return to the %1$sEvent List%2$s and reselect your tickets. If the problem continues, please contact the site administrator.', |
|
| 872 | - '(line break)This can sometimes happen if too much time has been taken to complete the registration process.(line break)Please return to the (link)Event List(end link) and reselect your tickets. If the problem continues, please contact the site administrator.', |
|
| 873 | - 'event_espresso' |
|
| 874 | - ), |
|
| 875 | - '<a href="' . get_post_type_archive_link('espresso_events') . '" >', |
|
| 876 | - '</a>', |
|
| 877 | - '<br />' |
|
| 878 | - ); |
|
| 879 | - EE_Error::add_error( |
|
| 880 | - $error_message, |
|
| 881 | - __FILE__, |
|
| 882 | - __FUNCTION__, |
|
| 883 | - __LINE__ |
|
| 884 | - ); |
|
| 885 | - return false; |
|
| 886 | - } |
|
| 887 | - // extract attendee info from form data and save to model objects |
|
| 888 | - $registrations_processed = $this->_process_registrations($registrations, $valid_data); |
|
| 889 | - // if first pass thru SPCO, |
|
| 890 | - // then let's check processed registrations against the total number of tickets in the cart |
|
| 891 | - if ($registrations_processed === false) { |
|
| 892 | - // but return immediately if the previous step exited early due to errors |
|
| 893 | - return false; |
|
| 894 | - } |
|
| 895 | - if (! $this->checkout->revisit && $registrations_processed !== $this->checkout->total_ticket_count) { |
|
| 896 | - // generate a correctly translated string for all possible singular/plural combinations |
|
| 897 | - if ($this->checkout->total_ticket_count === 1 && $registrations_processed !== 1) { |
|
| 898 | - $error_msg = sprintf( |
|
| 899 | - esc_html_x( |
|
| 900 | - 'There was %1$d ticket in the Event Queue, but %2$ds registrations were processed', |
|
| 901 | - 'There was 1 ticket in the Event Queue, but 2 registrations were processed', |
|
| 902 | - 'event_espresso' |
|
| 903 | - ), |
|
| 904 | - $this->checkout->total_ticket_count, |
|
| 905 | - $registrations_processed |
|
| 906 | - ); |
|
| 907 | - } elseif ($this->checkout->total_ticket_count !== 1 && $registrations_processed === 1) { |
|
| 908 | - $error_msg = sprintf( |
|
| 909 | - esc_html_x( |
|
| 910 | - 'There was a total of %1$d tickets in the Event Queue, but only %2$ds registration was processed', |
|
| 911 | - 'There was a total of 2 tickets in the Event Queue, but only 1 registration was processed', |
|
| 912 | - 'event_espresso' |
|
| 913 | - ), |
|
| 914 | - $this->checkout->total_ticket_count, |
|
| 915 | - $registrations_processed |
|
| 916 | - ); |
|
| 917 | - } else { |
|
| 918 | - $error_msg = sprintf( |
|
| 919 | - esc_html__( |
|
| 920 | - 'There was a total of 2 tickets in the Event Queue, but 2 registrations were processed', |
|
| 921 | - 'event_espresso' |
|
| 922 | - ), |
|
| 923 | - $this->checkout->total_ticket_count, |
|
| 924 | - $registrations_processed |
|
| 925 | - ); |
|
| 926 | - } |
|
| 927 | - EE_Error::add_error($error_msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 928 | - return false; |
|
| 929 | - } |
|
| 930 | - // mark this reg step as completed |
|
| 931 | - $this->set_completed(); |
|
| 932 | - $this->_set_success_message( |
|
| 933 | - esc_html__('The Attendee Information Step has been successfully completed.', 'event_espresso') |
|
| 934 | - ); |
|
| 935 | - // do action in case a plugin wants to do something with the data submitted in step 1. |
|
| 936 | - // passes EE_Single_Page_Checkout, and it's posted data |
|
| 937 | - do_action('AHEE__EE_Single_Page_Checkout__process_attendee_information__end', $this, $valid_data); |
|
| 938 | - return true; |
|
| 939 | - } |
|
| 940 | - |
|
| 941 | - |
|
| 942 | - /** |
|
| 943 | - * _process_registrations |
|
| 944 | - * |
|
| 945 | - * @param EE_Registration[] $registrations |
|
| 946 | - * @param array[][] $valid_data |
|
| 947 | - * @return bool|int |
|
| 948 | - * @throws EntityNotFoundException |
|
| 949 | - * @throws EE_Error |
|
| 950 | - * @throws InvalidArgumentException |
|
| 951 | - * @throws ReflectionException |
|
| 952 | - * @throws RuntimeException |
|
| 953 | - * @throws InvalidDataTypeException |
|
| 954 | - * @throws InvalidInterfaceException |
|
| 955 | - */ |
|
| 956 | - private function _process_registrations($registrations = array(), $valid_data = array()) |
|
| 957 | - { |
|
| 958 | - // load resources and set some defaults |
|
| 959 | - EE_Registry::instance()->load_model('Attendee'); |
|
| 960 | - // holder for primary registrant attendee object |
|
| 961 | - $this->checkout->primary_attendee_obj = null; |
|
| 962 | - // array for tracking reg form data for the primary registrant |
|
| 963 | - $primary_registrant = array( |
|
| 964 | - 'line_item_id' => null, |
|
| 965 | - ); |
|
| 966 | - $copy_primary = false; |
|
| 967 | - // reg form sections that do not contain inputs |
|
| 968 | - $non_input_form_sections = array( |
|
| 969 | - 'primary_registrant', |
|
| 970 | - 'additional_attendee_reg_info', |
|
| 971 | - 'spco_copy_attendee_chk', |
|
| 972 | - ); |
|
| 973 | - // attendee counter |
|
| 974 | - $att_nmbr = 0; |
|
| 975 | - // grab the saved registrations from the transaction |
|
| 976 | - foreach ($registrations as $registration) { |
|
| 977 | - // verify EE_Registration object |
|
| 978 | - if (! $registration instanceof EE_Registration) { |
|
| 979 | - EE_Error::add_error( |
|
| 980 | - esc_html__( |
|
| 981 | - 'An invalid Registration object was discovered when attempting to process your registration information.', |
|
| 982 | - 'event_espresso' |
|
| 983 | - ), |
|
| 984 | - __FILE__, |
|
| 985 | - __FUNCTION__, |
|
| 986 | - __LINE__ |
|
| 987 | - ); |
|
| 988 | - return false; |
|
| 989 | - } |
|
| 990 | - /** @var string $reg_url_link */ |
|
| 991 | - $reg_url_link = $registration->reg_url_link(); |
|
| 992 | - // reg_url_link exists ? |
|
| 993 | - if (! empty($reg_url_link)) { |
|
| 994 | - // should this registration be processed during this visit ? |
|
| 995 | - if ($this->checkout->visit_allows_processing_of_this_registration($registration)) { |
|
| 996 | - // if NOT revisiting, then let's save the registration now, |
|
| 997 | - // so that we have a REG_ID to use when generating other objects |
|
| 998 | - if (! $this->checkout->revisit) { |
|
| 999 | - $registration->save(); |
|
| 1000 | - } |
|
| 1001 | - /** |
|
| 1002 | - * This allows plugins to trigger a fail on processing of a |
|
| 1003 | - * registration for any conditions they may have for it to pass. |
|
| 1004 | - * |
|
| 1005 | - * @var bool if true is returned by the plugin then the |
|
| 1006 | - * registration processing is halted. |
|
| 1007 | - */ |
|
| 1008 | - if (apply_filters( |
|
| 1009 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___process_registrations__pre_registration_process', |
|
| 1010 | - false, |
|
| 1011 | - $att_nmbr, |
|
| 1012 | - $registration, |
|
| 1013 | - $registrations, |
|
| 1014 | - $valid_data, |
|
| 1015 | - $this |
|
| 1016 | - )) { |
|
| 1017 | - return false; |
|
| 1018 | - } |
|
| 1019 | - |
|
| 1020 | - // Houston, we have a registration! |
|
| 1021 | - $att_nmbr++; |
|
| 1022 | - $this->_attendee_data[ $reg_url_link ] = array(); |
|
| 1023 | - // grab any existing related answer objects |
|
| 1024 | - $this->_registration_answers = $registration->answers(); |
|
| 1025 | - // unset( $valid_data[ $reg_url_link ]['additional_attendee_reg_info'] ); |
|
| 1026 | - if (isset($valid_data[ $reg_url_link ])) { |
|
| 1027 | - // do we need to copy basic info from primary attendee ? |
|
| 1028 | - $copy_primary = isset($valid_data[ $reg_url_link ]['additional_attendee_reg_info']) |
|
| 1029 | - && absint($valid_data[ $reg_url_link ]['additional_attendee_reg_info']) === 0; |
|
| 1030 | - // filter form input data for this registration |
|
| 1031 | - $valid_data[ $reg_url_link ] = (array) apply_filters( |
|
| 1032 | - 'FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item', |
|
| 1033 | - $valid_data[ $reg_url_link ] |
|
| 1034 | - ); |
|
| 1035 | - if (isset($valid_data['primary_attendee'])) { |
|
| 1036 | - $primary_registrant['line_item_id'] = ! empty($valid_data['primary_attendee']) |
|
| 1037 | - ? $valid_data['primary_attendee'] |
|
| 1038 | - : false; |
|
| 1039 | - unset($valid_data['primary_attendee']); |
|
| 1040 | - } |
|
| 1041 | - // now loop through our array of valid post data && process attendee reg forms |
|
| 1042 | - foreach ($valid_data[ $reg_url_link ] as $form_section => $form_inputs) { |
|
| 1043 | - if (! in_array($form_section, $non_input_form_sections, true)) { |
|
| 1044 | - foreach ($form_inputs as $form_input => $input_value) { |
|
| 1045 | - // \EEH_Debug_Tools::printr( $input_value, $form_input, __FILE__, __LINE__ ); |
|
| 1046 | - // check for critical inputs |
|
| 1047 | - if (! $this->_verify_critical_attendee_details_are_set_and_validate_email( |
|
| 1048 | - $form_input, |
|
| 1049 | - $input_value |
|
| 1050 | - ) |
|
| 1051 | - ) { |
|
| 1052 | - return false; |
|
| 1053 | - } |
|
| 1054 | - // store a bit of data about the primary attendee |
|
| 1055 | - if ($att_nmbr === 1 |
|
| 1056 | - && ! empty($input_value) |
|
| 1057 | - && $reg_url_link === $primary_registrant['line_item_id'] |
|
| 1058 | - ) { |
|
| 1059 | - $primary_registrant[ $form_input ] = $input_value; |
|
| 1060 | - } elseif ($copy_primary |
|
| 1061 | - && $input_value === null |
|
| 1062 | - && isset($primary_registrant[ $form_input ]) |
|
| 1063 | - ) { |
|
| 1064 | - $input_value = $primary_registrant[ $form_input ]; |
|
| 1065 | - } |
|
| 1066 | - // now attempt to save the input data |
|
| 1067 | - if (! $this->_save_registration_form_input( |
|
| 1068 | - $registration, |
|
| 1069 | - $form_input, |
|
| 1070 | - $input_value |
|
| 1071 | - ) |
|
| 1072 | - ) { |
|
| 1073 | - EE_Error::add_error( |
|
| 1074 | - sprintf( |
|
| 1075 | - esc_html_x( |
|
| 1076 | - 'Unable to save registration form data for the form input: "%1$s" with the submitted value: "%2$s"', |
|
| 1077 | - 'Unable to save registration form data for the form input: "form input name" with the submitted value: "form input value"', |
|
| 1078 | - 'event_espresso' |
|
| 1079 | - ), |
|
| 1080 | - $form_input, |
|
| 1081 | - $input_value |
|
| 1082 | - ), |
|
| 1083 | - __FILE__, |
|
| 1084 | - __FUNCTION__, |
|
| 1085 | - __LINE__ |
|
| 1086 | - ); |
|
| 1087 | - return false; |
|
| 1088 | - } |
|
| 1089 | - } |
|
| 1090 | - } |
|
| 1091 | - } // end of foreach ( $valid_data[ $reg_url_link ] as $form_section => $form_inputs ) |
|
| 1092 | - } |
|
| 1093 | - // EEH_Debug_Tools::printr( $this->_attendee_data, '$this->_attendee_data', __FILE__, __LINE__ ); |
|
| 1094 | - // this registration does not require additional attendee information ? |
|
| 1095 | - if ($copy_primary |
|
| 1096 | - && $att_nmbr > 1 |
|
| 1097 | - && $this->checkout->primary_attendee_obj instanceof EE_Attendee |
|
| 1098 | - ) { |
|
| 1099 | - // just copy the primary registrant |
|
| 1100 | - $attendee = $this->checkout->primary_attendee_obj; |
|
| 1101 | - } else { |
|
| 1102 | - // ensure critical details are set for additional attendees |
|
| 1103 | - $this->_attendee_data[ $reg_url_link ] = $att_nmbr > 1 |
|
| 1104 | - ? $this->_copy_critical_attendee_details_from_primary_registrant( |
|
| 1105 | - $this->_attendee_data[ $reg_url_link ] |
|
| 1106 | - ) |
|
| 1107 | - : $this->_attendee_data[ $reg_url_link ]; |
|
| 1108 | - // execute create attendee command (which may return an existing attendee) |
|
| 1109 | - $attendee = EE_Registry::instance()->BUS->execute( |
|
| 1110 | - new CreateAttendeeCommand( |
|
| 1111 | - $this->_attendee_data[ $reg_url_link ], |
|
| 1112 | - $registration |
|
| 1113 | - ) |
|
| 1114 | - ); |
|
| 1115 | - // who's #1 ? |
|
| 1116 | - if ($att_nmbr === 1) { |
|
| 1117 | - $this->checkout->primary_attendee_obj = $attendee; |
|
| 1118 | - } |
|
| 1119 | - } |
|
| 1120 | - // EEH_Debug_Tools::printr( $attendee, '$attendee', __FILE__, __LINE__ ); |
|
| 1121 | - // add relation to registration, set attendee ID, and cache attendee |
|
| 1122 | - $this->_associate_attendee_with_registration($registration, $attendee); |
|
| 1123 | - // \EEH_Debug_Tools::printr( $registration, '$registration', __FILE__, __LINE__ ); |
|
| 1124 | - if (! $registration->attendee() instanceof EE_Attendee) { |
|
| 1125 | - EE_Error::add_error( |
|
| 1126 | - sprintf( |
|
| 1127 | - esc_html_x( |
|
| 1128 | - 'Registration %s has an invalid or missing Attendee object.', |
|
| 1129 | - 'Registration 123-456-789 has an invalid or missing Attendee object.', |
|
| 1130 | - 'event_espresso' |
|
| 1131 | - ), |
|
| 1132 | - $reg_url_link |
|
| 1133 | - ), |
|
| 1134 | - __FILE__, |
|
| 1135 | - __FUNCTION__, |
|
| 1136 | - __LINE__ |
|
| 1137 | - ); |
|
| 1138 | - return false; |
|
| 1139 | - } |
|
| 1140 | - /** @type EE_Registration_Processor $registration_processor */ |
|
| 1141 | - $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
| 1142 | - // at this point, we should have enough details about the registrant to consider the registration |
|
| 1143 | - // NOT incomplete |
|
| 1144 | - $registration_processor->toggle_incomplete_registration_status_to_default( |
|
| 1145 | - $registration, |
|
| 1146 | - false, |
|
| 1147 | - new Context( |
|
| 1148 | - 'spco_reg_step_attendee_information_process_registrations', |
|
| 1149 | - esc_html__( |
|
| 1150 | - 'Finished populating registration with details from the registration form after submitting the Attendee Information Reg Step.', |
|
| 1151 | - 'event_espresso' |
|
| 1152 | - ) |
|
| 1153 | - ) |
|
| 1154 | - ); |
|
| 1155 | - // we can also consider the TXN to not have been failed, so temporarily upgrade it's status to |
|
| 1156 | - // abandoned |
|
| 1157 | - $this->checkout->transaction->toggle_failed_transaction_status(); |
|
| 1158 | - // if we've gotten this far, then let's save what we have |
|
| 1159 | - $registration->save(); |
|
| 1160 | - // add relation between TXN and registration |
|
| 1161 | - $this->_associate_registration_with_transaction($registration); |
|
| 1162 | - } |
|
| 1163 | - } else { |
|
| 1164 | - EE_Error::add_error( |
|
| 1165 | - esc_html__( |
|
| 1166 | - 'An invalid or missing line item ID was encountered while attempting to process the registration form.', |
|
| 1167 | - 'event_espresso' |
|
| 1168 | - ), |
|
| 1169 | - __FILE__, |
|
| 1170 | - __FUNCTION__, |
|
| 1171 | - __LINE__ |
|
| 1172 | - ); |
|
| 1173 | - // remove malformed data |
|
| 1174 | - unset($valid_data[ $reg_url_link ]); |
|
| 1175 | - return false; |
|
| 1176 | - } |
|
| 1177 | - } // end of foreach ( $this->checkout->transaction->registrations() as $registration ) |
|
| 1178 | - return $att_nmbr; |
|
| 1179 | - } |
|
| 1180 | - |
|
| 1181 | - |
|
| 1182 | - /** |
|
| 1183 | - * _save_registration_form_input |
|
| 1184 | - * |
|
| 1185 | - * @param EE_Registration $registration |
|
| 1186 | - * @param string $form_input |
|
| 1187 | - * @param string $input_value |
|
| 1188 | - * @return bool |
|
| 1189 | - * @throws EE_Error |
|
| 1190 | - * @throws InvalidArgumentException |
|
| 1191 | - * @throws InvalidDataTypeException |
|
| 1192 | - * @throws InvalidInterfaceException |
|
| 1193 | - * @throws ReflectionException |
|
| 1194 | - */ |
|
| 1195 | - private function _save_registration_form_input( |
|
| 1196 | - EE_Registration $registration, |
|
| 1197 | - $form_input = '', |
|
| 1198 | - $input_value = '' |
|
| 1199 | - ) { |
|
| 1200 | - // \EEH_Debug_Tools::printr( __FUNCTION__, __CLASS__, __FILE__, __LINE__, 2 ); |
|
| 1201 | - // \EEH_Debug_Tools::printr( $form_input, '$form_input', __FILE__, __LINE__ ); |
|
| 1202 | - // \EEH_Debug_Tools::printr( $input_value, '$input_value', __FILE__, __LINE__ ); |
|
| 1203 | - // allow for plugins to hook in and do their own processing of the form input. |
|
| 1204 | - // For plugins to bypass normal processing here, they just need to return a boolean value. |
|
| 1205 | - if (apply_filters( |
|
| 1206 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___save_registration_form_input', |
|
| 1207 | - false, |
|
| 1208 | - $registration, |
|
| 1209 | - $form_input, |
|
| 1210 | - $input_value, |
|
| 1211 | - $this |
|
| 1212 | - )) { |
|
| 1213 | - return true; |
|
| 1214 | - } |
|
| 1215 | - /* |
|
| 21 | + /** |
|
| 22 | + * @type bool $_print_copy_info |
|
| 23 | + */ |
|
| 24 | + private $_print_copy_info = false; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * @type array $_attendee_data |
|
| 28 | + */ |
|
| 29 | + private $_attendee_data = array(); |
|
| 30 | + |
|
| 31 | + /** |
|
| 32 | + * @type array $_required_questions |
|
| 33 | + */ |
|
| 34 | + private $_required_questions = array(); |
|
| 35 | + |
|
| 36 | + /** |
|
| 37 | + * @type array $_registration_answers |
|
| 38 | + */ |
|
| 39 | + private $_registration_answers = array(); |
|
| 40 | + |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * class constructor |
|
| 44 | + * |
|
| 45 | + * @access public |
|
| 46 | + * @param EE_Checkout $checkout |
|
| 47 | + */ |
|
| 48 | + public function __construct(EE_Checkout $checkout) |
|
| 49 | + { |
|
| 50 | + $this->_slug = 'attendee_information'; |
|
| 51 | + $this->_name = esc_html__('Attendee Information', 'event_espresso'); |
|
| 52 | + $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . DS . 'attendee_info_main.template.php'; |
|
| 53 | + $this->checkout = $checkout; |
|
| 54 | + $this->_reset_success_message(); |
|
| 55 | + $this->set_instructions( |
|
| 56 | + esc_html__('Please answer the following registration questions before proceeding.', 'event_espresso') |
|
| 57 | + ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + |
|
| 61 | + public function translate_js_strings() |
|
| 62 | + { |
|
| 63 | + EE_Registry::$i18n_js_strings['required_field'] = esc_html__( |
|
| 64 | + ' is a required question.', |
|
| 65 | + 'event_espresso' |
|
| 66 | + ); |
|
| 67 | + EE_Registry::$i18n_js_strings['required_multi_field'] = esc_html__( |
|
| 68 | + ' is a required question. Please enter a value for at least one of the options.', |
|
| 69 | + 'event_espresso' |
|
| 70 | + ); |
|
| 71 | + EE_Registry::$i18n_js_strings['answer_required_questions'] = esc_html__( |
|
| 72 | + 'Please answer all required questions correctly before proceeding.', |
|
| 73 | + 'event_espresso' |
|
| 74 | + ); |
|
| 75 | + EE_Registry::$i18n_js_strings['attendee_info_copied'] = sprintf( |
|
| 76 | + esc_html_x( |
|
| 77 | + 'The attendee information was successfully copied.%sPlease ensure the rest of the registration form is completed before proceeding.', |
|
| 78 | + 'The attendee information was successfully copied.(line break)Please ensure the rest of the registration form is completed before proceeding.', |
|
| 79 | + 'event_espresso' |
|
| 80 | + ), |
|
| 81 | + '<br/>' |
|
| 82 | + ); |
|
| 83 | + EE_Registry::$i18n_js_strings['attendee_info_copy_error'] = esc_html__( |
|
| 84 | + 'An unknown error occurred on the server while attempting to copy the attendee information. Please refresh the page and try again.', |
|
| 85 | + 'event_espresso' |
|
| 86 | + ); |
|
| 87 | + EE_Registry::$i18n_js_strings['enter_valid_email'] = esc_html__( |
|
| 88 | + 'You must enter a valid email address.', |
|
| 89 | + 'event_espresso' |
|
| 90 | + ); |
|
| 91 | + EE_Registry::$i18n_js_strings['valid_email_and_questions'] = esc_html__( |
|
| 92 | + 'You must enter a valid email address and answer all other required questions before you can proceed.', |
|
| 93 | + 'event_espresso' |
|
| 94 | + ); |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + |
|
| 98 | + public function enqueue_styles_and_scripts() |
|
| 99 | + { |
|
| 100 | + } |
|
| 101 | + |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * @return boolean |
|
| 105 | + */ |
|
| 106 | + public function initialize_reg_step() |
|
| 107 | + { |
|
| 108 | + return true; |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + |
|
| 112 | + /** |
|
| 113 | + * @return EE_Form_Section_Proper |
|
| 114 | + * @throws DomainException |
|
| 115 | + * @throws EE_Error |
|
| 116 | + * @throws InvalidArgumentException |
|
| 117 | + * @throws ReflectionException |
|
| 118 | + * @throws EntityNotFoundException |
|
| 119 | + * @throws InvalidDataTypeException |
|
| 120 | + * @throws InvalidInterfaceException |
|
| 121 | + */ |
|
| 122 | + public function generate_reg_form() |
|
| 123 | + { |
|
| 124 | + $this->_print_copy_info = false; |
|
| 125 | + $primary_registrant = null; |
|
| 126 | + // autoload Line_Item_Display classes |
|
| 127 | + EEH_Autoloader::register_line_item_display_autoloaders(); |
|
| 128 | + $Line_Item_Display = new EE_Line_Item_Display(); |
|
| 129 | + // calculate taxes |
|
| 130 | + $Line_Item_Display->display_line_item( |
|
| 131 | + $this->checkout->cart->get_grand_total(), |
|
| 132 | + array('set_tax_rate' => true) |
|
| 133 | + ); |
|
| 134 | + /** @var $subsections EE_Form_Section_Proper[] */ |
|
| 135 | + $extra_inputs_section = $this->reg_step_hidden_inputs(); |
|
| 136 | + $subsections = array( |
|
| 137 | + 'default_hidden_inputs' => $extra_inputs_section, |
|
| 138 | + ); |
|
| 139 | + |
|
| 140 | + /** |
|
| 141 | + * @var $reg_config EE_Registration_Config |
|
| 142 | + */ |
|
| 143 | + $reg_config = LoaderFactory::getLoader()->getShared('EE_Registration_Config'); |
|
| 144 | + // if this isn't a revisit, and they have the privacy consent box enalbed, add it |
|
| 145 | + if (! $this->checkout->revisit && $reg_config->isConsentCheckboxEnabled()) { |
|
| 146 | + $extra_inputs_section->add_subsections( |
|
| 147 | + array( |
|
| 148 | + 'consent_box' => new EE_Form_Section_Proper( |
|
| 149 | + array( |
|
| 150 | + 'layout_strategy' => |
|
| 151 | + new EE_Template_Layout( |
|
| 152 | + array( |
|
| 153 | + 'input_template_file' => SPCO_REG_STEPS_PATH . $this->_slug . DS . 'privacy_consent.template.php', |
|
| 154 | + ) |
|
| 155 | + ), |
|
| 156 | + 'subsections' => array( |
|
| 157 | + 'consent' => new EE_Checkbox_Multi_Input( |
|
| 158 | + array( |
|
| 159 | + 'consent' => $reg_config->getConsentCheckboxLabelText(), |
|
| 160 | + ), |
|
| 161 | + array( |
|
| 162 | + 'required' => true, |
|
| 163 | + 'required_validation_error_message' => esc_html__( |
|
| 164 | + 'You must consent to these terms in order to register.', |
|
| 165 | + 'event_espresso' |
|
| 166 | + ), |
|
| 167 | + 'html_label_text' => '', |
|
| 168 | + ) |
|
| 169 | + ), |
|
| 170 | + ), |
|
| 171 | + ) |
|
| 172 | + ), |
|
| 173 | + ), |
|
| 174 | + null, |
|
| 175 | + false |
|
| 176 | + ); |
|
| 177 | + } |
|
| 178 | + $template_args = array( |
|
| 179 | + 'revisit' => $this->checkout->revisit, |
|
| 180 | + 'registrations' => array(), |
|
| 181 | + 'ticket_count' => array(), |
|
| 182 | + ); |
|
| 183 | + // grab the saved registrations from the transaction |
|
| 184 | + $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 185 | + if ($registrations) { |
|
| 186 | + foreach ($registrations as $registration) { |
|
| 187 | + // can this registration be processed during this visit ? |
|
| 188 | + if ($registration instanceof EE_Registration |
|
| 189 | + && $this->checkout->visit_allows_processing_of_this_registration($registration) |
|
| 190 | + ) { |
|
| 191 | + $subsections[ $registration->reg_url_link() ] = $this->_registrations_reg_form($registration); |
|
| 192 | + if (! $this->checkout->admin_request) { |
|
| 193 | + $template_args['registrations'][ $registration->reg_url_link() ] = $registration; |
|
| 194 | + $template_args['ticket_count'][ $registration->ticket()->ID() ] = isset( |
|
| 195 | + $template_args['ticket_count'][ $registration->ticket()->ID() ] |
|
| 196 | + ) |
|
| 197 | + ? $template_args['ticket_count'][ $registration->ticket()->ID() ] + 1 |
|
| 198 | + : 1; |
|
| 199 | + $ticket_line_item = EEH_Line_Item::get_line_items_by_object_type_and_IDs( |
|
| 200 | + $this->checkout->cart->get_grand_total(), |
|
| 201 | + 'Ticket', |
|
| 202 | + array($registration->ticket()->ID()) |
|
| 203 | + ); |
|
| 204 | + $ticket_line_item = is_array($ticket_line_item) |
|
| 205 | + ? reset($ticket_line_item) |
|
| 206 | + : $ticket_line_item; |
|
| 207 | + $template_args['ticket_line_item'][ $registration->ticket()->ID() ] = |
|
| 208 | + $Line_Item_Display->display_line_item($ticket_line_item); |
|
| 209 | + } |
|
| 210 | + if ($registration->is_primary_registrant()) { |
|
| 211 | + $primary_registrant = $registration->reg_url_link(); |
|
| 212 | + } |
|
| 213 | + } |
|
| 214 | + } |
|
| 215 | + // print_copy_info ? |
|
| 216 | + if ($primary_registrant && ! $this->checkout->admin_request && count($registrations) > 1) { |
|
| 217 | + // TODO: add admin option for toggling copy attendee info, |
|
| 218 | + // then use that value to change $this->_print_copy_info |
|
| 219 | + $copy_options['spco_copy_attendee_chk'] = $this->_print_copy_info |
|
| 220 | + ? $this->_copy_attendee_info_form() |
|
| 221 | + : $this->_auto_copy_attendee_info(); |
|
| 222 | + // generate hidden input |
|
| 223 | + if (isset($subsections[ $primary_registrant ]) |
|
| 224 | + && $subsections[ $primary_registrant ] instanceof EE_Form_Section_Proper |
|
| 225 | + ) { |
|
| 226 | + $subsections[ $primary_registrant ]->add_subsections( |
|
| 227 | + $copy_options, |
|
| 228 | + 'primary_registrant', |
|
| 229 | + false |
|
| 230 | + ); |
|
| 231 | + } |
|
| 232 | + } |
|
| 233 | + } |
|
| 234 | + return new EE_Form_Section_Proper( |
|
| 235 | + array( |
|
| 236 | + 'name' => $this->reg_form_name(), |
|
| 237 | + 'html_id' => $this->reg_form_name(), |
|
| 238 | + 'subsections' => $subsections, |
|
| 239 | + 'layout_strategy' => $this->checkout->admin_request |
|
| 240 | + ? |
|
| 241 | + new EE_Div_Per_Section_Layout() |
|
| 242 | + : |
|
| 243 | + new EE_Template_Layout( |
|
| 244 | + array( |
|
| 245 | + 'layout_template_file' => $this->_template, // layout_template |
|
| 246 | + 'template_args' => $template_args, |
|
| 247 | + ) |
|
| 248 | + ), |
|
| 249 | + ) |
|
| 250 | + ); |
|
| 251 | + } |
|
| 252 | + |
|
| 253 | + |
|
| 254 | + /** |
|
| 255 | + * @param EE_Registration $registration |
|
| 256 | + * @return EE_Form_Section_Base |
|
| 257 | + * @throws EE_Error |
|
| 258 | + * @throws InvalidArgumentException |
|
| 259 | + * @throws EntityNotFoundException |
|
| 260 | + * @throws InvalidDataTypeException |
|
| 261 | + * @throws InvalidInterfaceException |
|
| 262 | + * @throws ReflectionException |
|
| 263 | + */ |
|
| 264 | + private function _registrations_reg_form(EE_Registration $registration) |
|
| 265 | + { |
|
| 266 | + static $attendee_nmbr = 1; |
|
| 267 | + $form_args = array(); |
|
| 268 | + // verify that registration has valid event |
|
| 269 | + if ($registration->event() instanceof EE_Event) { |
|
| 270 | + $question_groups = $registration->event()->question_groups( |
|
| 271 | + apply_filters( |
|
| 272 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___registrations_reg_form__question_groups_query_parameters', |
|
| 273 | + array( |
|
| 274 | + array( |
|
| 275 | + 'Event.EVT_ID' => $registration->event()->ID(), |
|
| 276 | + 'Event_Question_Group.EQG_primary' => $registration->count() === 1, |
|
| 277 | + ), |
|
| 278 | + 'order_by' => array('QSG_order' => 'ASC'), |
|
| 279 | + ), |
|
| 280 | + $registration, |
|
| 281 | + $this |
|
| 282 | + ) |
|
| 283 | + ); |
|
| 284 | + if ($question_groups) { |
|
| 285 | + // array of params to pass to parent constructor |
|
| 286 | + $form_args = array( |
|
| 287 | + 'html_id' => 'ee-registration-' . $registration->reg_url_link(), |
|
| 288 | + 'html_class' => 'ee-reg-form-attendee-dv', |
|
| 289 | + 'html_style' => $this->checkout->admin_request |
|
| 290 | + ? 'padding:0em 2em 1em; margin:3em 0 0; border:1px solid #ddd;' |
|
| 291 | + : '', |
|
| 292 | + 'subsections' => array(), |
|
| 293 | + 'layout_strategy' => new EE_Fieldset_Section_Layout( |
|
| 294 | + array( |
|
| 295 | + 'legend_class' => 'spco-attendee-lgnd smaller-text lt-grey-text', |
|
| 296 | + 'legend_text' => sprintf( |
|
| 297 | + esc_html_x( |
|
| 298 | + 'Attendee %d', |
|
| 299 | + 'Attendee 123', |
|
| 300 | + 'event_espresso' |
|
| 301 | + ), |
|
| 302 | + $attendee_nmbr |
|
| 303 | + ), |
|
| 304 | + ) |
|
| 305 | + ), |
|
| 306 | + ); |
|
| 307 | + foreach ($question_groups as $question_group) { |
|
| 308 | + if ($question_group instanceof EE_Question_Group) { |
|
| 309 | + $form_args['subsections'][ $question_group->identifier() ] = $this->_question_group_reg_form( |
|
| 310 | + $registration, |
|
| 311 | + $question_group |
|
| 312 | + ); |
|
| 313 | + } |
|
| 314 | + } |
|
| 315 | + // add hidden input |
|
| 316 | + $form_args['subsections']['additional_attendee_reg_info'] = $this->_additional_attendee_reg_info_input( |
|
| 317 | + $registration |
|
| 318 | + ); |
|
| 319 | + // if we have question groups for additional attendees, then display the copy options |
|
| 320 | + $this->_print_copy_info = $attendee_nmbr > 1 ? true : $this->_print_copy_info; |
|
| 321 | + if ($registration->is_primary_registrant()) { |
|
| 322 | + // generate hidden input |
|
| 323 | + $form_args['subsections']['primary_registrant'] = $this->_additional_primary_registrant_inputs( |
|
| 324 | + $registration |
|
| 325 | + ); |
|
| 326 | + } |
|
| 327 | + } |
|
| 328 | + } |
|
| 329 | + $attendee_nmbr++; |
|
| 330 | + return ! empty($form_args) |
|
| 331 | + ? new EE_Form_Section_Proper($form_args) |
|
| 332 | + : new EE_Form_Section_HTML(); |
|
| 333 | + } |
|
| 334 | + |
|
| 335 | + |
|
| 336 | + /** |
|
| 337 | + * @param EE_Registration $registration |
|
| 338 | + * @param bool $additional_attendee_reg_info |
|
| 339 | + * @return EE_Form_Input_Base |
|
| 340 | + * @throws EE_Error |
|
| 341 | + */ |
|
| 342 | + private function _additional_attendee_reg_info_input( |
|
| 343 | + EE_Registration $registration, |
|
| 344 | + $additional_attendee_reg_info = true |
|
| 345 | + ) { |
|
| 346 | + // generate hidden input |
|
| 347 | + return new EE_Hidden_Input( |
|
| 348 | + array( |
|
| 349 | + 'html_id' => 'additional-attendee-reg-info-' . $registration->reg_url_link(), |
|
| 350 | + 'default' => $additional_attendee_reg_info, |
|
| 351 | + ) |
|
| 352 | + ); |
|
| 353 | + } |
|
| 354 | + |
|
| 355 | + |
|
| 356 | + /** |
|
| 357 | + * @param EE_Registration $registration |
|
| 358 | + * @param EE_Question_Group $question_group |
|
| 359 | + * @return EE_Form_Section_Proper |
|
| 360 | + * @throws EE_Error |
|
| 361 | + * @throws InvalidArgumentException |
|
| 362 | + * @throws InvalidDataTypeException |
|
| 363 | + * @throws InvalidInterfaceException |
|
| 364 | + * @throws ReflectionException |
|
| 365 | + */ |
|
| 366 | + private function _question_group_reg_form(EE_Registration $registration, EE_Question_Group $question_group) |
|
| 367 | + { |
|
| 368 | + // array of params to pass to parent constructor |
|
| 369 | + $form_args = array( |
|
| 370 | + 'html_id' => 'ee-reg-form-qstn-grp-' . $question_group->identifier() . '-' . $registration->ID(), |
|
| 371 | + 'html_class' => $this->checkout->admin_request |
|
| 372 | + ? 'form-table ee-reg-form-qstn-grp-dv' |
|
| 373 | + : 'ee-reg-form-qstn-grp-dv', |
|
| 374 | + 'html_label_id' => 'ee-reg-form-qstn-grp-' . $question_group->identifier() . '-' |
|
| 375 | + . $registration->ID() . '-lbl', |
|
| 376 | + 'subsections' => array( |
|
| 377 | + 'reg_form_qstn_grp_hdr' => $this->_question_group_header($question_group), |
|
| 378 | + ), |
|
| 379 | + 'layout_strategy' => $this->checkout->admin_request |
|
| 380 | + ? new EE_Admin_Two_Column_Layout() |
|
| 381 | + : new EE_Div_Per_Section_Layout(), |
|
| 382 | + ); |
|
| 383 | + // where params |
|
| 384 | + $query_params = array('QST_deleted' => 0); |
|
| 385 | + // don't load admin only questions on the frontend |
|
| 386 | + if (! $this->checkout->admin_request) { |
|
| 387 | + $query_params['QST_admin_only'] = array('!=', true); |
|
| 388 | + } |
|
| 389 | + $questions = $question_group->get_many_related( |
|
| 390 | + 'Question', |
|
| 391 | + apply_filters( |
|
| 392 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__related_questions_query_params', |
|
| 393 | + array( |
|
| 394 | + $query_params, |
|
| 395 | + 'order_by' => array( |
|
| 396 | + 'Question_Group_Question.QGQ_order' => 'ASC', |
|
| 397 | + ), |
|
| 398 | + ), |
|
| 399 | + $question_group, |
|
| 400 | + $registration, |
|
| 401 | + $this |
|
| 402 | + ) |
|
| 403 | + ); |
|
| 404 | + // filter for additional content before questions |
|
| 405 | + $form_args['subsections']['reg_form_questions_before'] = new EE_Form_Section_HTML( |
|
| 406 | + apply_filters( |
|
| 407 | + 'FHEE__EEH_Form_Fields__generate_question_groups_html__before_question_group_questions', |
|
| 408 | + '', |
|
| 409 | + $registration, |
|
| 410 | + $question_group, |
|
| 411 | + $this |
|
| 412 | + ) |
|
| 413 | + ); |
|
| 414 | + // loop thru questions |
|
| 415 | + foreach ($questions as $question) { |
|
| 416 | + if ($question instanceof EE_Question) { |
|
| 417 | + $identifier = $question->is_system_question() |
|
| 418 | + ? $question->system_ID() |
|
| 419 | + : $question->ID(); |
|
| 420 | + $form_args['subsections'][ $identifier ] = $this->reg_form_question($registration, $question); |
|
| 421 | + } |
|
| 422 | + } |
|
| 423 | + $form_args['subsections'] = apply_filters( |
|
| 424 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information__question_group_reg_form__subsections_array', |
|
| 425 | + $form_args['subsections'], |
|
| 426 | + $registration, |
|
| 427 | + $question_group, |
|
| 428 | + $this |
|
| 429 | + ); |
|
| 430 | + // filter for additional content after questions |
|
| 431 | + $form_args['subsections']['reg_form_questions_after'] = new EE_Form_Section_HTML( |
|
| 432 | + apply_filters( |
|
| 433 | + 'FHEE__EEH_Form_Fields__generate_question_groups_html__after_question_group_questions', |
|
| 434 | + '', |
|
| 435 | + $registration, |
|
| 436 | + $question_group, |
|
| 437 | + $this |
|
| 438 | + ) |
|
| 439 | + ); |
|
| 440 | + // d($form_args); |
|
| 441 | + $question_group_reg_form = new EE_Form_Section_Proper($form_args); |
|
| 442 | + return apply_filters( |
|
| 443 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__question_group_reg_form', |
|
| 444 | + $question_group_reg_form, |
|
| 445 | + $registration, |
|
| 446 | + $question_group, |
|
| 447 | + $this |
|
| 448 | + ); |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + |
|
| 452 | + /** |
|
| 453 | + * @param EE_Question_Group $question_group |
|
| 454 | + * @return EE_Form_Section_HTML |
|
| 455 | + */ |
|
| 456 | + private function _question_group_header(EE_Question_Group $question_group) |
|
| 457 | + { |
|
| 458 | + $html = ''; |
|
| 459 | + // group_name |
|
| 460 | + if ($question_group->show_group_name() && $question_group->name() !== '') { |
|
| 461 | + if ($this->checkout->admin_request) { |
|
| 462 | + $html .= EEH_HTML::br(); |
|
| 463 | + $html .= EEH_HTML::h3( |
|
| 464 | + $question_group->name(), |
|
| 465 | + '', |
|
| 466 | + 'ee-reg-form-qstn-grp-title title', |
|
| 467 | + 'font-size: 1.3em; padding-left:0;' |
|
| 468 | + ); |
|
| 469 | + } else { |
|
| 470 | + $html .= EEH_HTML::h4( |
|
| 471 | + $question_group->name(), |
|
| 472 | + '', |
|
| 473 | + 'ee-reg-form-qstn-grp-title section-title' |
|
| 474 | + ); |
|
| 475 | + } |
|
| 476 | + } |
|
| 477 | + // group_desc |
|
| 478 | + if ($question_group->show_group_desc() && $question_group->desc() !== '') { |
|
| 479 | + $html .= EEH_HTML::p( |
|
| 480 | + $question_group->desc(), |
|
| 481 | + '', |
|
| 482 | + $this->checkout->admin_request |
|
| 483 | + ? 'ee-reg-form-qstn-grp-desc-pg' |
|
| 484 | + : 'ee-reg-form-qstn-grp-desc-pg small-text lt-grey-text' |
|
| 485 | + ); |
|
| 486 | + } |
|
| 487 | + return new EE_Form_Section_HTML($html); |
|
| 488 | + } |
|
| 489 | + |
|
| 490 | + |
|
| 491 | + /** |
|
| 492 | + * @return EE_Form_Section_Proper |
|
| 493 | + * @throws EE_Error |
|
| 494 | + * @throws InvalidArgumentException |
|
| 495 | + * @throws ReflectionException |
|
| 496 | + * @throws InvalidDataTypeException |
|
| 497 | + * @throws InvalidInterfaceException |
|
| 498 | + */ |
|
| 499 | + private function _copy_attendee_info_form() |
|
| 500 | + { |
|
| 501 | + // array of params to pass to parent constructor |
|
| 502 | + return new EE_Form_Section_Proper( |
|
| 503 | + array( |
|
| 504 | + 'subsections' => $this->_copy_attendee_info_inputs(), |
|
| 505 | + 'layout_strategy' => new EE_Template_Layout( |
|
| 506 | + array( |
|
| 507 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 508 | + . $this->_slug |
|
| 509 | + . DS |
|
| 510 | + . 'copy_attendee_info.template.php', |
|
| 511 | + 'begin_template_file' => null, |
|
| 512 | + 'input_template_file' => null, |
|
| 513 | + 'subsection_template_file' => null, |
|
| 514 | + 'end_template_file' => null, |
|
| 515 | + ) |
|
| 516 | + ), |
|
| 517 | + ) |
|
| 518 | + ); |
|
| 519 | + } |
|
| 520 | + |
|
| 521 | + |
|
| 522 | + /** |
|
| 523 | + * @return EE_Form_Section_HTML |
|
| 524 | + * @throws DomainException |
|
| 525 | + * @throws InvalidArgumentException |
|
| 526 | + * @throws InvalidDataTypeException |
|
| 527 | + * @throws InvalidInterfaceException |
|
| 528 | + */ |
|
| 529 | + private function _auto_copy_attendee_info() |
|
| 530 | + { |
|
| 531 | + return new EE_Form_Section_HTML( |
|
| 532 | + EEH_Template::locate_template( |
|
| 533 | + SPCO_REG_STEPS_PATH . $this->_slug . DS . '_auto_copy_attendee_info.template.php', |
|
| 534 | + apply_filters( |
|
| 535 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information__auto_copy_attendee_info__template_args', |
|
| 536 | + array() |
|
| 537 | + ), |
|
| 538 | + true, |
|
| 539 | + true |
|
| 540 | + ) |
|
| 541 | + ); |
|
| 542 | + } |
|
| 543 | + |
|
| 544 | + |
|
| 545 | + /** |
|
| 546 | + * @return array |
|
| 547 | + * @throws EE_Error |
|
| 548 | + * @throws InvalidArgumentException |
|
| 549 | + * @throws ReflectionException |
|
| 550 | + * @throws InvalidDataTypeException |
|
| 551 | + * @throws InvalidInterfaceException |
|
| 552 | + */ |
|
| 553 | + private function _copy_attendee_info_inputs() |
|
| 554 | + { |
|
| 555 | + $copy_attendee_info_inputs = array(); |
|
| 556 | + $prev_ticket = null; |
|
| 557 | + // grab the saved registrations from the transaction |
|
| 558 | + $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 559 | + foreach ($registrations as $registration) { |
|
| 560 | + // for all attendees other than the primary attendee |
|
| 561 | + if ($registration instanceof EE_Registration && ! $registration->is_primary_registrant()) { |
|
| 562 | + // if this is a new ticket OR if this is the very first additional attendee after the primary attendee |
|
| 563 | + if ($registration->ticket()->ID() !== $prev_ticket) { |
|
| 564 | + $item_name = $registration->ticket()->name(); |
|
| 565 | + $item_name .= $registration->ticket()->description() !== '' |
|
| 566 | + ? ' - ' . $registration->ticket()->description() |
|
| 567 | + : ''; |
|
| 568 | + $copy_attendee_info_inputs[ 'spco_copy_attendee_chk[ticket-' . $registration->ticket()->ID( |
|
| 569 | + ) . ']' ] = |
|
| 570 | + new EE_Form_Section_HTML( |
|
| 571 | + '<h6 class="spco-copy-attendee-event-hdr">' . $item_name . '</h6>' |
|
| 572 | + ); |
|
| 573 | + $prev_ticket = $registration->ticket()->ID(); |
|
| 574 | + } |
|
| 575 | + |
|
| 576 | + $copy_attendee_info_inputs[ 'spco_copy_attendee_chk[' . $registration->ID() . ']' ] = |
|
| 577 | + new EE_Checkbox_Multi_Input( |
|
| 578 | + array( |
|
| 579 | + $registration->ID() => sprintf( |
|
| 580 | + esc_html_x('Attendee #%s', 'Attendee #123', 'event_espresso'), |
|
| 581 | + $registration->count() |
|
| 582 | + ), |
|
| 583 | + ), |
|
| 584 | + array( |
|
| 585 | + 'html_id' => 'spco-copy-attendee-chk-' . $registration->reg_url_link(), |
|
| 586 | + 'html_class' => 'spco-copy-attendee-chk ee-do-not-validate', |
|
| 587 | + 'display_html_label_text' => false, |
|
| 588 | + ) |
|
| 589 | + ); |
|
| 590 | + } |
|
| 591 | + } |
|
| 592 | + return $copy_attendee_info_inputs; |
|
| 593 | + } |
|
| 594 | + |
|
| 595 | + |
|
| 596 | + /** |
|
| 597 | + * @param EE_Registration $registration |
|
| 598 | + * @return EE_Form_Input_Base |
|
| 599 | + * @throws EE_Error |
|
| 600 | + */ |
|
| 601 | + private function _additional_primary_registrant_inputs(EE_Registration $registration) |
|
| 602 | + { |
|
| 603 | + // generate hidden input |
|
| 604 | + return new EE_Hidden_Input( |
|
| 605 | + array( |
|
| 606 | + 'html_id' => 'primary_registrant', |
|
| 607 | + 'default' => $registration->reg_url_link(), |
|
| 608 | + ) |
|
| 609 | + ); |
|
| 610 | + } |
|
| 611 | + |
|
| 612 | + |
|
| 613 | + /** |
|
| 614 | + * @param EE_Registration $registration |
|
| 615 | + * @param EE_Question $question |
|
| 616 | + * @return EE_Form_Input_Base |
|
| 617 | + * @throws EE_Error |
|
| 618 | + * @throws InvalidArgumentException |
|
| 619 | + * @throws InvalidDataTypeException |
|
| 620 | + * @throws InvalidInterfaceException |
|
| 621 | + * @throws ReflectionException |
|
| 622 | + */ |
|
| 623 | + public function reg_form_question(EE_Registration $registration, EE_Question $question) |
|
| 624 | + { |
|
| 625 | + |
|
| 626 | + // if this question was for an attendee detail, then check for that answer |
|
| 627 | + $answer_value = EEM_Answer::instance()->get_attendee_property_answer_value( |
|
| 628 | + $registration, |
|
| 629 | + $question->system_ID() |
|
| 630 | + ); |
|
| 631 | + $answer = $answer_value === null |
|
| 632 | + ? EEM_Answer::instance()->get_one( |
|
| 633 | + array(array('QST_ID' => $question->ID(), 'REG_ID' => $registration->ID())) |
|
| 634 | + ) |
|
| 635 | + : null; |
|
| 636 | + // if NOT returning to edit an existing registration |
|
| 637 | + // OR if this question is for an attendee property |
|
| 638 | + // OR we still don't have an EE_Answer object |
|
| 639 | + if ($answer_value || ! $answer instanceof EE_Answer || ! $registration->reg_url_link()) { |
|
| 640 | + // create an EE_Answer object for storing everything in |
|
| 641 | + $answer = EE_Answer::new_instance( |
|
| 642 | + array( |
|
| 643 | + 'QST_ID' => $question->ID(), |
|
| 644 | + 'REG_ID' => $registration->ID(), |
|
| 645 | + ) |
|
| 646 | + ); |
|
| 647 | + } |
|
| 648 | + // verify instance |
|
| 649 | + if ($answer instanceof EE_Answer) { |
|
| 650 | + if (! empty($answer_value)) { |
|
| 651 | + $answer->set('ANS_value', $answer_value); |
|
| 652 | + } |
|
| 653 | + $answer->cache('Question', $question); |
|
| 654 | + // remember system ID had a bug where sometimes it could be null |
|
| 655 | + $answer_cache_id = $question->is_system_question() |
|
| 656 | + ? $question->system_ID() . '-' . $registration->reg_url_link() |
|
| 657 | + : $question->ID() . '-' . $registration->reg_url_link(); |
|
| 658 | + $registration->cache('Answer', $answer, $answer_cache_id); |
|
| 659 | + } |
|
| 660 | + return $this->_generate_question_input($registration, $question, $answer); |
|
| 661 | + } |
|
| 662 | + |
|
| 663 | + |
|
| 664 | + /** |
|
| 665 | + * @param EE_Registration $registration |
|
| 666 | + * @param EE_Question $question |
|
| 667 | + * @param $answer |
|
| 668 | + * @return EE_Form_Input_Base |
|
| 669 | + * @throws EE_Error |
|
| 670 | + * @throws InvalidArgumentException |
|
| 671 | + * @throws ReflectionException |
|
| 672 | + * @throws InvalidDataTypeException |
|
| 673 | + * @throws InvalidInterfaceException |
|
| 674 | + */ |
|
| 675 | + private function _generate_question_input(EE_Registration $registration, EE_Question $question, $answer) |
|
| 676 | + { |
|
| 677 | + $identifier = $question->is_system_question() |
|
| 678 | + ? $question->system_ID() |
|
| 679 | + : $question->ID(); |
|
| 680 | + $this->_required_questions[ $identifier ] = $question->required() ? true : false; |
|
| 681 | + add_filter( |
|
| 682 | + 'FHEE__EE_Question__generate_form_input__country_options', |
|
| 683 | + array($this, 'use_cached_countries_for_form_input'), |
|
| 684 | + 10, |
|
| 685 | + 4 |
|
| 686 | + ); |
|
| 687 | + add_filter( |
|
| 688 | + 'FHEE__EE_Question__generate_form_input__state_options', |
|
| 689 | + array($this, 'use_cached_states_for_form_input'), |
|
| 690 | + 10, |
|
| 691 | + 4 |
|
| 692 | + ); |
|
| 693 | + $input_constructor_args = array( |
|
| 694 | + 'html_name' => 'ee_reg_qstn[' . $registration->ID() . '][' . $identifier . ']', |
|
| 695 | + 'html_id' => 'ee_reg_qstn-' . $registration->ID() . '-' . $identifier, |
|
| 696 | + 'html_class' => 'ee-reg-qstn ee-reg-qstn-' . $identifier, |
|
| 697 | + 'html_label_id' => 'ee_reg_qstn-' . $registration->ID() . '-' . $identifier, |
|
| 698 | + 'html_label_class' => 'ee-reg-qstn', |
|
| 699 | + ); |
|
| 700 | + $input_constructor_args['html_label_id'] .= '-lbl'; |
|
| 701 | + if ($answer instanceof EE_Answer && $answer->ID()) { |
|
| 702 | + $input_constructor_args['html_name'] .= '[' . $answer->ID() . ']'; |
|
| 703 | + $input_constructor_args['html_id'] .= '-' . $answer->ID(); |
|
| 704 | + $input_constructor_args['html_label_id'] .= '-' . $answer->ID(); |
|
| 705 | + } |
|
| 706 | + $form_input = $question->generate_form_input( |
|
| 707 | + $registration, |
|
| 708 | + $answer, |
|
| 709 | + $input_constructor_args |
|
| 710 | + ); |
|
| 711 | + remove_filter( |
|
| 712 | + 'FHEE__EE_Question__generate_form_input__country_options', |
|
| 713 | + array($this, 'use_cached_countries_for_form_input') |
|
| 714 | + ); |
|
| 715 | + remove_filter( |
|
| 716 | + 'FHEE__EE_Question__generate_form_input__state_options', |
|
| 717 | + array($this, 'use_cached_states_for_form_input') |
|
| 718 | + ); |
|
| 719 | + return $form_input; |
|
| 720 | + } |
|
| 721 | + |
|
| 722 | + |
|
| 723 | + /** |
|
| 724 | + * Gets the list of countries for the form input |
|
| 725 | + * |
|
| 726 | + * @param array|null $countries_list |
|
| 727 | + * @param EE_Question $question |
|
| 728 | + * @param EE_Registration $registration |
|
| 729 | + * @param EE_Answer $answer |
|
| 730 | + * @return array 2d keys are country IDs, values are their names |
|
| 731 | + * @throws EE_Error |
|
| 732 | + * @throws InvalidArgumentException |
|
| 733 | + * @throws InvalidDataTypeException |
|
| 734 | + * @throws InvalidInterfaceException |
|
| 735 | + * @throws ReflectionException |
|
| 736 | + */ |
|
| 737 | + public function use_cached_countries_for_form_input( |
|
| 738 | + $countries_list, |
|
| 739 | + EE_Question $question = null, |
|
| 740 | + EE_Registration $registration = null, |
|
| 741 | + EE_Answer $answer = null |
|
| 742 | + ) { |
|
| 743 | + $country_options = array('' => ''); |
|
| 744 | + // get possibly cached list of countries |
|
| 745 | + $countries = $this->checkout->action === 'process_reg_step' |
|
| 746 | + ? EEM_Country::instance()->get_all_countries() |
|
| 747 | + : EEM_Country::instance()->get_all_active_countries(); |
|
| 748 | + if (! empty($countries)) { |
|
| 749 | + foreach ($countries as $country) { |
|
| 750 | + if ($country instanceof EE_Country) { |
|
| 751 | + $country_options[ $country->ID() ] = $country->name(); |
|
| 752 | + } |
|
| 753 | + } |
|
| 754 | + } |
|
| 755 | + if ($question instanceof EE_Question && $registration instanceof EE_Registration) { |
|
| 756 | + $answer = EEM_Answer::instance()->get_one( |
|
| 757 | + array(array('QST_ID' => $question->ID(), 'REG_ID' => $registration->ID())) |
|
| 758 | + ); |
|
| 759 | + } else { |
|
| 760 | + $answer = EE_Answer::new_instance(); |
|
| 761 | + } |
|
| 762 | + $country_options = apply_filters( |
|
| 763 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__country_options', |
|
| 764 | + $country_options, |
|
| 765 | + $this, |
|
| 766 | + $registration, |
|
| 767 | + $question, |
|
| 768 | + $answer |
|
| 769 | + ); |
|
| 770 | + return $country_options; |
|
| 771 | + } |
|
| 772 | + |
|
| 773 | + |
|
| 774 | + /** |
|
| 775 | + * Gets the list of states for the form input |
|
| 776 | + * |
|
| 777 | + * @param array|null $states_list |
|
| 778 | + * @param EE_Question $question |
|
| 779 | + * @param EE_Registration $registration |
|
| 780 | + * @param EE_Answer $answer |
|
| 781 | + * @return array 2d keys are state IDs, values are their names |
|
| 782 | + * @throws EE_Error |
|
| 783 | + * @throws InvalidArgumentException |
|
| 784 | + * @throws InvalidDataTypeException |
|
| 785 | + * @throws InvalidInterfaceException |
|
| 786 | + * @throws ReflectionException |
|
| 787 | + */ |
|
| 788 | + public function use_cached_states_for_form_input( |
|
| 789 | + $states_list, |
|
| 790 | + EE_Question $question = null, |
|
| 791 | + EE_Registration $registration = null, |
|
| 792 | + EE_Answer $answer = null |
|
| 793 | + ) { |
|
| 794 | + $state_options = array('' => array('' => '')); |
|
| 795 | + $states = $this->checkout->action === 'process_reg_step' |
|
| 796 | + ? EEM_State::instance()->get_all_states() |
|
| 797 | + : EEM_State::instance()->get_all_active_states(); |
|
| 798 | + if (! empty($states)) { |
|
| 799 | + foreach ($states as $state) { |
|
| 800 | + if ($state instanceof EE_State) { |
|
| 801 | + $state_options[ $state->country()->name() ][ $state->ID() ] = $state->name(); |
|
| 802 | + } |
|
| 803 | + } |
|
| 804 | + } |
|
| 805 | + $state_options = apply_filters( |
|
| 806 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__state_options', |
|
| 807 | + $state_options, |
|
| 808 | + $this, |
|
| 809 | + $registration, |
|
| 810 | + $question, |
|
| 811 | + $answer |
|
| 812 | + ); |
|
| 813 | + return $state_options; |
|
| 814 | + } |
|
| 815 | + |
|
| 816 | + |
|
| 817 | + /********************************************************************************************************/ |
|
| 818 | + /**************************************** PROCESS REG STEP ****************************************/ |
|
| 819 | + /********************************************************************************************************/ |
|
| 820 | + |
|
| 821 | + |
|
| 822 | + /** |
|
| 823 | + * @return bool |
|
| 824 | + * @throws EE_Error |
|
| 825 | + * @throws InvalidArgumentException |
|
| 826 | + * @throws ReflectionException |
|
| 827 | + * @throws RuntimeException |
|
| 828 | + * @throws InvalidDataTypeException |
|
| 829 | + * @throws InvalidInterfaceException |
|
| 830 | + */ |
|
| 831 | + public function process_reg_step() |
|
| 832 | + { |
|
| 833 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
| 834 | + // grab validated data from form |
|
| 835 | + $valid_data = $this->checkout->current_step->valid_data(); |
|
| 836 | + // EEH_Debug_Tools::printr( $_REQUEST, '$_REQUEST', __FILE__, __LINE__ ); |
|
| 837 | + // EEH_Debug_Tools::printr( $valid_data, '$valid_data', __FILE__, __LINE__ ); |
|
| 838 | + // if we don't have any $valid_data then something went TERRIBLY WRONG !!! |
|
| 839 | + if (empty($valid_data)) { |
|
| 840 | + EE_Error::add_error( |
|
| 841 | + esc_html__('No valid question responses were received.', 'event_espresso'), |
|
| 842 | + __FILE__, |
|
| 843 | + __FUNCTION__, |
|
| 844 | + __LINE__ |
|
| 845 | + ); |
|
| 846 | + return false; |
|
| 847 | + } |
|
| 848 | + if (! $this->checkout->transaction instanceof EE_Transaction || ! $this->checkout->continue_reg) { |
|
| 849 | + EE_Error::add_error( |
|
| 850 | + esc_html__( |
|
| 851 | + 'A valid transaction could not be initiated for processing your registrations.', |
|
| 852 | + 'event_espresso' |
|
| 853 | + ), |
|
| 854 | + __FILE__, |
|
| 855 | + __FUNCTION__, |
|
| 856 | + __LINE__ |
|
| 857 | + ); |
|
| 858 | + return false; |
|
| 859 | + } |
|
| 860 | + // get cached registrations |
|
| 861 | + $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 862 | + // verify we got the goods |
|
| 863 | + if (empty($registrations)) { |
|
| 864 | + // combine the old translated string with a new one, in order to not break translations |
|
| 865 | + $error_message = esc_html__( |
|
| 866 | + 'Your form data could not be applied to any valid registrations.', |
|
| 867 | + 'event_espresso' |
|
| 868 | + ) |
|
| 869 | + . sprintf( |
|
| 870 | + esc_html_x( |
|
| 871 | + '%3$sThis can sometimes happen if too much time has been taken to complete the registration process.%3$sPlease return to the %1$sEvent List%2$s and reselect your tickets. If the problem continues, please contact the site administrator.', |
|
| 872 | + '(line break)This can sometimes happen if too much time has been taken to complete the registration process.(line break)Please return to the (link)Event List(end link) and reselect your tickets. If the problem continues, please contact the site administrator.', |
|
| 873 | + 'event_espresso' |
|
| 874 | + ), |
|
| 875 | + '<a href="' . get_post_type_archive_link('espresso_events') . '" >', |
|
| 876 | + '</a>', |
|
| 877 | + '<br />' |
|
| 878 | + ); |
|
| 879 | + EE_Error::add_error( |
|
| 880 | + $error_message, |
|
| 881 | + __FILE__, |
|
| 882 | + __FUNCTION__, |
|
| 883 | + __LINE__ |
|
| 884 | + ); |
|
| 885 | + return false; |
|
| 886 | + } |
|
| 887 | + // extract attendee info from form data and save to model objects |
|
| 888 | + $registrations_processed = $this->_process_registrations($registrations, $valid_data); |
|
| 889 | + // if first pass thru SPCO, |
|
| 890 | + // then let's check processed registrations against the total number of tickets in the cart |
|
| 891 | + if ($registrations_processed === false) { |
|
| 892 | + // but return immediately if the previous step exited early due to errors |
|
| 893 | + return false; |
|
| 894 | + } |
|
| 895 | + if (! $this->checkout->revisit && $registrations_processed !== $this->checkout->total_ticket_count) { |
|
| 896 | + // generate a correctly translated string for all possible singular/plural combinations |
|
| 897 | + if ($this->checkout->total_ticket_count === 1 && $registrations_processed !== 1) { |
|
| 898 | + $error_msg = sprintf( |
|
| 899 | + esc_html_x( |
|
| 900 | + 'There was %1$d ticket in the Event Queue, but %2$ds registrations were processed', |
|
| 901 | + 'There was 1 ticket in the Event Queue, but 2 registrations were processed', |
|
| 902 | + 'event_espresso' |
|
| 903 | + ), |
|
| 904 | + $this->checkout->total_ticket_count, |
|
| 905 | + $registrations_processed |
|
| 906 | + ); |
|
| 907 | + } elseif ($this->checkout->total_ticket_count !== 1 && $registrations_processed === 1) { |
|
| 908 | + $error_msg = sprintf( |
|
| 909 | + esc_html_x( |
|
| 910 | + 'There was a total of %1$d tickets in the Event Queue, but only %2$ds registration was processed', |
|
| 911 | + 'There was a total of 2 tickets in the Event Queue, but only 1 registration was processed', |
|
| 912 | + 'event_espresso' |
|
| 913 | + ), |
|
| 914 | + $this->checkout->total_ticket_count, |
|
| 915 | + $registrations_processed |
|
| 916 | + ); |
|
| 917 | + } else { |
|
| 918 | + $error_msg = sprintf( |
|
| 919 | + esc_html__( |
|
| 920 | + 'There was a total of 2 tickets in the Event Queue, but 2 registrations were processed', |
|
| 921 | + 'event_espresso' |
|
| 922 | + ), |
|
| 923 | + $this->checkout->total_ticket_count, |
|
| 924 | + $registrations_processed |
|
| 925 | + ); |
|
| 926 | + } |
|
| 927 | + EE_Error::add_error($error_msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 928 | + return false; |
|
| 929 | + } |
|
| 930 | + // mark this reg step as completed |
|
| 931 | + $this->set_completed(); |
|
| 932 | + $this->_set_success_message( |
|
| 933 | + esc_html__('The Attendee Information Step has been successfully completed.', 'event_espresso') |
|
| 934 | + ); |
|
| 935 | + // do action in case a plugin wants to do something with the data submitted in step 1. |
|
| 936 | + // passes EE_Single_Page_Checkout, and it's posted data |
|
| 937 | + do_action('AHEE__EE_Single_Page_Checkout__process_attendee_information__end', $this, $valid_data); |
|
| 938 | + return true; |
|
| 939 | + } |
|
| 940 | + |
|
| 941 | + |
|
| 942 | + /** |
|
| 943 | + * _process_registrations |
|
| 944 | + * |
|
| 945 | + * @param EE_Registration[] $registrations |
|
| 946 | + * @param array[][] $valid_data |
|
| 947 | + * @return bool|int |
|
| 948 | + * @throws EntityNotFoundException |
|
| 949 | + * @throws EE_Error |
|
| 950 | + * @throws InvalidArgumentException |
|
| 951 | + * @throws ReflectionException |
|
| 952 | + * @throws RuntimeException |
|
| 953 | + * @throws InvalidDataTypeException |
|
| 954 | + * @throws InvalidInterfaceException |
|
| 955 | + */ |
|
| 956 | + private function _process_registrations($registrations = array(), $valid_data = array()) |
|
| 957 | + { |
|
| 958 | + // load resources and set some defaults |
|
| 959 | + EE_Registry::instance()->load_model('Attendee'); |
|
| 960 | + // holder for primary registrant attendee object |
|
| 961 | + $this->checkout->primary_attendee_obj = null; |
|
| 962 | + // array for tracking reg form data for the primary registrant |
|
| 963 | + $primary_registrant = array( |
|
| 964 | + 'line_item_id' => null, |
|
| 965 | + ); |
|
| 966 | + $copy_primary = false; |
|
| 967 | + // reg form sections that do not contain inputs |
|
| 968 | + $non_input_form_sections = array( |
|
| 969 | + 'primary_registrant', |
|
| 970 | + 'additional_attendee_reg_info', |
|
| 971 | + 'spco_copy_attendee_chk', |
|
| 972 | + ); |
|
| 973 | + // attendee counter |
|
| 974 | + $att_nmbr = 0; |
|
| 975 | + // grab the saved registrations from the transaction |
|
| 976 | + foreach ($registrations as $registration) { |
|
| 977 | + // verify EE_Registration object |
|
| 978 | + if (! $registration instanceof EE_Registration) { |
|
| 979 | + EE_Error::add_error( |
|
| 980 | + esc_html__( |
|
| 981 | + 'An invalid Registration object was discovered when attempting to process your registration information.', |
|
| 982 | + 'event_espresso' |
|
| 983 | + ), |
|
| 984 | + __FILE__, |
|
| 985 | + __FUNCTION__, |
|
| 986 | + __LINE__ |
|
| 987 | + ); |
|
| 988 | + return false; |
|
| 989 | + } |
|
| 990 | + /** @var string $reg_url_link */ |
|
| 991 | + $reg_url_link = $registration->reg_url_link(); |
|
| 992 | + // reg_url_link exists ? |
|
| 993 | + if (! empty($reg_url_link)) { |
|
| 994 | + // should this registration be processed during this visit ? |
|
| 995 | + if ($this->checkout->visit_allows_processing_of_this_registration($registration)) { |
|
| 996 | + // if NOT revisiting, then let's save the registration now, |
|
| 997 | + // so that we have a REG_ID to use when generating other objects |
|
| 998 | + if (! $this->checkout->revisit) { |
|
| 999 | + $registration->save(); |
|
| 1000 | + } |
|
| 1001 | + /** |
|
| 1002 | + * This allows plugins to trigger a fail on processing of a |
|
| 1003 | + * registration for any conditions they may have for it to pass. |
|
| 1004 | + * |
|
| 1005 | + * @var bool if true is returned by the plugin then the |
|
| 1006 | + * registration processing is halted. |
|
| 1007 | + */ |
|
| 1008 | + if (apply_filters( |
|
| 1009 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___process_registrations__pre_registration_process', |
|
| 1010 | + false, |
|
| 1011 | + $att_nmbr, |
|
| 1012 | + $registration, |
|
| 1013 | + $registrations, |
|
| 1014 | + $valid_data, |
|
| 1015 | + $this |
|
| 1016 | + )) { |
|
| 1017 | + return false; |
|
| 1018 | + } |
|
| 1019 | + |
|
| 1020 | + // Houston, we have a registration! |
|
| 1021 | + $att_nmbr++; |
|
| 1022 | + $this->_attendee_data[ $reg_url_link ] = array(); |
|
| 1023 | + // grab any existing related answer objects |
|
| 1024 | + $this->_registration_answers = $registration->answers(); |
|
| 1025 | + // unset( $valid_data[ $reg_url_link ]['additional_attendee_reg_info'] ); |
|
| 1026 | + if (isset($valid_data[ $reg_url_link ])) { |
|
| 1027 | + // do we need to copy basic info from primary attendee ? |
|
| 1028 | + $copy_primary = isset($valid_data[ $reg_url_link ]['additional_attendee_reg_info']) |
|
| 1029 | + && absint($valid_data[ $reg_url_link ]['additional_attendee_reg_info']) === 0; |
|
| 1030 | + // filter form input data for this registration |
|
| 1031 | + $valid_data[ $reg_url_link ] = (array) apply_filters( |
|
| 1032 | + 'FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item', |
|
| 1033 | + $valid_data[ $reg_url_link ] |
|
| 1034 | + ); |
|
| 1035 | + if (isset($valid_data['primary_attendee'])) { |
|
| 1036 | + $primary_registrant['line_item_id'] = ! empty($valid_data['primary_attendee']) |
|
| 1037 | + ? $valid_data['primary_attendee'] |
|
| 1038 | + : false; |
|
| 1039 | + unset($valid_data['primary_attendee']); |
|
| 1040 | + } |
|
| 1041 | + // now loop through our array of valid post data && process attendee reg forms |
|
| 1042 | + foreach ($valid_data[ $reg_url_link ] as $form_section => $form_inputs) { |
|
| 1043 | + if (! in_array($form_section, $non_input_form_sections, true)) { |
|
| 1044 | + foreach ($form_inputs as $form_input => $input_value) { |
|
| 1045 | + // \EEH_Debug_Tools::printr( $input_value, $form_input, __FILE__, __LINE__ ); |
|
| 1046 | + // check for critical inputs |
|
| 1047 | + if (! $this->_verify_critical_attendee_details_are_set_and_validate_email( |
|
| 1048 | + $form_input, |
|
| 1049 | + $input_value |
|
| 1050 | + ) |
|
| 1051 | + ) { |
|
| 1052 | + return false; |
|
| 1053 | + } |
|
| 1054 | + // store a bit of data about the primary attendee |
|
| 1055 | + if ($att_nmbr === 1 |
|
| 1056 | + && ! empty($input_value) |
|
| 1057 | + && $reg_url_link === $primary_registrant['line_item_id'] |
|
| 1058 | + ) { |
|
| 1059 | + $primary_registrant[ $form_input ] = $input_value; |
|
| 1060 | + } elseif ($copy_primary |
|
| 1061 | + && $input_value === null |
|
| 1062 | + && isset($primary_registrant[ $form_input ]) |
|
| 1063 | + ) { |
|
| 1064 | + $input_value = $primary_registrant[ $form_input ]; |
|
| 1065 | + } |
|
| 1066 | + // now attempt to save the input data |
|
| 1067 | + if (! $this->_save_registration_form_input( |
|
| 1068 | + $registration, |
|
| 1069 | + $form_input, |
|
| 1070 | + $input_value |
|
| 1071 | + ) |
|
| 1072 | + ) { |
|
| 1073 | + EE_Error::add_error( |
|
| 1074 | + sprintf( |
|
| 1075 | + esc_html_x( |
|
| 1076 | + 'Unable to save registration form data for the form input: "%1$s" with the submitted value: "%2$s"', |
|
| 1077 | + 'Unable to save registration form data for the form input: "form input name" with the submitted value: "form input value"', |
|
| 1078 | + 'event_espresso' |
|
| 1079 | + ), |
|
| 1080 | + $form_input, |
|
| 1081 | + $input_value |
|
| 1082 | + ), |
|
| 1083 | + __FILE__, |
|
| 1084 | + __FUNCTION__, |
|
| 1085 | + __LINE__ |
|
| 1086 | + ); |
|
| 1087 | + return false; |
|
| 1088 | + } |
|
| 1089 | + } |
|
| 1090 | + } |
|
| 1091 | + } // end of foreach ( $valid_data[ $reg_url_link ] as $form_section => $form_inputs ) |
|
| 1092 | + } |
|
| 1093 | + // EEH_Debug_Tools::printr( $this->_attendee_data, '$this->_attendee_data', __FILE__, __LINE__ ); |
|
| 1094 | + // this registration does not require additional attendee information ? |
|
| 1095 | + if ($copy_primary |
|
| 1096 | + && $att_nmbr > 1 |
|
| 1097 | + && $this->checkout->primary_attendee_obj instanceof EE_Attendee |
|
| 1098 | + ) { |
|
| 1099 | + // just copy the primary registrant |
|
| 1100 | + $attendee = $this->checkout->primary_attendee_obj; |
|
| 1101 | + } else { |
|
| 1102 | + // ensure critical details are set for additional attendees |
|
| 1103 | + $this->_attendee_data[ $reg_url_link ] = $att_nmbr > 1 |
|
| 1104 | + ? $this->_copy_critical_attendee_details_from_primary_registrant( |
|
| 1105 | + $this->_attendee_data[ $reg_url_link ] |
|
| 1106 | + ) |
|
| 1107 | + : $this->_attendee_data[ $reg_url_link ]; |
|
| 1108 | + // execute create attendee command (which may return an existing attendee) |
|
| 1109 | + $attendee = EE_Registry::instance()->BUS->execute( |
|
| 1110 | + new CreateAttendeeCommand( |
|
| 1111 | + $this->_attendee_data[ $reg_url_link ], |
|
| 1112 | + $registration |
|
| 1113 | + ) |
|
| 1114 | + ); |
|
| 1115 | + // who's #1 ? |
|
| 1116 | + if ($att_nmbr === 1) { |
|
| 1117 | + $this->checkout->primary_attendee_obj = $attendee; |
|
| 1118 | + } |
|
| 1119 | + } |
|
| 1120 | + // EEH_Debug_Tools::printr( $attendee, '$attendee', __FILE__, __LINE__ ); |
|
| 1121 | + // add relation to registration, set attendee ID, and cache attendee |
|
| 1122 | + $this->_associate_attendee_with_registration($registration, $attendee); |
|
| 1123 | + // \EEH_Debug_Tools::printr( $registration, '$registration', __FILE__, __LINE__ ); |
|
| 1124 | + if (! $registration->attendee() instanceof EE_Attendee) { |
|
| 1125 | + EE_Error::add_error( |
|
| 1126 | + sprintf( |
|
| 1127 | + esc_html_x( |
|
| 1128 | + 'Registration %s has an invalid or missing Attendee object.', |
|
| 1129 | + 'Registration 123-456-789 has an invalid or missing Attendee object.', |
|
| 1130 | + 'event_espresso' |
|
| 1131 | + ), |
|
| 1132 | + $reg_url_link |
|
| 1133 | + ), |
|
| 1134 | + __FILE__, |
|
| 1135 | + __FUNCTION__, |
|
| 1136 | + __LINE__ |
|
| 1137 | + ); |
|
| 1138 | + return false; |
|
| 1139 | + } |
|
| 1140 | + /** @type EE_Registration_Processor $registration_processor */ |
|
| 1141 | + $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
| 1142 | + // at this point, we should have enough details about the registrant to consider the registration |
|
| 1143 | + // NOT incomplete |
|
| 1144 | + $registration_processor->toggle_incomplete_registration_status_to_default( |
|
| 1145 | + $registration, |
|
| 1146 | + false, |
|
| 1147 | + new Context( |
|
| 1148 | + 'spco_reg_step_attendee_information_process_registrations', |
|
| 1149 | + esc_html__( |
|
| 1150 | + 'Finished populating registration with details from the registration form after submitting the Attendee Information Reg Step.', |
|
| 1151 | + 'event_espresso' |
|
| 1152 | + ) |
|
| 1153 | + ) |
|
| 1154 | + ); |
|
| 1155 | + // we can also consider the TXN to not have been failed, so temporarily upgrade it's status to |
|
| 1156 | + // abandoned |
|
| 1157 | + $this->checkout->transaction->toggle_failed_transaction_status(); |
|
| 1158 | + // if we've gotten this far, then let's save what we have |
|
| 1159 | + $registration->save(); |
|
| 1160 | + // add relation between TXN and registration |
|
| 1161 | + $this->_associate_registration_with_transaction($registration); |
|
| 1162 | + } |
|
| 1163 | + } else { |
|
| 1164 | + EE_Error::add_error( |
|
| 1165 | + esc_html__( |
|
| 1166 | + 'An invalid or missing line item ID was encountered while attempting to process the registration form.', |
|
| 1167 | + 'event_espresso' |
|
| 1168 | + ), |
|
| 1169 | + __FILE__, |
|
| 1170 | + __FUNCTION__, |
|
| 1171 | + __LINE__ |
|
| 1172 | + ); |
|
| 1173 | + // remove malformed data |
|
| 1174 | + unset($valid_data[ $reg_url_link ]); |
|
| 1175 | + return false; |
|
| 1176 | + } |
|
| 1177 | + } // end of foreach ( $this->checkout->transaction->registrations() as $registration ) |
|
| 1178 | + return $att_nmbr; |
|
| 1179 | + } |
|
| 1180 | + |
|
| 1181 | + |
|
| 1182 | + /** |
|
| 1183 | + * _save_registration_form_input |
|
| 1184 | + * |
|
| 1185 | + * @param EE_Registration $registration |
|
| 1186 | + * @param string $form_input |
|
| 1187 | + * @param string $input_value |
|
| 1188 | + * @return bool |
|
| 1189 | + * @throws EE_Error |
|
| 1190 | + * @throws InvalidArgumentException |
|
| 1191 | + * @throws InvalidDataTypeException |
|
| 1192 | + * @throws InvalidInterfaceException |
|
| 1193 | + * @throws ReflectionException |
|
| 1194 | + */ |
|
| 1195 | + private function _save_registration_form_input( |
|
| 1196 | + EE_Registration $registration, |
|
| 1197 | + $form_input = '', |
|
| 1198 | + $input_value = '' |
|
| 1199 | + ) { |
|
| 1200 | + // \EEH_Debug_Tools::printr( __FUNCTION__, __CLASS__, __FILE__, __LINE__, 2 ); |
|
| 1201 | + // \EEH_Debug_Tools::printr( $form_input, '$form_input', __FILE__, __LINE__ ); |
|
| 1202 | + // \EEH_Debug_Tools::printr( $input_value, '$input_value', __FILE__, __LINE__ ); |
|
| 1203 | + // allow for plugins to hook in and do their own processing of the form input. |
|
| 1204 | + // For plugins to bypass normal processing here, they just need to return a boolean value. |
|
| 1205 | + if (apply_filters( |
|
| 1206 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___save_registration_form_input', |
|
| 1207 | + false, |
|
| 1208 | + $registration, |
|
| 1209 | + $form_input, |
|
| 1210 | + $input_value, |
|
| 1211 | + $this |
|
| 1212 | + )) { |
|
| 1213 | + return true; |
|
| 1214 | + } |
|
| 1215 | + /* |
|
| 1216 | 1216 | * $answer_cache_id is the key used to find the EE_Answer we want |
| 1217 | 1217 | * @see https://events.codebasehq.com/projects/event-espresso/tickets/10477 |
| 1218 | 1218 | */ |
| 1219 | - $answer_cache_id = $this->checkout->reg_url_link |
|
| 1220 | - ? $form_input . '-' . $registration->reg_url_link() |
|
| 1221 | - : $form_input; |
|
| 1222 | - $answer_is_obj = isset($this->_registration_answers[ $answer_cache_id ]) |
|
| 1223 | - && $this->_registration_answers[ $answer_cache_id ] instanceof EE_Answer; |
|
| 1224 | - // rename form_inputs if they are EE_Attendee properties |
|
| 1225 | - switch ((string) $form_input) { |
|
| 1226 | - case 'state': |
|
| 1227 | - case 'STA_ID': |
|
| 1228 | - $attendee_property = true; |
|
| 1229 | - $form_input = 'STA_ID'; |
|
| 1230 | - break; |
|
| 1231 | - |
|
| 1232 | - case 'country': |
|
| 1233 | - case 'CNT_ISO': |
|
| 1234 | - $attendee_property = true; |
|
| 1235 | - $form_input = 'CNT_ISO'; |
|
| 1236 | - break; |
|
| 1237 | - |
|
| 1238 | - default: |
|
| 1239 | - $ATT_input = 'ATT_' . $form_input; |
|
| 1240 | - // EEH_Debug_Tools::printr( $ATT_input, '$ATT_input', __FILE__, __LINE__ ); |
|
| 1241 | - $attendee_property = EEM_Attendee::instance()->has_field($ATT_input) ? true : false; |
|
| 1242 | - $form_input = $attendee_property ? 'ATT_' . $form_input : $form_input; |
|
| 1243 | - } |
|
| 1244 | - // EEH_Debug_Tools::printr( $answer_cache_id, '$answer_cache_id', __FILE__, __LINE__ ); |
|
| 1245 | - // EEH_Debug_Tools::printr( $attendee_property, '$attendee_property', __FILE__, __LINE__ ); |
|
| 1246 | - // EEH_Debug_Tools::printr( $answer_is_obj, '$answer_is_obj', __FILE__, __LINE__ ); |
|
| 1247 | - // if this form input has a corresponding attendee property |
|
| 1248 | - if ($attendee_property) { |
|
| 1249 | - $this->_attendee_data[ $registration->reg_url_link() ][ $form_input ] = $input_value; |
|
| 1250 | - if ($answer_is_obj) { |
|
| 1251 | - // and delete the corresponding answer since we won't be storing this data in that object |
|
| 1252 | - $registration->_remove_relation_to($this->_registration_answers[ $answer_cache_id ], 'Answer'); |
|
| 1253 | - $this->_registration_answers[ $answer_cache_id ]->delete_permanently(); |
|
| 1254 | - } |
|
| 1255 | - return true; |
|
| 1256 | - } |
|
| 1257 | - if ($answer_is_obj) { |
|
| 1258 | - // save this data to the answer object |
|
| 1259 | - $this->_registration_answers[ $answer_cache_id ]->set_value($input_value); |
|
| 1260 | - $result = $this->_registration_answers[ $answer_cache_id ]->save(); |
|
| 1261 | - return $result !== false; |
|
| 1262 | - } |
|
| 1263 | - foreach ($this->_registration_answers as $answer) { |
|
| 1264 | - if ($answer instanceof EE_Answer && $answer->question_ID() === $answer_cache_id) { |
|
| 1265 | - $answer->set_value($input_value); |
|
| 1266 | - $result = $answer->save(); |
|
| 1267 | - return $result !== false; |
|
| 1268 | - } |
|
| 1269 | - } |
|
| 1270 | - return false; |
|
| 1271 | - } |
|
| 1272 | - |
|
| 1273 | - |
|
| 1274 | - /** |
|
| 1275 | - * _verify_critical_attendee_details_are_set |
|
| 1276 | - * |
|
| 1277 | - * @param string $form_input |
|
| 1278 | - * @param string $input_value |
|
| 1279 | - * @return boolean |
|
| 1280 | - */ |
|
| 1281 | - private function _verify_critical_attendee_details_are_set_and_validate_email( |
|
| 1282 | - $form_input = '', |
|
| 1283 | - $input_value = '' |
|
| 1284 | - ) { |
|
| 1285 | - if (empty($input_value)) { |
|
| 1286 | - // if the form input isn't marked as being required, then just return |
|
| 1287 | - if (! isset($this->_required_questions[ $form_input ]) || ! $this->_required_questions[ $form_input ]) { |
|
| 1288 | - return true; |
|
| 1289 | - } |
|
| 1290 | - switch ($form_input) { |
|
| 1291 | - case 'fname': |
|
| 1292 | - EE_Error::add_error( |
|
| 1293 | - esc_html__('First Name is a required value.', 'event_espresso'), |
|
| 1294 | - __FILE__, |
|
| 1295 | - __FUNCTION__, |
|
| 1296 | - __LINE__ |
|
| 1297 | - ); |
|
| 1298 | - return false; |
|
| 1299 | - break; |
|
| 1300 | - case 'lname': |
|
| 1301 | - EE_Error::add_error( |
|
| 1302 | - esc_html__('Last Name is a required value.', 'event_espresso'), |
|
| 1303 | - __FILE__, |
|
| 1304 | - __FUNCTION__, |
|
| 1305 | - __LINE__ |
|
| 1306 | - ); |
|
| 1307 | - return false; |
|
| 1308 | - break; |
|
| 1309 | - case 'email': |
|
| 1310 | - EE_Error::add_error( |
|
| 1311 | - esc_html__('Please enter a valid email address.', 'event_espresso'), |
|
| 1312 | - __FILE__, |
|
| 1313 | - __FUNCTION__, |
|
| 1314 | - __LINE__ |
|
| 1315 | - ); |
|
| 1316 | - return false; |
|
| 1317 | - break; |
|
| 1318 | - } |
|
| 1319 | - } |
|
| 1320 | - return true; |
|
| 1321 | - } |
|
| 1322 | - |
|
| 1323 | - |
|
| 1324 | - /** |
|
| 1325 | - * _associate_attendee_with_registration |
|
| 1326 | - * |
|
| 1327 | - * @param EE_Registration $registration |
|
| 1328 | - * @param EE_Attendee $attendee |
|
| 1329 | - * @return void |
|
| 1330 | - * @throws EE_Error |
|
| 1331 | - * @throws InvalidArgumentException |
|
| 1332 | - * @throws ReflectionException |
|
| 1333 | - * @throws RuntimeException |
|
| 1334 | - * @throws InvalidDataTypeException |
|
| 1335 | - * @throws InvalidInterfaceException |
|
| 1336 | - */ |
|
| 1337 | - private function _associate_attendee_with_registration(EE_Registration $registration, EE_Attendee $attendee) |
|
| 1338 | - { |
|
| 1339 | - // add relation to attendee |
|
| 1340 | - $registration->_add_relation_to($attendee, 'Attendee'); |
|
| 1341 | - $registration->set_attendee_id($attendee->ID()); |
|
| 1342 | - $registration->update_cache_after_object_save('Attendee', $attendee); |
|
| 1343 | - } |
|
| 1344 | - |
|
| 1345 | - |
|
| 1346 | - /** |
|
| 1347 | - * _associate_registration_with_transaction |
|
| 1348 | - * |
|
| 1349 | - * @param EE_Registration $registration |
|
| 1350 | - * @return void |
|
| 1351 | - * @throws EE_Error |
|
| 1352 | - * @throws InvalidArgumentException |
|
| 1353 | - * @throws ReflectionException |
|
| 1354 | - * @throws InvalidDataTypeException |
|
| 1355 | - * @throws InvalidInterfaceException |
|
| 1356 | - */ |
|
| 1357 | - private function _associate_registration_with_transaction(EE_Registration $registration) |
|
| 1358 | - { |
|
| 1359 | - // add relation to registration |
|
| 1360 | - $this->checkout->transaction->_add_relation_to($registration, 'Registration'); |
|
| 1361 | - $this->checkout->transaction->update_cache_after_object_save('Registration', $registration); |
|
| 1362 | - } |
|
| 1363 | - |
|
| 1364 | - |
|
| 1365 | - /** |
|
| 1366 | - * _copy_critical_attendee_details_from_primary_registrant |
|
| 1367 | - * ensures that all attendees at least have data for first name, last name, and email address |
|
| 1368 | - * |
|
| 1369 | - * @param array $attendee_data |
|
| 1370 | - * @return array |
|
| 1371 | - * @throws EE_Error |
|
| 1372 | - * @throws InvalidArgumentException |
|
| 1373 | - * @throws ReflectionException |
|
| 1374 | - * @throws InvalidDataTypeException |
|
| 1375 | - * @throws InvalidInterfaceException |
|
| 1376 | - */ |
|
| 1377 | - private function _copy_critical_attendee_details_from_primary_registrant($attendee_data = array()) |
|
| 1378 | - { |
|
| 1379 | - // bare minimum critical details include first name, last name, email address |
|
| 1380 | - $critical_attendee_details = array('ATT_fname', 'ATT_lname', 'ATT_email'); |
|
| 1381 | - // add address info to critical details? |
|
| 1382 | - if (apply_filters( |
|
| 1383 | - 'FHEE__EE_SPCO_Reg_Step_Attendee_Information__merge_address_details_with_critical_attendee_details', |
|
| 1384 | - false |
|
| 1385 | - )) { |
|
| 1386 | - $address_details = array( |
|
| 1387 | - 'ATT_address', |
|
| 1388 | - 'ATT_address2', |
|
| 1389 | - 'ATT_city', |
|
| 1390 | - 'STA_ID', |
|
| 1391 | - 'CNT_ISO', |
|
| 1392 | - 'ATT_zip', |
|
| 1393 | - 'ATT_phone', |
|
| 1394 | - ); |
|
| 1395 | - $critical_attendee_details = array_merge($critical_attendee_details, $address_details); |
|
| 1396 | - } |
|
| 1397 | - foreach ($critical_attendee_details as $critical_attendee_detail) { |
|
| 1398 | - if (! isset($attendee_data[ $critical_attendee_detail ]) |
|
| 1399 | - || empty($attendee_data[ $critical_attendee_detail ]) |
|
| 1400 | - ) { |
|
| 1401 | - $attendee_data[ $critical_attendee_detail ] = $this->checkout->primary_attendee_obj->get( |
|
| 1402 | - $critical_attendee_detail |
|
| 1403 | - ); |
|
| 1404 | - } |
|
| 1405 | - } |
|
| 1406 | - return $attendee_data; |
|
| 1407 | - } |
|
| 1408 | - |
|
| 1409 | - |
|
| 1410 | - /** |
|
| 1411 | - * update_reg_step |
|
| 1412 | - * this is the final step after a user revisits the site to edit their attendee information |
|
| 1413 | - * this gets called AFTER the process_reg_step() method above |
|
| 1414 | - * |
|
| 1415 | - * @return bool |
|
| 1416 | - * @throws EE_Error |
|
| 1417 | - * @throws InvalidArgumentException |
|
| 1418 | - * @throws ReflectionException |
|
| 1419 | - * @throws RuntimeException |
|
| 1420 | - * @throws InvalidDataTypeException |
|
| 1421 | - * @throws InvalidInterfaceException |
|
| 1422 | - */ |
|
| 1423 | - public function update_reg_step() |
|
| 1424 | - { |
|
| 1425 | - // save everything |
|
| 1426 | - if ($this->process_reg_step()) { |
|
| 1427 | - $this->checkout->redirect = true; |
|
| 1428 | - $this->checkout->redirect_url = add_query_arg( |
|
| 1429 | - array( |
|
| 1430 | - 'e_reg_url_link' => $this->checkout->reg_url_link, |
|
| 1431 | - 'revisit' => true, |
|
| 1432 | - ), |
|
| 1433 | - $this->checkout->thank_you_page_url |
|
| 1434 | - ); |
|
| 1435 | - $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
| 1436 | - return true; |
|
| 1437 | - } |
|
| 1438 | - return false; |
|
| 1439 | - } |
|
| 1219 | + $answer_cache_id = $this->checkout->reg_url_link |
|
| 1220 | + ? $form_input . '-' . $registration->reg_url_link() |
|
| 1221 | + : $form_input; |
|
| 1222 | + $answer_is_obj = isset($this->_registration_answers[ $answer_cache_id ]) |
|
| 1223 | + && $this->_registration_answers[ $answer_cache_id ] instanceof EE_Answer; |
|
| 1224 | + // rename form_inputs if they are EE_Attendee properties |
|
| 1225 | + switch ((string) $form_input) { |
|
| 1226 | + case 'state': |
|
| 1227 | + case 'STA_ID': |
|
| 1228 | + $attendee_property = true; |
|
| 1229 | + $form_input = 'STA_ID'; |
|
| 1230 | + break; |
|
| 1231 | + |
|
| 1232 | + case 'country': |
|
| 1233 | + case 'CNT_ISO': |
|
| 1234 | + $attendee_property = true; |
|
| 1235 | + $form_input = 'CNT_ISO'; |
|
| 1236 | + break; |
|
| 1237 | + |
|
| 1238 | + default: |
|
| 1239 | + $ATT_input = 'ATT_' . $form_input; |
|
| 1240 | + // EEH_Debug_Tools::printr( $ATT_input, '$ATT_input', __FILE__, __LINE__ ); |
|
| 1241 | + $attendee_property = EEM_Attendee::instance()->has_field($ATT_input) ? true : false; |
|
| 1242 | + $form_input = $attendee_property ? 'ATT_' . $form_input : $form_input; |
|
| 1243 | + } |
|
| 1244 | + // EEH_Debug_Tools::printr( $answer_cache_id, '$answer_cache_id', __FILE__, __LINE__ ); |
|
| 1245 | + // EEH_Debug_Tools::printr( $attendee_property, '$attendee_property', __FILE__, __LINE__ ); |
|
| 1246 | + // EEH_Debug_Tools::printr( $answer_is_obj, '$answer_is_obj', __FILE__, __LINE__ ); |
|
| 1247 | + // if this form input has a corresponding attendee property |
|
| 1248 | + if ($attendee_property) { |
|
| 1249 | + $this->_attendee_data[ $registration->reg_url_link() ][ $form_input ] = $input_value; |
|
| 1250 | + if ($answer_is_obj) { |
|
| 1251 | + // and delete the corresponding answer since we won't be storing this data in that object |
|
| 1252 | + $registration->_remove_relation_to($this->_registration_answers[ $answer_cache_id ], 'Answer'); |
|
| 1253 | + $this->_registration_answers[ $answer_cache_id ]->delete_permanently(); |
|
| 1254 | + } |
|
| 1255 | + return true; |
|
| 1256 | + } |
|
| 1257 | + if ($answer_is_obj) { |
|
| 1258 | + // save this data to the answer object |
|
| 1259 | + $this->_registration_answers[ $answer_cache_id ]->set_value($input_value); |
|
| 1260 | + $result = $this->_registration_answers[ $answer_cache_id ]->save(); |
|
| 1261 | + return $result !== false; |
|
| 1262 | + } |
|
| 1263 | + foreach ($this->_registration_answers as $answer) { |
|
| 1264 | + if ($answer instanceof EE_Answer && $answer->question_ID() === $answer_cache_id) { |
|
| 1265 | + $answer->set_value($input_value); |
|
| 1266 | + $result = $answer->save(); |
|
| 1267 | + return $result !== false; |
|
| 1268 | + } |
|
| 1269 | + } |
|
| 1270 | + return false; |
|
| 1271 | + } |
|
| 1272 | + |
|
| 1273 | + |
|
| 1274 | + /** |
|
| 1275 | + * _verify_critical_attendee_details_are_set |
|
| 1276 | + * |
|
| 1277 | + * @param string $form_input |
|
| 1278 | + * @param string $input_value |
|
| 1279 | + * @return boolean |
|
| 1280 | + */ |
|
| 1281 | + private function _verify_critical_attendee_details_are_set_and_validate_email( |
|
| 1282 | + $form_input = '', |
|
| 1283 | + $input_value = '' |
|
| 1284 | + ) { |
|
| 1285 | + if (empty($input_value)) { |
|
| 1286 | + // if the form input isn't marked as being required, then just return |
|
| 1287 | + if (! isset($this->_required_questions[ $form_input ]) || ! $this->_required_questions[ $form_input ]) { |
|
| 1288 | + return true; |
|
| 1289 | + } |
|
| 1290 | + switch ($form_input) { |
|
| 1291 | + case 'fname': |
|
| 1292 | + EE_Error::add_error( |
|
| 1293 | + esc_html__('First Name is a required value.', 'event_espresso'), |
|
| 1294 | + __FILE__, |
|
| 1295 | + __FUNCTION__, |
|
| 1296 | + __LINE__ |
|
| 1297 | + ); |
|
| 1298 | + return false; |
|
| 1299 | + break; |
|
| 1300 | + case 'lname': |
|
| 1301 | + EE_Error::add_error( |
|
| 1302 | + esc_html__('Last Name is a required value.', 'event_espresso'), |
|
| 1303 | + __FILE__, |
|
| 1304 | + __FUNCTION__, |
|
| 1305 | + __LINE__ |
|
| 1306 | + ); |
|
| 1307 | + return false; |
|
| 1308 | + break; |
|
| 1309 | + case 'email': |
|
| 1310 | + EE_Error::add_error( |
|
| 1311 | + esc_html__('Please enter a valid email address.', 'event_espresso'), |
|
| 1312 | + __FILE__, |
|
| 1313 | + __FUNCTION__, |
|
| 1314 | + __LINE__ |
|
| 1315 | + ); |
|
| 1316 | + return false; |
|
| 1317 | + break; |
|
| 1318 | + } |
|
| 1319 | + } |
|
| 1320 | + return true; |
|
| 1321 | + } |
|
| 1322 | + |
|
| 1323 | + |
|
| 1324 | + /** |
|
| 1325 | + * _associate_attendee_with_registration |
|
| 1326 | + * |
|
| 1327 | + * @param EE_Registration $registration |
|
| 1328 | + * @param EE_Attendee $attendee |
|
| 1329 | + * @return void |
|
| 1330 | + * @throws EE_Error |
|
| 1331 | + * @throws InvalidArgumentException |
|
| 1332 | + * @throws ReflectionException |
|
| 1333 | + * @throws RuntimeException |
|
| 1334 | + * @throws InvalidDataTypeException |
|
| 1335 | + * @throws InvalidInterfaceException |
|
| 1336 | + */ |
|
| 1337 | + private function _associate_attendee_with_registration(EE_Registration $registration, EE_Attendee $attendee) |
|
| 1338 | + { |
|
| 1339 | + // add relation to attendee |
|
| 1340 | + $registration->_add_relation_to($attendee, 'Attendee'); |
|
| 1341 | + $registration->set_attendee_id($attendee->ID()); |
|
| 1342 | + $registration->update_cache_after_object_save('Attendee', $attendee); |
|
| 1343 | + } |
|
| 1344 | + |
|
| 1345 | + |
|
| 1346 | + /** |
|
| 1347 | + * _associate_registration_with_transaction |
|
| 1348 | + * |
|
| 1349 | + * @param EE_Registration $registration |
|
| 1350 | + * @return void |
|
| 1351 | + * @throws EE_Error |
|
| 1352 | + * @throws InvalidArgumentException |
|
| 1353 | + * @throws ReflectionException |
|
| 1354 | + * @throws InvalidDataTypeException |
|
| 1355 | + * @throws InvalidInterfaceException |
|
| 1356 | + */ |
|
| 1357 | + private function _associate_registration_with_transaction(EE_Registration $registration) |
|
| 1358 | + { |
|
| 1359 | + // add relation to registration |
|
| 1360 | + $this->checkout->transaction->_add_relation_to($registration, 'Registration'); |
|
| 1361 | + $this->checkout->transaction->update_cache_after_object_save('Registration', $registration); |
|
| 1362 | + } |
|
| 1363 | + |
|
| 1364 | + |
|
| 1365 | + /** |
|
| 1366 | + * _copy_critical_attendee_details_from_primary_registrant |
|
| 1367 | + * ensures that all attendees at least have data for first name, last name, and email address |
|
| 1368 | + * |
|
| 1369 | + * @param array $attendee_data |
|
| 1370 | + * @return array |
|
| 1371 | + * @throws EE_Error |
|
| 1372 | + * @throws InvalidArgumentException |
|
| 1373 | + * @throws ReflectionException |
|
| 1374 | + * @throws InvalidDataTypeException |
|
| 1375 | + * @throws InvalidInterfaceException |
|
| 1376 | + */ |
|
| 1377 | + private function _copy_critical_attendee_details_from_primary_registrant($attendee_data = array()) |
|
| 1378 | + { |
|
| 1379 | + // bare minimum critical details include first name, last name, email address |
|
| 1380 | + $critical_attendee_details = array('ATT_fname', 'ATT_lname', 'ATT_email'); |
|
| 1381 | + // add address info to critical details? |
|
| 1382 | + if (apply_filters( |
|
| 1383 | + 'FHEE__EE_SPCO_Reg_Step_Attendee_Information__merge_address_details_with_critical_attendee_details', |
|
| 1384 | + false |
|
| 1385 | + )) { |
|
| 1386 | + $address_details = array( |
|
| 1387 | + 'ATT_address', |
|
| 1388 | + 'ATT_address2', |
|
| 1389 | + 'ATT_city', |
|
| 1390 | + 'STA_ID', |
|
| 1391 | + 'CNT_ISO', |
|
| 1392 | + 'ATT_zip', |
|
| 1393 | + 'ATT_phone', |
|
| 1394 | + ); |
|
| 1395 | + $critical_attendee_details = array_merge($critical_attendee_details, $address_details); |
|
| 1396 | + } |
|
| 1397 | + foreach ($critical_attendee_details as $critical_attendee_detail) { |
|
| 1398 | + if (! isset($attendee_data[ $critical_attendee_detail ]) |
|
| 1399 | + || empty($attendee_data[ $critical_attendee_detail ]) |
|
| 1400 | + ) { |
|
| 1401 | + $attendee_data[ $critical_attendee_detail ] = $this->checkout->primary_attendee_obj->get( |
|
| 1402 | + $critical_attendee_detail |
|
| 1403 | + ); |
|
| 1404 | + } |
|
| 1405 | + } |
|
| 1406 | + return $attendee_data; |
|
| 1407 | + } |
|
| 1408 | + |
|
| 1409 | + |
|
| 1410 | + /** |
|
| 1411 | + * update_reg_step |
|
| 1412 | + * this is the final step after a user revisits the site to edit their attendee information |
|
| 1413 | + * this gets called AFTER the process_reg_step() method above |
|
| 1414 | + * |
|
| 1415 | + * @return bool |
|
| 1416 | + * @throws EE_Error |
|
| 1417 | + * @throws InvalidArgumentException |
|
| 1418 | + * @throws ReflectionException |
|
| 1419 | + * @throws RuntimeException |
|
| 1420 | + * @throws InvalidDataTypeException |
|
| 1421 | + * @throws InvalidInterfaceException |
|
| 1422 | + */ |
|
| 1423 | + public function update_reg_step() |
|
| 1424 | + { |
|
| 1425 | + // save everything |
|
| 1426 | + if ($this->process_reg_step()) { |
|
| 1427 | + $this->checkout->redirect = true; |
|
| 1428 | + $this->checkout->redirect_url = add_query_arg( |
|
| 1429 | + array( |
|
| 1430 | + 'e_reg_url_link' => $this->checkout->reg_url_link, |
|
| 1431 | + 'revisit' => true, |
|
| 1432 | + ), |
|
| 1433 | + $this->checkout->thank_you_page_url |
|
| 1434 | + ); |
|
| 1435 | + $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
| 1436 | + return true; |
|
| 1437 | + } |
|
| 1438 | + return false; |
|
| 1439 | + } |
|
| 1440 | 1440 | } |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | { |
| 50 | 50 | $this->_slug = 'attendee_information'; |
| 51 | 51 | $this->_name = esc_html__('Attendee Information', 'event_espresso'); |
| 52 | - $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . DS . 'attendee_info_main.template.php'; |
|
| 52 | + $this->_template = SPCO_REG_STEPS_PATH.$this->_slug.DS.'attendee_info_main.template.php'; |
|
| 53 | 53 | $this->checkout = $checkout; |
| 54 | 54 | $this->_reset_success_message(); |
| 55 | 55 | $this->set_instructions( |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | */ |
| 143 | 143 | $reg_config = LoaderFactory::getLoader()->getShared('EE_Registration_Config'); |
| 144 | 144 | // if this isn't a revisit, and they have the privacy consent box enalbed, add it |
| 145 | - if (! $this->checkout->revisit && $reg_config->isConsentCheckboxEnabled()) { |
|
| 145 | + if ( ! $this->checkout->revisit && $reg_config->isConsentCheckboxEnabled()) { |
|
| 146 | 146 | $extra_inputs_section->add_subsections( |
| 147 | 147 | array( |
| 148 | 148 | 'consent_box' => new EE_Form_Section_Proper( |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | 'layout_strategy' => |
| 151 | 151 | new EE_Template_Layout( |
| 152 | 152 | array( |
| 153 | - 'input_template_file' => SPCO_REG_STEPS_PATH . $this->_slug . DS . 'privacy_consent.template.php', |
|
| 153 | + 'input_template_file' => SPCO_REG_STEPS_PATH.$this->_slug.DS.'privacy_consent.template.php', |
|
| 154 | 154 | ) |
| 155 | 155 | ), |
| 156 | 156 | 'subsections' => array( |
@@ -188,13 +188,13 @@ discard block |
||
| 188 | 188 | if ($registration instanceof EE_Registration |
| 189 | 189 | && $this->checkout->visit_allows_processing_of_this_registration($registration) |
| 190 | 190 | ) { |
| 191 | - $subsections[ $registration->reg_url_link() ] = $this->_registrations_reg_form($registration); |
|
| 192 | - if (! $this->checkout->admin_request) { |
|
| 193 | - $template_args['registrations'][ $registration->reg_url_link() ] = $registration; |
|
| 194 | - $template_args['ticket_count'][ $registration->ticket()->ID() ] = isset( |
|
| 195 | - $template_args['ticket_count'][ $registration->ticket()->ID() ] |
|
| 191 | + $subsections[$registration->reg_url_link()] = $this->_registrations_reg_form($registration); |
|
| 192 | + if ( ! $this->checkout->admin_request) { |
|
| 193 | + $template_args['registrations'][$registration->reg_url_link()] = $registration; |
|
| 194 | + $template_args['ticket_count'][$registration->ticket()->ID()] = isset( |
|
| 195 | + $template_args['ticket_count'][$registration->ticket()->ID()] |
|
| 196 | 196 | ) |
| 197 | - ? $template_args['ticket_count'][ $registration->ticket()->ID() ] + 1 |
|
| 197 | + ? $template_args['ticket_count'][$registration->ticket()->ID()] + 1 |
|
| 198 | 198 | : 1; |
| 199 | 199 | $ticket_line_item = EEH_Line_Item::get_line_items_by_object_type_and_IDs( |
| 200 | 200 | $this->checkout->cart->get_grand_total(), |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | $ticket_line_item = is_array($ticket_line_item) |
| 205 | 205 | ? reset($ticket_line_item) |
| 206 | 206 | : $ticket_line_item; |
| 207 | - $template_args['ticket_line_item'][ $registration->ticket()->ID() ] = |
|
| 207 | + $template_args['ticket_line_item'][$registration->ticket()->ID()] = |
|
| 208 | 208 | $Line_Item_Display->display_line_item($ticket_line_item); |
| 209 | 209 | } |
| 210 | 210 | if ($registration->is_primary_registrant()) { |
@@ -220,10 +220,10 @@ discard block |
||
| 220 | 220 | ? $this->_copy_attendee_info_form() |
| 221 | 221 | : $this->_auto_copy_attendee_info(); |
| 222 | 222 | // generate hidden input |
| 223 | - if (isset($subsections[ $primary_registrant ]) |
|
| 224 | - && $subsections[ $primary_registrant ] instanceof EE_Form_Section_Proper |
|
| 223 | + if (isset($subsections[$primary_registrant]) |
|
| 224 | + && $subsections[$primary_registrant] instanceof EE_Form_Section_Proper |
|
| 225 | 225 | ) { |
| 226 | - $subsections[ $primary_registrant ]->add_subsections( |
|
| 226 | + $subsections[$primary_registrant]->add_subsections( |
|
| 227 | 227 | $copy_options, |
| 228 | 228 | 'primary_registrant', |
| 229 | 229 | false |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | if ($question_groups) { |
| 285 | 285 | // array of params to pass to parent constructor |
| 286 | 286 | $form_args = array( |
| 287 | - 'html_id' => 'ee-registration-' . $registration->reg_url_link(), |
|
| 287 | + 'html_id' => 'ee-registration-'.$registration->reg_url_link(), |
|
| 288 | 288 | 'html_class' => 'ee-reg-form-attendee-dv', |
| 289 | 289 | 'html_style' => $this->checkout->admin_request |
| 290 | 290 | ? 'padding:0em 2em 1em; margin:3em 0 0; border:1px solid #ddd;' |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | ); |
| 307 | 307 | foreach ($question_groups as $question_group) { |
| 308 | 308 | if ($question_group instanceof EE_Question_Group) { |
| 309 | - $form_args['subsections'][ $question_group->identifier() ] = $this->_question_group_reg_form( |
|
| 309 | + $form_args['subsections'][$question_group->identifier()] = $this->_question_group_reg_form( |
|
| 310 | 310 | $registration, |
| 311 | 311 | $question_group |
| 312 | 312 | ); |
@@ -346,7 +346,7 @@ discard block |
||
| 346 | 346 | // generate hidden input |
| 347 | 347 | return new EE_Hidden_Input( |
| 348 | 348 | array( |
| 349 | - 'html_id' => 'additional-attendee-reg-info-' . $registration->reg_url_link(), |
|
| 349 | + 'html_id' => 'additional-attendee-reg-info-'.$registration->reg_url_link(), |
|
| 350 | 350 | 'default' => $additional_attendee_reg_info, |
| 351 | 351 | ) |
| 352 | 352 | ); |
@@ -367,12 +367,12 @@ discard block |
||
| 367 | 367 | { |
| 368 | 368 | // array of params to pass to parent constructor |
| 369 | 369 | $form_args = array( |
| 370 | - 'html_id' => 'ee-reg-form-qstn-grp-' . $question_group->identifier() . '-' . $registration->ID(), |
|
| 370 | + 'html_id' => 'ee-reg-form-qstn-grp-'.$question_group->identifier().'-'.$registration->ID(), |
|
| 371 | 371 | 'html_class' => $this->checkout->admin_request |
| 372 | 372 | ? 'form-table ee-reg-form-qstn-grp-dv' |
| 373 | 373 | : 'ee-reg-form-qstn-grp-dv', |
| 374 | - 'html_label_id' => 'ee-reg-form-qstn-grp-' . $question_group->identifier() . '-' |
|
| 375 | - . $registration->ID() . '-lbl', |
|
| 374 | + 'html_label_id' => 'ee-reg-form-qstn-grp-'.$question_group->identifier().'-' |
|
| 375 | + . $registration->ID().'-lbl', |
|
| 376 | 376 | 'subsections' => array( |
| 377 | 377 | 'reg_form_qstn_grp_hdr' => $this->_question_group_header($question_group), |
| 378 | 378 | ), |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | // where params |
| 384 | 384 | $query_params = array('QST_deleted' => 0); |
| 385 | 385 | // don't load admin only questions on the frontend |
| 386 | - if (! $this->checkout->admin_request) { |
|
| 386 | + if ( ! $this->checkout->admin_request) { |
|
| 387 | 387 | $query_params['QST_admin_only'] = array('!=', true); |
| 388 | 388 | } |
| 389 | 389 | $questions = $question_group->get_many_related( |
@@ -417,7 +417,7 @@ discard block |
||
| 417 | 417 | $identifier = $question->is_system_question() |
| 418 | 418 | ? $question->system_ID() |
| 419 | 419 | : $question->ID(); |
| 420 | - $form_args['subsections'][ $identifier ] = $this->reg_form_question($registration, $question); |
|
| 420 | + $form_args['subsections'][$identifier] = $this->reg_form_question($registration, $question); |
|
| 421 | 421 | } |
| 422 | 422 | } |
| 423 | 423 | $form_args['subsections'] = apply_filters( |
@@ -530,7 +530,7 @@ discard block |
||
| 530 | 530 | { |
| 531 | 531 | return new EE_Form_Section_HTML( |
| 532 | 532 | EEH_Template::locate_template( |
| 533 | - SPCO_REG_STEPS_PATH . $this->_slug . DS . '_auto_copy_attendee_info.template.php', |
|
| 533 | + SPCO_REG_STEPS_PATH.$this->_slug.DS.'_auto_copy_attendee_info.template.php', |
|
| 534 | 534 | apply_filters( |
| 535 | 535 | 'FHEE__EE_SPCO_Reg_Step_Attendee_Information__auto_copy_attendee_info__template_args', |
| 536 | 536 | array() |
@@ -563,17 +563,17 @@ discard block |
||
| 563 | 563 | if ($registration->ticket()->ID() !== $prev_ticket) { |
| 564 | 564 | $item_name = $registration->ticket()->name(); |
| 565 | 565 | $item_name .= $registration->ticket()->description() !== '' |
| 566 | - ? ' - ' . $registration->ticket()->description() |
|
| 566 | + ? ' - '.$registration->ticket()->description() |
|
| 567 | 567 | : ''; |
| 568 | - $copy_attendee_info_inputs[ 'spco_copy_attendee_chk[ticket-' . $registration->ticket()->ID( |
|
| 569 | - ) . ']' ] = |
|
| 568 | + $copy_attendee_info_inputs['spco_copy_attendee_chk[ticket-'.$registration->ticket()->ID( |
|
| 569 | + ).']'] = |
|
| 570 | 570 | new EE_Form_Section_HTML( |
| 571 | - '<h6 class="spco-copy-attendee-event-hdr">' . $item_name . '</h6>' |
|
| 571 | + '<h6 class="spco-copy-attendee-event-hdr">'.$item_name.'</h6>' |
|
| 572 | 572 | ); |
| 573 | 573 | $prev_ticket = $registration->ticket()->ID(); |
| 574 | 574 | } |
| 575 | 575 | |
| 576 | - $copy_attendee_info_inputs[ 'spco_copy_attendee_chk[' . $registration->ID() . ']' ] = |
|
| 576 | + $copy_attendee_info_inputs['spco_copy_attendee_chk['.$registration->ID().']'] = |
|
| 577 | 577 | new EE_Checkbox_Multi_Input( |
| 578 | 578 | array( |
| 579 | 579 | $registration->ID() => sprintf( |
@@ -582,7 +582,7 @@ discard block |
||
| 582 | 582 | ), |
| 583 | 583 | ), |
| 584 | 584 | array( |
| 585 | - 'html_id' => 'spco-copy-attendee-chk-' . $registration->reg_url_link(), |
|
| 585 | + 'html_id' => 'spco-copy-attendee-chk-'.$registration->reg_url_link(), |
|
| 586 | 586 | 'html_class' => 'spco-copy-attendee-chk ee-do-not-validate', |
| 587 | 587 | 'display_html_label_text' => false, |
| 588 | 588 | ) |
@@ -647,14 +647,14 @@ discard block |
||
| 647 | 647 | } |
| 648 | 648 | // verify instance |
| 649 | 649 | if ($answer instanceof EE_Answer) { |
| 650 | - if (! empty($answer_value)) { |
|
| 650 | + if ( ! empty($answer_value)) { |
|
| 651 | 651 | $answer->set('ANS_value', $answer_value); |
| 652 | 652 | } |
| 653 | 653 | $answer->cache('Question', $question); |
| 654 | 654 | // remember system ID had a bug where sometimes it could be null |
| 655 | 655 | $answer_cache_id = $question->is_system_question() |
| 656 | - ? $question->system_ID() . '-' . $registration->reg_url_link() |
|
| 657 | - : $question->ID() . '-' . $registration->reg_url_link(); |
|
| 656 | + ? $question->system_ID().'-'.$registration->reg_url_link() |
|
| 657 | + : $question->ID().'-'.$registration->reg_url_link(); |
|
| 658 | 658 | $registration->cache('Answer', $answer, $answer_cache_id); |
| 659 | 659 | } |
| 660 | 660 | return $this->_generate_question_input($registration, $question, $answer); |
@@ -677,7 +677,7 @@ discard block |
||
| 677 | 677 | $identifier = $question->is_system_question() |
| 678 | 678 | ? $question->system_ID() |
| 679 | 679 | : $question->ID(); |
| 680 | - $this->_required_questions[ $identifier ] = $question->required() ? true : false; |
|
| 680 | + $this->_required_questions[$identifier] = $question->required() ? true : false; |
|
| 681 | 681 | add_filter( |
| 682 | 682 | 'FHEE__EE_Question__generate_form_input__country_options', |
| 683 | 683 | array($this, 'use_cached_countries_for_form_input'), |
@@ -691,17 +691,17 @@ discard block |
||
| 691 | 691 | 4 |
| 692 | 692 | ); |
| 693 | 693 | $input_constructor_args = array( |
| 694 | - 'html_name' => 'ee_reg_qstn[' . $registration->ID() . '][' . $identifier . ']', |
|
| 695 | - 'html_id' => 'ee_reg_qstn-' . $registration->ID() . '-' . $identifier, |
|
| 696 | - 'html_class' => 'ee-reg-qstn ee-reg-qstn-' . $identifier, |
|
| 697 | - 'html_label_id' => 'ee_reg_qstn-' . $registration->ID() . '-' . $identifier, |
|
| 694 | + 'html_name' => 'ee_reg_qstn['.$registration->ID().']['.$identifier.']', |
|
| 695 | + 'html_id' => 'ee_reg_qstn-'.$registration->ID().'-'.$identifier, |
|
| 696 | + 'html_class' => 'ee-reg-qstn ee-reg-qstn-'.$identifier, |
|
| 697 | + 'html_label_id' => 'ee_reg_qstn-'.$registration->ID().'-'.$identifier, |
|
| 698 | 698 | 'html_label_class' => 'ee-reg-qstn', |
| 699 | 699 | ); |
| 700 | 700 | $input_constructor_args['html_label_id'] .= '-lbl'; |
| 701 | 701 | if ($answer instanceof EE_Answer && $answer->ID()) { |
| 702 | - $input_constructor_args['html_name'] .= '[' . $answer->ID() . ']'; |
|
| 703 | - $input_constructor_args['html_id'] .= '-' . $answer->ID(); |
|
| 704 | - $input_constructor_args['html_label_id'] .= '-' . $answer->ID(); |
|
| 702 | + $input_constructor_args['html_name'] .= '['.$answer->ID().']'; |
|
| 703 | + $input_constructor_args['html_id'] .= '-'.$answer->ID(); |
|
| 704 | + $input_constructor_args['html_label_id'] .= '-'.$answer->ID(); |
|
| 705 | 705 | } |
| 706 | 706 | $form_input = $question->generate_form_input( |
| 707 | 707 | $registration, |
@@ -745,10 +745,10 @@ discard block |
||
| 745 | 745 | $countries = $this->checkout->action === 'process_reg_step' |
| 746 | 746 | ? EEM_Country::instance()->get_all_countries() |
| 747 | 747 | : EEM_Country::instance()->get_all_active_countries(); |
| 748 | - if (! empty($countries)) { |
|
| 748 | + if ( ! empty($countries)) { |
|
| 749 | 749 | foreach ($countries as $country) { |
| 750 | 750 | if ($country instanceof EE_Country) { |
| 751 | - $country_options[ $country->ID() ] = $country->name(); |
|
| 751 | + $country_options[$country->ID()] = $country->name(); |
|
| 752 | 752 | } |
| 753 | 753 | } |
| 754 | 754 | } |
@@ -795,10 +795,10 @@ discard block |
||
| 795 | 795 | $states = $this->checkout->action === 'process_reg_step' |
| 796 | 796 | ? EEM_State::instance()->get_all_states() |
| 797 | 797 | : EEM_State::instance()->get_all_active_states(); |
| 798 | - if (! empty($states)) { |
|
| 798 | + if ( ! empty($states)) { |
|
| 799 | 799 | foreach ($states as $state) { |
| 800 | 800 | if ($state instanceof EE_State) { |
| 801 | - $state_options[ $state->country()->name() ][ $state->ID() ] = $state->name(); |
|
| 801 | + $state_options[$state->country()->name()][$state->ID()] = $state->name(); |
|
| 802 | 802 | } |
| 803 | 803 | } |
| 804 | 804 | } |
@@ -845,7 +845,7 @@ discard block |
||
| 845 | 845 | ); |
| 846 | 846 | return false; |
| 847 | 847 | } |
| 848 | - if (! $this->checkout->transaction instanceof EE_Transaction || ! $this->checkout->continue_reg) { |
|
| 848 | + if ( ! $this->checkout->transaction instanceof EE_Transaction || ! $this->checkout->continue_reg) { |
|
| 849 | 849 | EE_Error::add_error( |
| 850 | 850 | esc_html__( |
| 851 | 851 | 'A valid transaction could not be initiated for processing your registrations.', |
@@ -872,7 +872,7 @@ discard block |
||
| 872 | 872 | '(line break)This can sometimes happen if too much time has been taken to complete the registration process.(line break)Please return to the (link)Event List(end link) and reselect your tickets. If the problem continues, please contact the site administrator.', |
| 873 | 873 | 'event_espresso' |
| 874 | 874 | ), |
| 875 | - '<a href="' . get_post_type_archive_link('espresso_events') . '" >', |
|
| 875 | + '<a href="'.get_post_type_archive_link('espresso_events').'" >', |
|
| 876 | 876 | '</a>', |
| 877 | 877 | '<br />' |
| 878 | 878 | ); |
@@ -892,7 +892,7 @@ discard block |
||
| 892 | 892 | // but return immediately if the previous step exited early due to errors |
| 893 | 893 | return false; |
| 894 | 894 | } |
| 895 | - if (! $this->checkout->revisit && $registrations_processed !== $this->checkout->total_ticket_count) { |
|
| 895 | + if ( ! $this->checkout->revisit && $registrations_processed !== $this->checkout->total_ticket_count) { |
|
| 896 | 896 | // generate a correctly translated string for all possible singular/plural combinations |
| 897 | 897 | if ($this->checkout->total_ticket_count === 1 && $registrations_processed !== 1) { |
| 898 | 898 | $error_msg = sprintf( |
@@ -975,7 +975,7 @@ discard block |
||
| 975 | 975 | // grab the saved registrations from the transaction |
| 976 | 976 | foreach ($registrations as $registration) { |
| 977 | 977 | // verify EE_Registration object |
| 978 | - if (! $registration instanceof EE_Registration) { |
|
| 978 | + if ( ! $registration instanceof EE_Registration) { |
|
| 979 | 979 | EE_Error::add_error( |
| 980 | 980 | esc_html__( |
| 981 | 981 | 'An invalid Registration object was discovered when attempting to process your registration information.', |
@@ -990,12 +990,12 @@ discard block |
||
| 990 | 990 | /** @var string $reg_url_link */ |
| 991 | 991 | $reg_url_link = $registration->reg_url_link(); |
| 992 | 992 | // reg_url_link exists ? |
| 993 | - if (! empty($reg_url_link)) { |
|
| 993 | + if ( ! empty($reg_url_link)) { |
|
| 994 | 994 | // should this registration be processed during this visit ? |
| 995 | 995 | if ($this->checkout->visit_allows_processing_of_this_registration($registration)) { |
| 996 | 996 | // if NOT revisiting, then let's save the registration now, |
| 997 | 997 | // so that we have a REG_ID to use when generating other objects |
| 998 | - if (! $this->checkout->revisit) { |
|
| 998 | + if ( ! $this->checkout->revisit) { |
|
| 999 | 999 | $registration->save(); |
| 1000 | 1000 | } |
| 1001 | 1001 | /** |
@@ -1019,18 +1019,18 @@ discard block |
||
| 1019 | 1019 | |
| 1020 | 1020 | // Houston, we have a registration! |
| 1021 | 1021 | $att_nmbr++; |
| 1022 | - $this->_attendee_data[ $reg_url_link ] = array(); |
|
| 1022 | + $this->_attendee_data[$reg_url_link] = array(); |
|
| 1023 | 1023 | // grab any existing related answer objects |
| 1024 | 1024 | $this->_registration_answers = $registration->answers(); |
| 1025 | 1025 | // unset( $valid_data[ $reg_url_link ]['additional_attendee_reg_info'] ); |
| 1026 | - if (isset($valid_data[ $reg_url_link ])) { |
|
| 1026 | + if (isset($valid_data[$reg_url_link])) { |
|
| 1027 | 1027 | // do we need to copy basic info from primary attendee ? |
| 1028 | - $copy_primary = isset($valid_data[ $reg_url_link ]['additional_attendee_reg_info']) |
|
| 1029 | - && absint($valid_data[ $reg_url_link ]['additional_attendee_reg_info']) === 0; |
|
| 1028 | + $copy_primary = isset($valid_data[$reg_url_link]['additional_attendee_reg_info']) |
|
| 1029 | + && absint($valid_data[$reg_url_link]['additional_attendee_reg_info']) === 0; |
|
| 1030 | 1030 | // filter form input data for this registration |
| 1031 | - $valid_data[ $reg_url_link ] = (array) apply_filters( |
|
| 1031 | + $valid_data[$reg_url_link] = (array) apply_filters( |
|
| 1032 | 1032 | 'FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item', |
| 1033 | - $valid_data[ $reg_url_link ] |
|
| 1033 | + $valid_data[$reg_url_link] |
|
| 1034 | 1034 | ); |
| 1035 | 1035 | if (isset($valid_data['primary_attendee'])) { |
| 1036 | 1036 | $primary_registrant['line_item_id'] = ! empty($valid_data['primary_attendee']) |
@@ -1039,12 +1039,12 @@ discard block |
||
| 1039 | 1039 | unset($valid_data['primary_attendee']); |
| 1040 | 1040 | } |
| 1041 | 1041 | // now loop through our array of valid post data && process attendee reg forms |
| 1042 | - foreach ($valid_data[ $reg_url_link ] as $form_section => $form_inputs) { |
|
| 1043 | - if (! in_array($form_section, $non_input_form_sections, true)) { |
|
| 1042 | + foreach ($valid_data[$reg_url_link] as $form_section => $form_inputs) { |
|
| 1043 | + if ( ! in_array($form_section, $non_input_form_sections, true)) { |
|
| 1044 | 1044 | foreach ($form_inputs as $form_input => $input_value) { |
| 1045 | 1045 | // \EEH_Debug_Tools::printr( $input_value, $form_input, __FILE__, __LINE__ ); |
| 1046 | 1046 | // check for critical inputs |
| 1047 | - if (! $this->_verify_critical_attendee_details_are_set_and_validate_email( |
|
| 1047 | + if ( ! $this->_verify_critical_attendee_details_are_set_and_validate_email( |
|
| 1048 | 1048 | $form_input, |
| 1049 | 1049 | $input_value |
| 1050 | 1050 | ) |
@@ -1056,15 +1056,15 @@ discard block |
||
| 1056 | 1056 | && ! empty($input_value) |
| 1057 | 1057 | && $reg_url_link === $primary_registrant['line_item_id'] |
| 1058 | 1058 | ) { |
| 1059 | - $primary_registrant[ $form_input ] = $input_value; |
|
| 1059 | + $primary_registrant[$form_input] = $input_value; |
|
| 1060 | 1060 | } elseif ($copy_primary |
| 1061 | 1061 | && $input_value === null |
| 1062 | - && isset($primary_registrant[ $form_input ]) |
|
| 1062 | + && isset($primary_registrant[$form_input]) |
|
| 1063 | 1063 | ) { |
| 1064 | - $input_value = $primary_registrant[ $form_input ]; |
|
| 1064 | + $input_value = $primary_registrant[$form_input]; |
|
| 1065 | 1065 | } |
| 1066 | 1066 | // now attempt to save the input data |
| 1067 | - if (! $this->_save_registration_form_input( |
|
| 1067 | + if ( ! $this->_save_registration_form_input( |
|
| 1068 | 1068 | $registration, |
| 1069 | 1069 | $form_input, |
| 1070 | 1070 | $input_value |
@@ -1100,15 +1100,15 @@ discard block |
||
| 1100 | 1100 | $attendee = $this->checkout->primary_attendee_obj; |
| 1101 | 1101 | } else { |
| 1102 | 1102 | // ensure critical details are set for additional attendees |
| 1103 | - $this->_attendee_data[ $reg_url_link ] = $att_nmbr > 1 |
|
| 1103 | + $this->_attendee_data[$reg_url_link] = $att_nmbr > 1 |
|
| 1104 | 1104 | ? $this->_copy_critical_attendee_details_from_primary_registrant( |
| 1105 | - $this->_attendee_data[ $reg_url_link ] |
|
| 1105 | + $this->_attendee_data[$reg_url_link] |
|
| 1106 | 1106 | ) |
| 1107 | - : $this->_attendee_data[ $reg_url_link ]; |
|
| 1107 | + : $this->_attendee_data[$reg_url_link]; |
|
| 1108 | 1108 | // execute create attendee command (which may return an existing attendee) |
| 1109 | 1109 | $attendee = EE_Registry::instance()->BUS->execute( |
| 1110 | 1110 | new CreateAttendeeCommand( |
| 1111 | - $this->_attendee_data[ $reg_url_link ], |
|
| 1111 | + $this->_attendee_data[$reg_url_link], |
|
| 1112 | 1112 | $registration |
| 1113 | 1113 | ) |
| 1114 | 1114 | ); |
@@ -1121,7 +1121,7 @@ discard block |
||
| 1121 | 1121 | // add relation to registration, set attendee ID, and cache attendee |
| 1122 | 1122 | $this->_associate_attendee_with_registration($registration, $attendee); |
| 1123 | 1123 | // \EEH_Debug_Tools::printr( $registration, '$registration', __FILE__, __LINE__ ); |
| 1124 | - if (! $registration->attendee() instanceof EE_Attendee) { |
|
| 1124 | + if ( ! $registration->attendee() instanceof EE_Attendee) { |
|
| 1125 | 1125 | EE_Error::add_error( |
| 1126 | 1126 | sprintf( |
| 1127 | 1127 | esc_html_x( |
@@ -1171,7 +1171,7 @@ discard block |
||
| 1171 | 1171 | __LINE__ |
| 1172 | 1172 | ); |
| 1173 | 1173 | // remove malformed data |
| 1174 | - unset($valid_data[ $reg_url_link ]); |
|
| 1174 | + unset($valid_data[$reg_url_link]); |
|
| 1175 | 1175 | return false; |
| 1176 | 1176 | } |
| 1177 | 1177 | } // end of foreach ( $this->checkout->transaction->registrations() as $registration ) |
@@ -1217,10 +1217,10 @@ discard block |
||
| 1217 | 1217 | * @see https://events.codebasehq.com/projects/event-espresso/tickets/10477 |
| 1218 | 1218 | */ |
| 1219 | 1219 | $answer_cache_id = $this->checkout->reg_url_link |
| 1220 | - ? $form_input . '-' . $registration->reg_url_link() |
|
| 1220 | + ? $form_input.'-'.$registration->reg_url_link() |
|
| 1221 | 1221 | : $form_input; |
| 1222 | - $answer_is_obj = isset($this->_registration_answers[ $answer_cache_id ]) |
|
| 1223 | - && $this->_registration_answers[ $answer_cache_id ] instanceof EE_Answer; |
|
| 1222 | + $answer_is_obj = isset($this->_registration_answers[$answer_cache_id]) |
|
| 1223 | + && $this->_registration_answers[$answer_cache_id] instanceof EE_Answer; |
|
| 1224 | 1224 | // rename form_inputs if they are EE_Attendee properties |
| 1225 | 1225 | switch ((string) $form_input) { |
| 1226 | 1226 | case 'state': |
@@ -1236,28 +1236,28 @@ discard block |
||
| 1236 | 1236 | break; |
| 1237 | 1237 | |
| 1238 | 1238 | default: |
| 1239 | - $ATT_input = 'ATT_' . $form_input; |
|
| 1239 | + $ATT_input = 'ATT_'.$form_input; |
|
| 1240 | 1240 | // EEH_Debug_Tools::printr( $ATT_input, '$ATT_input', __FILE__, __LINE__ ); |
| 1241 | 1241 | $attendee_property = EEM_Attendee::instance()->has_field($ATT_input) ? true : false; |
| 1242 | - $form_input = $attendee_property ? 'ATT_' . $form_input : $form_input; |
|
| 1242 | + $form_input = $attendee_property ? 'ATT_'.$form_input : $form_input; |
|
| 1243 | 1243 | } |
| 1244 | 1244 | // EEH_Debug_Tools::printr( $answer_cache_id, '$answer_cache_id', __FILE__, __LINE__ ); |
| 1245 | 1245 | // EEH_Debug_Tools::printr( $attendee_property, '$attendee_property', __FILE__, __LINE__ ); |
| 1246 | 1246 | // EEH_Debug_Tools::printr( $answer_is_obj, '$answer_is_obj', __FILE__, __LINE__ ); |
| 1247 | 1247 | // if this form input has a corresponding attendee property |
| 1248 | 1248 | if ($attendee_property) { |
| 1249 | - $this->_attendee_data[ $registration->reg_url_link() ][ $form_input ] = $input_value; |
|
| 1249 | + $this->_attendee_data[$registration->reg_url_link()][$form_input] = $input_value; |
|
| 1250 | 1250 | if ($answer_is_obj) { |
| 1251 | 1251 | // and delete the corresponding answer since we won't be storing this data in that object |
| 1252 | - $registration->_remove_relation_to($this->_registration_answers[ $answer_cache_id ], 'Answer'); |
|
| 1253 | - $this->_registration_answers[ $answer_cache_id ]->delete_permanently(); |
|
| 1252 | + $registration->_remove_relation_to($this->_registration_answers[$answer_cache_id], 'Answer'); |
|
| 1253 | + $this->_registration_answers[$answer_cache_id]->delete_permanently(); |
|
| 1254 | 1254 | } |
| 1255 | 1255 | return true; |
| 1256 | 1256 | } |
| 1257 | 1257 | if ($answer_is_obj) { |
| 1258 | 1258 | // save this data to the answer object |
| 1259 | - $this->_registration_answers[ $answer_cache_id ]->set_value($input_value); |
|
| 1260 | - $result = $this->_registration_answers[ $answer_cache_id ]->save(); |
|
| 1259 | + $this->_registration_answers[$answer_cache_id]->set_value($input_value); |
|
| 1260 | + $result = $this->_registration_answers[$answer_cache_id]->save(); |
|
| 1261 | 1261 | return $result !== false; |
| 1262 | 1262 | } |
| 1263 | 1263 | foreach ($this->_registration_answers as $answer) { |
@@ -1284,7 +1284,7 @@ discard block |
||
| 1284 | 1284 | ) { |
| 1285 | 1285 | if (empty($input_value)) { |
| 1286 | 1286 | // if the form input isn't marked as being required, then just return |
| 1287 | - if (! isset($this->_required_questions[ $form_input ]) || ! $this->_required_questions[ $form_input ]) { |
|
| 1287 | + if ( ! isset($this->_required_questions[$form_input]) || ! $this->_required_questions[$form_input]) { |
|
| 1288 | 1288 | return true; |
| 1289 | 1289 | } |
| 1290 | 1290 | switch ($form_input) { |
@@ -1395,10 +1395,10 @@ discard block |
||
| 1395 | 1395 | $critical_attendee_details = array_merge($critical_attendee_details, $address_details); |
| 1396 | 1396 | } |
| 1397 | 1397 | foreach ($critical_attendee_details as $critical_attendee_detail) { |
| 1398 | - if (! isset($attendee_data[ $critical_attendee_detail ]) |
|
| 1399 | - || empty($attendee_data[ $critical_attendee_detail ]) |
|
| 1398 | + if ( ! isset($attendee_data[$critical_attendee_detail]) |
|
| 1399 | + || empty($attendee_data[$critical_attendee_detail]) |
|
| 1400 | 1400 | ) { |
| 1401 | - $attendee_data[ $critical_attendee_detail ] = $this->checkout->primary_attendee_obj->get( |
|
| 1401 | + $attendee_data[$critical_attendee_detail] = $this->checkout->primary_attendee_obj->get( |
|
| 1402 | 1402 | $critical_attendee_detail |
| 1403 | 1403 | ); |
| 1404 | 1404 | } |
@@ -13,7 +13,6 @@ |
||
| 13 | 13 | use EEH_HTML; |
| 14 | 14 | use EventEspresso\core\exceptions\InvalidFormSubmissionException; |
| 15 | 15 | use EventEspresso\core\libraries\form_sections\form_handlers\FormHandler; |
| 16 | -use EventEspresso\core\services\loaders\LoaderFactory; |
|
| 17 | 16 | |
| 18 | 17 | /** |
| 19 | 18 | * Class PrivacySettingsFormHandler |
@@ -28,112 +28,112 @@ |
||
| 28 | 28 | class PrivacySettingsFormHandler extends FormHandler |
| 29 | 29 | { |
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * @var EE_Config |
|
| 33 | - */ |
|
| 34 | - protected $config; |
|
| 31 | + /** |
|
| 32 | + * @var EE_Config |
|
| 33 | + */ |
|
| 34 | + protected $config; |
|
| 35 | 35 | |
| 36 | 36 | |
| 37 | - /** |
|
| 38 | - * PrivacySettingsFormHandler constructor. |
|
| 39 | - * |
|
| 40 | - * @param EE_Registry $registry |
|
| 41 | - * @param EE_Config $config |
|
| 42 | - */ |
|
| 43 | - public function __construct(EE_Registry $registry, EE_Config $config) |
|
| 44 | - { |
|
| 45 | - $this->config = $config; |
|
| 46 | - parent::__construct( |
|
| 47 | - esc_html__('Privacy Settings', 'event_espresso'), |
|
| 48 | - esc_html__('Privacy Settings', 'event_espresso'), |
|
| 49 | - 'privacy-settings', |
|
| 50 | - '', |
|
| 51 | - FormHandler::DO_NOT_SETUP_FORM, |
|
| 52 | - $registry |
|
| 53 | - ); |
|
| 54 | - } |
|
| 37 | + /** |
|
| 38 | + * PrivacySettingsFormHandler constructor. |
|
| 39 | + * |
|
| 40 | + * @param EE_Registry $registry |
|
| 41 | + * @param EE_Config $config |
|
| 42 | + */ |
|
| 43 | + public function __construct(EE_Registry $registry, EE_Config $config) |
|
| 44 | + { |
|
| 45 | + $this->config = $config; |
|
| 46 | + parent::__construct( |
|
| 47 | + esc_html__('Privacy Settings', 'event_espresso'), |
|
| 48 | + esc_html__('Privacy Settings', 'event_espresso'), |
|
| 49 | + 'privacy-settings', |
|
| 50 | + '', |
|
| 51 | + FormHandler::DO_NOT_SETUP_FORM, |
|
| 52 | + $registry |
|
| 53 | + ); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * creates and returns the actual form |
|
| 59 | - * |
|
| 60 | - * @return EE_Form_Section_Proper |
|
| 61 | - */ |
|
| 62 | - public function generate() |
|
| 63 | - { |
|
| 64 | - // this form makes use of the session for passing around invalid form submission data, so make sure its enabled |
|
| 65 | - add_filter('FHEE__EE_Session___save_session_to_db__abort_session_save', '__return_false'); |
|
| 66 | - /** |
|
| 67 | - * @var $reg_config EE_Registration_Config |
|
| 68 | - */ |
|
| 69 | - $reg_config = $this->config->registration; |
|
| 70 | - return new EE_Form_Section_Proper( |
|
| 71 | - array( |
|
| 72 | - 'name' => 'privacy_consent_settings', |
|
| 73 | - 'subsections' => array( |
|
| 74 | - 'privacy_consent_form_hdr' => new EE_Form_Section_HTML( |
|
| 75 | - EEH_HTML::h2(esc_html__('Privacy Policy Consent Settings', 'event_espresso')) |
|
| 76 | - ), |
|
| 77 | - 'enable' => new EE_Select_Reveal_Input( |
|
| 78 | - array( |
|
| 79 | - 'enable-privacy-consent' => esc_html__('Enabled', 'event_espresso'), |
|
| 80 | - 'disable' => esc_html__('Disabled', 'event_espresso'), |
|
| 81 | - ), |
|
| 82 | - array( |
|
| 83 | - 'default' => $reg_config->isConsentCheckboxEnabled() |
|
| 84 | - ? 'enable-privacy-consent' |
|
| 85 | - : 'disable', |
|
| 86 | - 'html_label_text' => esc_html__('Privacy Consent Checkbox', 'event_espresso'), |
|
| 87 | - 'html_help_text' => esc_html__( |
|
| 88 | - 'When enabled, a checkbox appears in the registration form requiring users to consent to your site\'s privacy policy.', |
|
| 89 | - 'event_espresso' |
|
| 90 | - ), |
|
| 91 | - ) |
|
| 92 | - ), |
|
| 93 | - 'enable-privacy-consent' => new EE_Form_Section_Proper( |
|
| 94 | - array( |
|
| 95 | - 'subsections' => array( |
|
| 96 | - 'consent_assertion' => new EE_Text_Area_Input( |
|
| 97 | - array( |
|
| 98 | - 'default' => $reg_config->getConsentCheckboxLabelText(), |
|
| 99 | - 'html_label_text' => esc_html__('Consent Text', 'event_espresso'), |
|
| 100 | - 'html_help_text' => esc_html__( |
|
| 101 | - 'Text describing what the registrant is consenting to by submitting their personal data in the registration form. To reset to default value, remove all this text and save.', |
|
| 102 | - 'event_espresso' |
|
| 103 | - ), |
|
| 104 | - 'validation_strategies' => array(new EE_Full_HTML_Validation_Strategy()), |
|
| 105 | - ) |
|
| 106 | - ), |
|
| 107 | - ), |
|
| 108 | - ) |
|
| 109 | - ), |
|
| 110 | - ), |
|
| 111 | - ) |
|
| 112 | - ); |
|
| 113 | - } |
|
| 57 | + /** |
|
| 58 | + * creates and returns the actual form |
|
| 59 | + * |
|
| 60 | + * @return EE_Form_Section_Proper |
|
| 61 | + */ |
|
| 62 | + public function generate() |
|
| 63 | + { |
|
| 64 | + // this form makes use of the session for passing around invalid form submission data, so make sure its enabled |
|
| 65 | + add_filter('FHEE__EE_Session___save_session_to_db__abort_session_save', '__return_false'); |
|
| 66 | + /** |
|
| 67 | + * @var $reg_config EE_Registration_Config |
|
| 68 | + */ |
|
| 69 | + $reg_config = $this->config->registration; |
|
| 70 | + return new EE_Form_Section_Proper( |
|
| 71 | + array( |
|
| 72 | + 'name' => 'privacy_consent_settings', |
|
| 73 | + 'subsections' => array( |
|
| 74 | + 'privacy_consent_form_hdr' => new EE_Form_Section_HTML( |
|
| 75 | + EEH_HTML::h2(esc_html__('Privacy Policy Consent Settings', 'event_espresso')) |
|
| 76 | + ), |
|
| 77 | + 'enable' => new EE_Select_Reveal_Input( |
|
| 78 | + array( |
|
| 79 | + 'enable-privacy-consent' => esc_html__('Enabled', 'event_espresso'), |
|
| 80 | + 'disable' => esc_html__('Disabled', 'event_espresso'), |
|
| 81 | + ), |
|
| 82 | + array( |
|
| 83 | + 'default' => $reg_config->isConsentCheckboxEnabled() |
|
| 84 | + ? 'enable-privacy-consent' |
|
| 85 | + : 'disable', |
|
| 86 | + 'html_label_text' => esc_html__('Privacy Consent Checkbox', 'event_espresso'), |
|
| 87 | + 'html_help_text' => esc_html__( |
|
| 88 | + 'When enabled, a checkbox appears in the registration form requiring users to consent to your site\'s privacy policy.', |
|
| 89 | + 'event_espresso' |
|
| 90 | + ), |
|
| 91 | + ) |
|
| 92 | + ), |
|
| 93 | + 'enable-privacy-consent' => new EE_Form_Section_Proper( |
|
| 94 | + array( |
|
| 95 | + 'subsections' => array( |
|
| 96 | + 'consent_assertion' => new EE_Text_Area_Input( |
|
| 97 | + array( |
|
| 98 | + 'default' => $reg_config->getConsentCheckboxLabelText(), |
|
| 99 | + 'html_label_text' => esc_html__('Consent Text', 'event_espresso'), |
|
| 100 | + 'html_help_text' => esc_html__( |
|
| 101 | + 'Text describing what the registrant is consenting to by submitting their personal data in the registration form. To reset to default value, remove all this text and save.', |
|
| 102 | + 'event_espresso' |
|
| 103 | + ), |
|
| 104 | + 'validation_strategies' => array(new EE_Full_HTML_Validation_Strategy()), |
|
| 105 | + ) |
|
| 106 | + ), |
|
| 107 | + ), |
|
| 108 | + ) |
|
| 109 | + ), |
|
| 110 | + ), |
|
| 111 | + ) |
|
| 112 | + ); |
|
| 113 | + } |
|
| 114 | 114 | |
| 115 | 115 | |
| 116 | - /** |
|
| 117 | - * After validating the form data, update the registration config |
|
| 118 | - * |
|
| 119 | - * @param array $submitted_form_data |
|
| 120 | - * @return bool |
|
| 121 | - */ |
|
| 122 | - public function process($submitted_form_data = array()) |
|
| 123 | - { |
|
| 124 | - try { |
|
| 125 | - $valid_data = parent::process($submitted_form_data); |
|
| 126 | - $reg_config = $this->config->registration; |
|
| 127 | - $reg_config->setConsentCheckboxEnabled($valid_data['enable'] === 'enable-privacy-consent'); |
|
| 128 | - $reg_config->setConsentCheckboxLabelText( |
|
| 129 | - $valid_data['enable-privacy-consent']['consent_assertion'] |
|
| 130 | - ); |
|
| 131 | - return $this->config->update_espresso_config(false, false); |
|
| 132 | - } catch (InvalidFormSubmissionException $e) { |
|
| 133 | - // the form was invalid, it should be re-displayed with errors |
|
| 134 | - return false; |
|
| 135 | - } |
|
| 136 | - } |
|
| 116 | + /** |
|
| 117 | + * After validating the form data, update the registration config |
|
| 118 | + * |
|
| 119 | + * @param array $submitted_form_data |
|
| 120 | + * @return bool |
|
| 121 | + */ |
|
| 122 | + public function process($submitted_form_data = array()) |
|
| 123 | + { |
|
| 124 | + try { |
|
| 125 | + $valid_data = parent::process($submitted_form_data); |
|
| 126 | + $reg_config = $this->config->registration; |
|
| 127 | + $reg_config->setConsentCheckboxEnabled($valid_data['enable'] === 'enable-privacy-consent'); |
|
| 128 | + $reg_config->setConsentCheckboxLabelText( |
|
| 129 | + $valid_data['enable-privacy-consent']['consent_assertion'] |
|
| 130 | + ); |
|
| 131 | + return $this->config->update_espresso_config(false, false); |
|
| 132 | + } catch (InvalidFormSubmissionException $e) { |
|
| 133 | + // the form was invalid, it should be re-displayed with errors |
|
| 134 | + return false; |
|
| 135 | + } |
|
| 136 | + } |
|
| 137 | 137 | } |
| 138 | 138 | // End of file PrivacySettingsFormHandler.php |
| 139 | 139 | // Location: EventEspresso\core\domain\services\admin\privacy\forms/PrivacySettingsFormHandler.php |
@@ -18,1462 +18,1462 @@ |
||
| 18 | 18 | { |
| 19 | 19 | |
| 20 | 20 | |
| 21 | - /** |
|
| 22 | - * _question_group |
|
| 23 | - * holds the specific question group object for the question group details screen |
|
| 24 | - * |
|
| 25 | - * @var object |
|
| 26 | - */ |
|
| 27 | - protected $_question_group; |
|
| 28 | - |
|
| 29 | - |
|
| 30 | - /** |
|
| 31 | - * Initialize basic properties. |
|
| 32 | - */ |
|
| 33 | - protected function _init_page_props() |
|
| 34 | - { |
|
| 35 | - $this->page_slug = GEN_SET_PG_SLUG; |
|
| 36 | - $this->page_label = GEN_SET_LABEL; |
|
| 37 | - $this->_admin_base_url = GEN_SET_ADMIN_URL; |
|
| 38 | - $this->_admin_base_path = GEN_SET_ADMIN; |
|
| 39 | - } |
|
| 40 | - |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * Set ajax hooks |
|
| 44 | - */ |
|
| 45 | - protected function _ajax_hooks() |
|
| 46 | - { |
|
| 47 | - add_action('wp_ajax_espresso_display_country_settings', array($this, 'display_country_settings')); |
|
| 48 | - add_action('wp_ajax_espresso_display_country_states', array($this, 'display_country_states')); |
|
| 49 | - add_action('wp_ajax_espresso_delete_state', array($this, 'delete_state'), 10, 3); |
|
| 50 | - add_action('wp_ajax_espresso_add_new_state', array($this, 'add_new_state')); |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - |
|
| 54 | - /** |
|
| 55 | - * More page properties initialization. |
|
| 56 | - */ |
|
| 57 | - protected function _define_page_props() |
|
| 58 | - { |
|
| 59 | - $this->_admin_page_title = GEN_SET_LABEL; |
|
| 60 | - $this->_labels = array( |
|
| 61 | - 'publishbox' => __('Update Settings', 'event_espresso'), |
|
| 62 | - ); |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - |
|
| 66 | - /** |
|
| 67 | - * Set page routes property. |
|
| 68 | - */ |
|
| 69 | - protected function _set_page_routes() |
|
| 70 | - { |
|
| 71 | - $this->_page_routes = array( |
|
| 72 | - |
|
| 73 | - 'critical_pages' => array( |
|
| 74 | - 'func' => '_espresso_page_settings', |
|
| 75 | - 'capability' => 'manage_options', |
|
| 76 | - ), |
|
| 77 | - 'update_espresso_page_settings' => array( |
|
| 78 | - 'func' => '_update_espresso_page_settings', |
|
| 79 | - 'capability' => 'manage_options', |
|
| 80 | - 'noheader' => true, |
|
| 81 | - ), |
|
| 82 | - 'default' => array( |
|
| 83 | - 'func' => '_your_organization_settings', |
|
| 84 | - 'capability' => 'manage_options', |
|
| 85 | - ), |
|
| 86 | - |
|
| 87 | - 'update_your_organization_settings' => array( |
|
| 88 | - 'func' => '_update_your_organization_settings', |
|
| 89 | - 'capability' => 'manage_options', |
|
| 90 | - 'noheader' => true, |
|
| 91 | - ), |
|
| 92 | - |
|
| 93 | - 'admin_option_settings' => array( |
|
| 94 | - 'func' => '_admin_option_settings', |
|
| 95 | - 'capability' => 'manage_options', |
|
| 96 | - ), |
|
| 97 | - |
|
| 98 | - 'update_admin_option_settings' => array( |
|
| 99 | - 'func' => '_update_admin_option_settings', |
|
| 100 | - 'capability' => 'manage_options', |
|
| 101 | - 'noheader' => true, |
|
| 102 | - ), |
|
| 103 | - |
|
| 104 | - 'country_settings' => array( |
|
| 105 | - 'func' => '_country_settings', |
|
| 106 | - 'capability' => 'manage_options', |
|
| 107 | - ), |
|
| 108 | - |
|
| 109 | - 'update_country_settings' => array( |
|
| 110 | - 'func' => '_update_country_settings', |
|
| 111 | - 'capability' => 'manage_options', |
|
| 112 | - 'noheader' => true, |
|
| 113 | - ), |
|
| 114 | - |
|
| 115 | - 'display_country_settings' => array( |
|
| 116 | - 'func' => 'display_country_settings', |
|
| 117 | - 'capability' => 'manage_options', |
|
| 118 | - 'noheader' => true, |
|
| 119 | - ), |
|
| 120 | - |
|
| 121 | - 'add_new_state' => array( |
|
| 122 | - 'func' => 'add_new_state', |
|
| 123 | - 'capability' => 'manage_options', |
|
| 124 | - 'noheader' => true, |
|
| 125 | - ), |
|
| 126 | - |
|
| 127 | - 'delete_state' => array( |
|
| 128 | - 'func' => 'delete_state', |
|
| 129 | - 'capability' => 'manage_options', |
|
| 130 | - 'noheader' => true, |
|
| 131 | - ), |
|
| 132 | - 'privacy_settings' => array( |
|
| 133 | - 'func' => 'privacySettings', |
|
| 134 | - 'capability' => 'manage_options', |
|
| 135 | - ), |
|
| 136 | - 'update_privacy_settings' => array( |
|
| 137 | - 'func' => 'updatePrivacySettings', |
|
| 138 | - 'capability' => 'manage_options', |
|
| 139 | - 'noheader' => true, |
|
| 140 | - 'headers_sent_route' => 'privacy_settings' |
|
| 141 | - ) |
|
| 142 | - ); |
|
| 143 | - } |
|
| 144 | - |
|
| 145 | - |
|
| 146 | - /** |
|
| 147 | - * Set page configuration property |
|
| 148 | - */ |
|
| 149 | - protected function _set_page_config() |
|
| 150 | - { |
|
| 151 | - $this->_page_config = array( |
|
| 152 | - 'critical_pages' => array( |
|
| 153 | - 'nav' => array( |
|
| 154 | - 'label' => __('Critical Pages', 'event_espresso'), |
|
| 155 | - 'order' => 50, |
|
| 156 | - ), |
|
| 157 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 158 | - 'help_tabs' => array( |
|
| 159 | - 'general_settings_critical_pages_help_tab' => array( |
|
| 160 | - 'title' => __('Critical Pages', 'event_espresso'), |
|
| 161 | - 'filename' => 'general_settings_critical_pages', |
|
| 162 | - ), |
|
| 163 | - ), |
|
| 164 | - 'help_tour' => array('Critical_Pages_Help_Tour'), |
|
| 165 | - 'require_nonce' => false, |
|
| 166 | - ), |
|
| 167 | - 'default' => array( |
|
| 168 | - 'nav' => array( |
|
| 169 | - 'label' => __('Your Organization', 'event_espresso'), |
|
| 170 | - 'order' => 20, |
|
| 171 | - ), |
|
| 172 | - 'help_tabs' => array( |
|
| 173 | - 'general_settings_your_organization_help_tab' => array( |
|
| 174 | - 'title' => __('Your Organization', 'event_espresso'), |
|
| 175 | - 'filename' => 'general_settings_your_organization', |
|
| 176 | - ), |
|
| 177 | - ), |
|
| 178 | - 'help_tour' => array('Your_Organization_Help_Tour'), |
|
| 179 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 180 | - 'require_nonce' => false, |
|
| 181 | - ), |
|
| 182 | - 'admin_option_settings' => array( |
|
| 183 | - 'nav' => array( |
|
| 184 | - 'label' => __('Admin Options', 'event_espresso'), |
|
| 185 | - 'order' => 60, |
|
| 186 | - ), |
|
| 187 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 188 | - 'help_tabs' => array( |
|
| 189 | - 'general_settings_admin_options_help_tab' => array( |
|
| 190 | - 'title' => __('Admin Options', 'event_espresso'), |
|
| 191 | - 'filename' => 'general_settings_admin_options', |
|
| 192 | - ), |
|
| 193 | - ), |
|
| 194 | - 'help_tour' => array('Admin_Options_Help_Tour'), |
|
| 195 | - 'require_nonce' => false, |
|
| 196 | - ), |
|
| 197 | - 'country_settings' => array( |
|
| 198 | - 'nav' => array( |
|
| 199 | - 'label' => __('Countries', 'event_espresso'), |
|
| 200 | - 'order' => 70, |
|
| 201 | - ), |
|
| 202 | - 'help_tabs' => array( |
|
| 203 | - 'general_settings_countries_help_tab' => array( |
|
| 204 | - 'title' => __('Countries', 'event_espresso'), |
|
| 205 | - 'filename' => 'general_settings_countries', |
|
| 206 | - ), |
|
| 207 | - ), |
|
| 208 | - 'help_tour' => array('Countries_Help_Tour'), |
|
| 209 | - 'require_nonce' => false, |
|
| 210 | - ), |
|
| 211 | - 'privacy_settings' => array( |
|
| 212 | - 'nav' => array( |
|
| 213 | - 'label' => esc_html__('Privacy', 'event_espresso'), |
|
| 214 | - 'order' => 80 |
|
| 215 | - ), |
|
| 216 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 217 | - 'require_nonce' => false |
|
| 218 | - ) |
|
| 219 | - ); |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - |
|
| 223 | - protected function _add_screen_options() |
|
| 224 | - { |
|
| 225 | - } |
|
| 226 | - |
|
| 227 | - protected function _add_feature_pointers() |
|
| 228 | - { |
|
| 229 | - } |
|
| 230 | - |
|
| 231 | - |
|
| 232 | - /** |
|
| 233 | - * Enqueue global scripts and styles for all routes in the General Settings Admin Pages. |
|
| 234 | - */ |
|
| 235 | - public function load_scripts_styles() |
|
| 236 | - { |
|
| 237 | - // styles |
|
| 238 | - wp_enqueue_style('espresso-ui-theme'); |
|
| 239 | - // scripts |
|
| 240 | - wp_enqueue_script('ee_admin_js'); |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - |
|
| 244 | - /** |
|
| 245 | - * Execute logic running on `admin_init` |
|
| 246 | - */ |
|
| 247 | - public function admin_init() |
|
| 248 | - { |
|
| 249 | - EE_Registry::$i18n_js_strings['invalid_server_response'] = __( |
|
| 250 | - 'An error occurred! Your request may have been processed, but a valid response from the server was not received. Please refresh the page and try again.', |
|
| 251 | - 'event_espresso' |
|
| 252 | - ); |
|
| 253 | - EE_Registry::$i18n_js_strings['error_occurred'] = __( |
|
| 254 | - 'An error occurred! Please refresh the page and try again.', |
|
| 255 | - 'event_espresso' |
|
| 256 | - ); |
|
| 257 | - EE_Registry::$i18n_js_strings['confirm_delete_state'] = __( |
|
| 258 | - 'Are you sure you want to delete this State / Province?', |
|
| 259 | - 'event_espresso' |
|
| 260 | - ); |
|
| 261 | - $protocol = isset($_SERVER['HTTPS']) ? 'https://' : 'http://'; |
|
| 262 | - EE_Registry::$i18n_js_strings['ajax_url'] = admin_url( |
|
| 263 | - 'admin-ajax.php?page=espresso_general_settings', |
|
| 264 | - $protocol |
|
| 265 | - ); |
|
| 266 | - } |
|
| 267 | - |
|
| 268 | - public function admin_notices() |
|
| 269 | - { |
|
| 270 | - } |
|
| 271 | - |
|
| 272 | - public function admin_footer_scripts() |
|
| 273 | - { |
|
| 274 | - } |
|
| 275 | - |
|
| 276 | - |
|
| 277 | - /** |
|
| 278 | - * Enqueue scripts and styles for the default route. |
|
| 279 | - */ |
|
| 280 | - public function load_scripts_styles_default() |
|
| 281 | - { |
|
| 282 | - // styles |
|
| 283 | - wp_enqueue_style('thickbox'); |
|
| 284 | - // scripts |
|
| 285 | - wp_enqueue_script('media-upload'); |
|
| 286 | - wp_enqueue_script('thickbox'); |
|
| 287 | - wp_register_script( |
|
| 288 | - 'organization_settings', |
|
| 289 | - GEN_SET_ASSETS_URL . 'your_organization_settings.js', |
|
| 290 | - array('jquery', 'media-upload', 'thickbox'), |
|
| 291 | - EVENT_ESPRESSO_VERSION, |
|
| 292 | - true |
|
| 293 | - ); |
|
| 294 | - wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 295 | - wp_enqueue_script('organization_settings'); |
|
| 296 | - wp_enqueue_style('organization-css'); |
|
| 297 | - $confirm_image_delete = array( |
|
| 298 | - 'text' => __( |
|
| 299 | - 'Do you really want to delete this image? Please remember to save your settings to complete the removal.', |
|
| 300 | - 'event_espresso' |
|
| 301 | - ), |
|
| 302 | - ); |
|
| 303 | - wp_localize_script('organization_settings', 'confirm_image_delete', $confirm_image_delete); |
|
| 304 | - } |
|
| 305 | - |
|
| 306 | - |
|
| 307 | - /** |
|
| 308 | - * Enqueue scripts and styles for the country settings route. |
|
| 309 | - */ |
|
| 310 | - public function load_scripts_styles_country_settings() |
|
| 311 | - { |
|
| 312 | - // scripts |
|
| 313 | - wp_register_script( |
|
| 314 | - 'gen_settings_countries', |
|
| 315 | - GEN_SET_ASSETS_URL . 'gen_settings_countries.js', |
|
| 316 | - array('ee_admin_js'), |
|
| 317 | - EVENT_ESPRESSO_VERSION, |
|
| 318 | - true |
|
| 319 | - ); |
|
| 320 | - wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 321 | - wp_enqueue_script('gen_settings_countries'); |
|
| 322 | - wp_enqueue_style('organization-css'); |
|
| 323 | - } |
|
| 324 | - |
|
| 325 | - |
|
| 326 | - /************* Espresso Pages *************/ |
|
| 327 | - /** |
|
| 328 | - * _espresso_page_settings |
|
| 329 | - * |
|
| 330 | - * @throws \EE_Error |
|
| 331 | - */ |
|
| 332 | - protected function _espresso_page_settings() |
|
| 333 | - { |
|
| 334 | - // Check to make sure all of the main pages are setup properly, |
|
| 335 | - // if not create the default pages and display an admin notice |
|
| 336 | - EEH_Activation::verify_default_pages_exist(); |
|
| 337 | - $this->_transient_garbage_collection(); |
|
| 338 | - $this->_template_args['values'] = $this->_yes_no_values; |
|
| 339 | - $this->_template_args['reg_page_id'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 340 | - ? EE_Registry::instance()->CFG->core->reg_page_id |
|
| 341 | - : null; |
|
| 342 | - $this->_template_args['reg_page_obj'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 343 | - ? get_page(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 344 | - : false; |
|
| 345 | - $this->_template_args['txn_page_id'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 346 | - ? EE_Registry::instance()->CFG->core->txn_page_id |
|
| 347 | - : null; |
|
| 348 | - $this->_template_args['txn_page_obj'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 349 | - ? get_page(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 350 | - : false; |
|
| 351 | - $this->_template_args['thank_you_page_id'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 352 | - ? EE_Registry::instance()->CFG->core->thank_you_page_id |
|
| 353 | - : null; |
|
| 354 | - $this->_template_args['thank_you_page_obj'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 355 | - ? get_page(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 356 | - : false; |
|
| 357 | - $this->_template_args['cancel_page_id'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 358 | - ? EE_Registry::instance()->CFG->core->cancel_page_id |
|
| 359 | - : null; |
|
| 360 | - $this->_template_args['cancel_page_obj'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 361 | - ? get_page(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 362 | - : false; |
|
| 363 | - $this->_set_add_edit_form_tags('update_espresso_page_settings'); |
|
| 364 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 365 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 366 | - GEN_SET_TEMPLATE_PATH . 'espresso_page_settings.template.php', |
|
| 367 | - $this->_template_args, |
|
| 368 | - true |
|
| 369 | - ); |
|
| 370 | - $this->display_admin_page_with_sidebar(); |
|
| 371 | - } |
|
| 372 | - |
|
| 373 | - |
|
| 374 | - /** |
|
| 375 | - * Handler for updating espresso page settings. |
|
| 376 | - */ |
|
| 377 | - protected function _update_espresso_page_settings() |
|
| 378 | - { |
|
| 379 | - // capture incoming request data && set page IDs |
|
| 380 | - EE_Registry::instance()->CFG->core->reg_page_id = isset($this->_req_data['reg_page_id']) |
|
| 381 | - ? absint($this->_req_data['reg_page_id']) |
|
| 382 | - : EE_Registry::instance()->CFG->core->reg_page_id; |
|
| 383 | - EE_Registry::instance()->CFG->core->txn_page_id = isset($this->_req_data['txn_page_id']) |
|
| 384 | - ? absint($this->_req_data['txn_page_id']) |
|
| 385 | - : EE_Registry::instance()->CFG->core->txn_page_id; |
|
| 386 | - EE_Registry::instance()->CFG->core->thank_you_page_id = isset($this->_req_data['thank_you_page_id']) |
|
| 387 | - ? absint($this->_req_data['thank_you_page_id']) |
|
| 388 | - : EE_Registry::instance()->CFG->core->thank_you_page_id; |
|
| 389 | - EE_Registry::instance()->CFG->core->cancel_page_id = isset($this->_req_data['cancel_page_id']) |
|
| 390 | - ? absint($this->_req_data['cancel_page_id']) |
|
| 391 | - : EE_Registry::instance()->CFG->core->cancel_page_id; |
|
| 392 | - |
|
| 393 | - EE_Registry::instance()->CFG->core = apply_filters( |
|
| 394 | - 'FHEE__General_Settings_Admin_Page___update_espresso_page_settings__CFG_core', |
|
| 395 | - EE_Registry::instance()->CFG->core, |
|
| 396 | - $this->_req_data |
|
| 397 | - ); |
|
| 398 | - $what = __('Critical Pages & Shortcodes', 'event_espresso'); |
|
| 399 | - $this->_redirect_after_action( |
|
| 400 | - $this->_update_espresso_configuration( |
|
| 401 | - $what, |
|
| 402 | - EE_Registry::instance()->CFG->core, |
|
| 403 | - __FILE__, |
|
| 404 | - __FUNCTION__, |
|
| 405 | - __LINE__ |
|
| 406 | - ), |
|
| 407 | - $what, |
|
| 408 | - '', |
|
| 409 | - array( |
|
| 410 | - 'action' => 'critical_pages', |
|
| 411 | - ), |
|
| 412 | - true |
|
| 413 | - ); |
|
| 414 | - } |
|
| 415 | - |
|
| 416 | - |
|
| 417 | - /************* Your Organization *************/ |
|
| 418 | - |
|
| 419 | - |
|
| 420 | - /** |
|
| 421 | - * Output for the Your Organization settings route. |
|
| 422 | - * |
|
| 423 | - * @throws DomainException |
|
| 424 | - * @throws EE_Error |
|
| 425 | - */ |
|
| 426 | - protected function _your_organization_settings() |
|
| 427 | - { |
|
| 428 | - |
|
| 429 | - $this->_template_args['site_license_key'] = isset( |
|
| 430 | - EE_Registry::instance()->NET_CFG->core->site_license_key |
|
| 431 | - ) |
|
| 432 | - ? EE_Registry::instance()->NET_CFG->core->get_pretty('site_license_key') |
|
| 433 | - : ''; |
|
| 434 | - $this->_template_args['organization_name'] = isset(EE_Registry::instance()->CFG->organization->name) |
|
| 435 | - ? EE_Registry::instance()->CFG->organization->get_pretty('name') |
|
| 436 | - : ''; |
|
| 437 | - $this->_template_args['organization_address_1'] = isset(EE_Registry::instance()->CFG->organization->address_1) |
|
| 438 | - ? EE_Registry::instance()->CFG->organization->get_pretty('address_1') |
|
| 439 | - : ''; |
|
| 440 | - $this->_template_args['organization_address_2'] = isset(EE_Registry::instance()->CFG->organization->address_2) |
|
| 441 | - ? EE_Registry::instance()->CFG->organization->get_pretty('address_2') |
|
| 442 | - : ''; |
|
| 443 | - $this->_template_args['organization_city'] = isset(EE_Registry::instance()->CFG->organization->city) |
|
| 444 | - ? EE_Registry::instance()->CFG->organization->get_pretty('city') |
|
| 445 | - : ''; |
|
| 446 | - $this->_template_args['organization_zip'] = isset(EE_Registry::instance()->CFG->organization->zip) |
|
| 447 | - ? EE_Registry::instance()->CFG->organization->get_pretty('zip') |
|
| 448 | - : ''; |
|
| 449 | - $this->_template_args['organization_email'] = isset(EE_Registry::instance()->CFG->organization->email) |
|
| 450 | - ? EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 451 | - : ''; |
|
| 452 | - $this->_template_args['organization_phone'] = isset(EE_Registry::instance()->CFG->organization->phone) |
|
| 453 | - ? EE_Registry::instance()->CFG->organization->get_pretty('phone') |
|
| 454 | - : ''; |
|
| 455 | - $this->_template_args['organization_vat'] = isset(EE_Registry::instance()->CFG->organization->vat) |
|
| 456 | - ? EE_Registry::instance()->CFG->organization->get_pretty('vat') |
|
| 457 | - : ''; |
|
| 458 | - $this->_template_args['currency_sign'] = isset(EE_Registry::instance()->CFG->currency->sign) |
|
| 459 | - ? EE_Registry::instance()->CFG->currency->get_pretty('sign') |
|
| 460 | - : '$'; |
|
| 461 | - $this->_template_args['organization_logo_url'] = isset(EE_Registry::instance()->CFG->organization->logo_url) |
|
| 462 | - ? EE_Registry::instance()->CFG->organization->get_pretty('logo_url') |
|
| 463 | - : false; |
|
| 464 | - $this->_template_args['organization_facebook'] = isset(EE_Registry::instance()->CFG->organization->facebook) |
|
| 465 | - ? EE_Registry::instance()->CFG->organization->get_pretty('facebook') |
|
| 466 | - : ''; |
|
| 467 | - $this->_template_args['organization_twitter'] = isset(EE_Registry::instance()->CFG->organization->twitter) |
|
| 468 | - ? EE_Registry::instance()->CFG->organization->get_pretty('twitter') |
|
| 469 | - : ''; |
|
| 470 | - $this->_template_args['organization_linkedin'] = isset(EE_Registry::instance()->CFG->organization->linkedin) |
|
| 471 | - ? EE_Registry::instance()->CFG->organization->get_pretty('linkedin') |
|
| 472 | - : ''; |
|
| 473 | - $this->_template_args['organization_pinterest'] = isset(EE_Registry::instance()->CFG->organization->pinterest) |
|
| 474 | - ? EE_Registry::instance()->CFG->organization->get_pretty('pinterest') |
|
| 475 | - : ''; |
|
| 476 | - $this->_template_args['organization_google'] = isset(EE_Registry::instance()->CFG->organization->google) |
|
| 477 | - ? EE_Registry::instance()->CFG->organization->get_pretty('google') |
|
| 478 | - : ''; |
|
| 479 | - $this->_template_args['organization_instagram'] = isset(EE_Registry::instance()->CFG->organization->instagram) |
|
| 480 | - ? EE_Registry::instance()->CFG->organization->get_pretty('instagram') |
|
| 481 | - : ''; |
|
| 482 | - // UXIP settings |
|
| 483 | - $this->_template_args['ee_ueip_optin'] = isset(EE_Registry::instance()->CFG->core->ee_ueip_optin) |
|
| 484 | - ? EE_Registry::instance()->CFG->core->get_pretty('ee_ueip_optin') |
|
| 485 | - : 'yes'; |
|
| 486 | - |
|
| 487 | - $STA_ID = isset(EE_Registry::instance()->CFG->organization->STA_ID) |
|
| 488 | - ? EE_Registry::instance()->CFG->organization->STA_ID |
|
| 489 | - : 4; |
|
| 490 | - $this->_template_args['states'] = new EE_Question_Form_Input( |
|
| 491 | - EE_Question::new_instance( |
|
| 492 | - array( |
|
| 493 | - 'QST_ID' => 0, |
|
| 494 | - 'QST_display_text' => __('State/Province', 'event_espresso'), |
|
| 495 | - 'QST_system' => 'admin-state', |
|
| 496 | - ) |
|
| 497 | - ), |
|
| 498 | - EE_Answer::new_instance( |
|
| 499 | - array( |
|
| 500 | - 'ANS_ID' => 0, |
|
| 501 | - 'ANS_value' => $STA_ID, |
|
| 502 | - ) |
|
| 503 | - ), |
|
| 504 | - array( |
|
| 505 | - 'input_id' => 'organization_state', |
|
| 506 | - 'input_name' => 'organization_state', |
|
| 507 | - 'input_prefix' => '', |
|
| 508 | - 'append_qstn_id' => false, |
|
| 509 | - ) |
|
| 510 | - ); |
|
| 511 | - |
|
| 512 | - $CNT_ISO = isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 513 | - ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 514 | - : 'US'; |
|
| 515 | - $this->_template_args['countries'] = new EE_Question_Form_Input( |
|
| 516 | - EE_Question::new_instance( |
|
| 517 | - array( |
|
| 518 | - 'QST_ID' => 0, |
|
| 519 | - 'QST_display_text' => __('Country', 'event_espresso'), |
|
| 520 | - 'QST_system' => 'admin-country', |
|
| 521 | - ) |
|
| 522 | - ), |
|
| 523 | - EE_Answer::new_instance( |
|
| 524 | - array( |
|
| 525 | - 'ANS_ID' => 0, |
|
| 526 | - 'ANS_value' => $CNT_ISO, |
|
| 527 | - ) |
|
| 528 | - ), |
|
| 529 | - array( |
|
| 530 | - 'input_id' => 'organization_country', |
|
| 531 | - 'input_name' => 'organization_country', |
|
| 532 | - 'input_prefix' => '', |
|
| 533 | - 'append_qstn_id' => false, |
|
| 534 | - ) |
|
| 535 | - ); |
|
| 536 | - |
|
| 537 | - add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 538 | - add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 539 | - |
|
| 540 | - // PUE verification stuff |
|
| 541 | - $ver_option_key = 'puvererr_' . basename(EE_PLUGIN_BASENAME); |
|
| 542 | - $verify_fail = get_option($ver_option_key); |
|
| 543 | - $this->_template_args['site_license_key_verified'] = $verify_fail |
|
| 544 | - || ! empty($verify_fail) |
|
| 545 | - || (empty($this->_template_args['site_license_key']) |
|
| 546 | - && empty($verify_fail) |
|
| 547 | - ) |
|
| 548 | - ? '<span class="dashicons dashicons-admin-network ee-icon-color-ee-red ee-icon-size-20"></span>' |
|
| 549 | - : '<span class="dashicons dashicons-admin-network ee-icon-color-ee-green ee-icon-size-20"></span>'; |
|
| 550 | - |
|
| 551 | - $this->_set_add_edit_form_tags('update_your_organization_settings'); |
|
| 552 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 553 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 554 | - GEN_SET_TEMPLATE_PATH . 'your_organization_settings.template.php', |
|
| 555 | - $this->_template_args, |
|
| 556 | - true |
|
| 557 | - ); |
|
| 558 | - |
|
| 559 | - $this->display_admin_page_with_sidebar(); |
|
| 560 | - } |
|
| 561 | - |
|
| 562 | - |
|
| 563 | - /** |
|
| 564 | - * Handler for updating organziation settings. |
|
| 565 | - */ |
|
| 566 | - protected function _update_your_organization_settings() |
|
| 567 | - { |
|
| 568 | - if (is_main_site()) { |
|
| 569 | - EE_Registry::instance()->NET_CFG->core->site_license_key = isset($this->_req_data['site_license_key']) |
|
| 570 | - ? sanitize_text_field($this->_req_data['site_license_key']) |
|
| 571 | - : EE_Registry::instance()->NET_CFG->core->site_license_key; |
|
| 572 | - } |
|
| 573 | - EE_Registry::instance()->CFG->organization->name = isset($this->_req_data['organization_name']) |
|
| 574 | - ? sanitize_text_field($this->_req_data['organization_name']) |
|
| 575 | - : EE_Registry::instance()->CFG->organization->name; |
|
| 576 | - EE_Registry::instance()->CFG->organization->address_1 = isset($this->_req_data['organization_address_1']) |
|
| 577 | - ? sanitize_text_field($this->_req_data['organization_address_1']) |
|
| 578 | - : EE_Registry::instance()->CFG->organization->address_1; |
|
| 579 | - EE_Registry::instance()->CFG->organization->address_2 = isset($this->_req_data['organization_address_2']) |
|
| 580 | - ? sanitize_text_field($this->_req_data['organization_address_2']) |
|
| 581 | - : EE_Registry::instance()->CFG->organization->address_2; |
|
| 582 | - EE_Registry::instance()->CFG->organization->city = isset($this->_req_data['organization_city']) |
|
| 583 | - ? sanitize_text_field($this->_req_data['organization_city']) |
|
| 584 | - : EE_Registry::instance()->CFG->organization->city; |
|
| 585 | - EE_Registry::instance()->CFG->organization->STA_ID = isset($this->_req_data['organization_state']) |
|
| 586 | - ? absint($this->_req_data['organization_state']) |
|
| 587 | - : EE_Registry::instance()->CFG->organization->STA_ID; |
|
| 588 | - EE_Registry::instance()->CFG->organization->CNT_ISO = isset($this->_req_data['organization_country']) |
|
| 589 | - ? sanitize_text_field($this->_req_data['organization_country']) |
|
| 590 | - : EE_Registry::instance()->CFG->organization->CNT_ISO; |
|
| 591 | - EE_Registry::instance()->CFG->organization->zip = isset($this->_req_data['organization_zip']) |
|
| 592 | - ? sanitize_text_field($this->_req_data['organization_zip']) |
|
| 593 | - : EE_Registry::instance()->CFG->organization->zip; |
|
| 594 | - EE_Registry::instance()->CFG->organization->email = isset($this->_req_data['organization_email']) |
|
| 595 | - ? sanitize_email($this->_req_data['organization_email']) |
|
| 596 | - : EE_Registry::instance()->CFG->organization->email; |
|
| 597 | - EE_Registry::instance()->CFG->organization->vat = isset($this->_req_data['organization_vat']) |
|
| 598 | - ? sanitize_text_field($this->_req_data['organization_vat']) |
|
| 599 | - : EE_Registry::instance()->CFG->organization->vat; |
|
| 600 | - EE_Registry::instance()->CFG->organization->phone = isset($this->_req_data['organization_phone']) |
|
| 601 | - ? sanitize_text_field($this->_req_data['organization_phone']) |
|
| 602 | - : EE_Registry::instance()->CFG->organization->phone; |
|
| 603 | - EE_Registry::instance()->CFG->organization->logo_url = isset($this->_req_data['organization_logo_url']) |
|
| 604 | - ? esc_url_raw($this->_req_data['organization_logo_url']) |
|
| 605 | - : EE_Registry::instance()->CFG->organization->logo_url; |
|
| 606 | - EE_Registry::instance()->CFG->organization->facebook = isset($this->_req_data['organization_facebook']) |
|
| 607 | - ? esc_url_raw($this->_req_data['organization_facebook']) |
|
| 608 | - : EE_Registry::instance()->CFG->organization->facebook; |
|
| 609 | - EE_Registry::instance()->CFG->organization->twitter = isset($this->_req_data['organization_twitter']) |
|
| 610 | - ? esc_url_raw($this->_req_data['organization_twitter']) |
|
| 611 | - : EE_Registry::instance()->CFG->organization->twitter; |
|
| 612 | - EE_Registry::instance()->CFG->organization->linkedin = isset($this->_req_data['organization_linkedin']) |
|
| 613 | - ? esc_url_raw($this->_req_data['organization_linkedin']) |
|
| 614 | - : EE_Registry::instance()->CFG->organization->linkedin; |
|
| 615 | - EE_Registry::instance()->CFG->organization->pinterest = isset($this->_req_data['organization_pinterest']) |
|
| 616 | - ? esc_url_raw($this->_req_data['organization_pinterest']) |
|
| 617 | - : EE_Registry::instance()->CFG->organization->pinterest; |
|
| 618 | - EE_Registry::instance()->CFG->organization->google = isset($this->_req_data['organization_google']) |
|
| 619 | - ? esc_url_raw($this->_req_data['organization_google']) |
|
| 620 | - : EE_Registry::instance()->CFG->organization->google; |
|
| 621 | - EE_Registry::instance()->CFG->organization->instagram = isset($this->_req_data['organization_instagram']) |
|
| 622 | - ? esc_url_raw($this->_req_data['organization_instagram']) |
|
| 623 | - : EE_Registry::instance()->CFG->organization->instagram; |
|
| 624 | - EE_Registry::instance()->CFG->core->ee_ueip_optin = isset($this->_req_data['ueip_optin']) |
|
| 625 | - && ! empty($this->_req_data['ueip_optin']) |
|
| 626 | - ? filter_var($this->_req_data['ueip_optin'], FILTER_VALIDATE_BOOLEAN) |
|
| 627 | - : EE_Registry::instance()->CFG->core->ee_ueip_optin; |
|
| 628 | - |
|
| 629 | - EE_Registry::instance()->CFG->currency = new EE_Currency_Config( |
|
| 630 | - EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 631 | - ); |
|
| 632 | - |
|
| 633 | - EE_Registry::instance()->CFG = apply_filters( |
|
| 634 | - 'FHEE__General_Settings_Admin_Page___update_your_organization_settings__CFG', |
|
| 635 | - EE_Registry::instance()->CFG |
|
| 636 | - ); |
|
| 637 | - |
|
| 638 | - $what = 'Your Organization Settings'; |
|
| 639 | - $success = $this->_update_espresso_configuration( |
|
| 640 | - $what, |
|
| 641 | - EE_Registry::instance()->CFG, |
|
| 642 | - __FILE__, |
|
| 643 | - __FUNCTION__, |
|
| 644 | - __LINE__ |
|
| 645 | - ); |
|
| 646 | - |
|
| 647 | - $this->_redirect_after_action($success, $what, 'updated', array('action' => 'default')); |
|
| 648 | - } |
|
| 649 | - |
|
| 650 | - |
|
| 651 | - |
|
| 652 | - /************* Admin Options *************/ |
|
| 653 | - |
|
| 654 | - |
|
| 655 | - /** |
|
| 656 | - * _admin_option_settings |
|
| 657 | - * |
|
| 658 | - * @throws \EE_Error |
|
| 659 | - * @throws \LogicException |
|
| 660 | - */ |
|
| 661 | - protected function _admin_option_settings() |
|
| 662 | - { |
|
| 663 | - $this->_template_args['admin_page_content'] = ''; |
|
| 664 | - try { |
|
| 665 | - $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 666 | - // still need this for the old school form in Extend_General_Settings_Admin_Page |
|
| 667 | - $this->_template_args['values'] = $this->_yes_no_values; |
|
| 668 | - // also need to account for the do_action that was in the old template |
|
| 669 | - $admin_options_settings_form->setTemplateArgs($this->_template_args); |
|
| 670 | - $this->_template_args['admin_page_content'] = $admin_options_settings_form->display(); |
|
| 671 | - } catch (Exception $e) { |
|
| 672 | - EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 673 | - } |
|
| 674 | - $this->_set_add_edit_form_tags('update_admin_option_settings'); |
|
| 675 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 676 | - $this->display_admin_page_with_sidebar(); |
|
| 677 | - } |
|
| 678 | - |
|
| 679 | - |
|
| 680 | - /** |
|
| 681 | - * _update_admin_option_settings |
|
| 682 | - * |
|
| 683 | - * @throws \EE_Error |
|
| 684 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 685 | - * @throws \EventEspresso\core\exceptions\InvalidFormSubmissionException |
|
| 686 | - * @throws \InvalidArgumentException |
|
| 687 | - * @throws \LogicException |
|
| 688 | - */ |
|
| 689 | - protected function _update_admin_option_settings() |
|
| 690 | - { |
|
| 691 | - try { |
|
| 692 | - $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 693 | - $admin_options_settings_form->process($this->_req_data[ $admin_options_settings_form->slug() ]); |
|
| 694 | - EE_Registry::instance()->CFG->admin = apply_filters( |
|
| 695 | - 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__CFG_admin', |
|
| 696 | - EE_Registry::instance()->CFG->admin |
|
| 697 | - ); |
|
| 698 | - } catch (Exception $e) { |
|
| 699 | - EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 700 | - } |
|
| 701 | - $this->_redirect_after_action( |
|
| 702 | - apply_filters( |
|
| 703 | - 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__success', |
|
| 704 | - $this->_update_espresso_configuration( |
|
| 705 | - 'Admin Options', |
|
| 706 | - EE_Registry::instance()->CFG->admin, |
|
| 707 | - __FILE__, |
|
| 708 | - __FUNCTION__, |
|
| 709 | - __LINE__ |
|
| 710 | - ) |
|
| 711 | - ), |
|
| 712 | - 'Admin Options', |
|
| 713 | - 'updated', |
|
| 714 | - array('action' => 'admin_option_settings') |
|
| 715 | - ); |
|
| 716 | - } |
|
| 717 | - |
|
| 718 | - |
|
| 719 | - /************* Countries *************/ |
|
| 720 | - |
|
| 721 | - |
|
| 722 | - /** |
|
| 723 | - * Output Country Settings view. |
|
| 724 | - * |
|
| 725 | - * @throws DomainException |
|
| 726 | - * @throws EE_Error |
|
| 727 | - */ |
|
| 728 | - protected function _country_settings() |
|
| 729 | - { |
|
| 730 | - $CNT_ISO = isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 731 | - ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 732 | - : 'US'; |
|
| 733 | - $CNT_ISO = isset($this->_req_data['country']) |
|
| 734 | - ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 735 | - : $CNT_ISO; |
|
| 736 | - |
|
| 737 | - // load field generator helper |
|
| 738 | - |
|
| 739 | - $this->_template_args['values'] = $this->_yes_no_values; |
|
| 740 | - |
|
| 741 | - $this->_template_args['countries'] = new EE_Question_Form_Input( |
|
| 742 | - EE_Question::new_instance( |
|
| 743 | - array( |
|
| 744 | - 'QST_ID' => 0, |
|
| 745 | - 'QST_display_text' => __('Select Country', 'event_espresso'), |
|
| 746 | - 'QST_system' => 'admin-country', |
|
| 747 | - ) |
|
| 748 | - ), |
|
| 749 | - EE_Answer::new_instance( |
|
| 750 | - array( |
|
| 751 | - 'ANS_ID' => 0, |
|
| 752 | - 'ANS_value' => $CNT_ISO, |
|
| 753 | - ) |
|
| 754 | - ), |
|
| 755 | - array( |
|
| 756 | - 'input_id' => 'country', |
|
| 757 | - 'input_name' => 'country', |
|
| 758 | - 'input_prefix' => '', |
|
| 759 | - 'append_qstn_id' => false, |
|
| 760 | - ) |
|
| 761 | - ); |
|
| 762 | - |
|
| 763 | - add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 764 | - add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 765 | - $this->_template_args['country_details_settings'] = $this->display_country_settings(); |
|
| 766 | - $this->_template_args['country_states_settings'] = $this->display_country_states(); |
|
| 767 | - |
|
| 768 | - $this->_set_add_edit_form_tags('update_country_settings'); |
|
| 769 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 770 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 771 | - GEN_SET_TEMPLATE_PATH . 'countries_settings.template.php', |
|
| 772 | - $this->_template_args, |
|
| 773 | - true |
|
| 774 | - ); |
|
| 775 | - $this->display_admin_page_with_no_sidebar(); |
|
| 776 | - } |
|
| 777 | - |
|
| 778 | - |
|
| 779 | - /** |
|
| 780 | - * display_country_settings |
|
| 781 | - * |
|
| 782 | - * @access public |
|
| 783 | - * @param string $CNT_ISO |
|
| 784 | - * @return mixed string | array |
|
| 785 | - * @throws DomainException |
|
| 786 | - */ |
|
| 787 | - public function display_country_settings($CNT_ISO = '') |
|
| 788 | - { |
|
| 789 | - |
|
| 790 | - $CNT_ISO = isset($this->_req_data['country']) |
|
| 791 | - ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 792 | - : $CNT_ISO; |
|
| 793 | - if (! $CNT_ISO) { |
|
| 794 | - return ''; |
|
| 795 | - } |
|
| 796 | - |
|
| 797 | - // for ajax |
|
| 798 | - remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 799 | - remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 800 | - add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 801 | - add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 802 | - $country = EEM_Country::instance()->get_one_by_ID($CNT_ISO); |
|
| 803 | - |
|
| 804 | - $country_input_types = array( |
|
| 805 | - 'CNT_active' => array( |
|
| 806 | - 'type' => 'RADIO_BTN', |
|
| 807 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 808 | - 'class' => '', |
|
| 809 | - 'options' => $this->_yes_no_values, |
|
| 810 | - 'use_desc_4_label' => true, |
|
| 811 | - ), |
|
| 812 | - 'CNT_ISO' => array( |
|
| 813 | - 'type' => 'TEXT', |
|
| 814 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 815 | - 'class' => 'small-text', |
|
| 816 | - ), |
|
| 817 | - 'CNT_ISO3' => array( |
|
| 818 | - 'type' => 'TEXT', |
|
| 819 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 820 | - 'class' => 'small-text', |
|
| 821 | - ), |
|
| 822 | - 'RGN_ID' => array( |
|
| 823 | - 'type' => 'TEXT', |
|
| 824 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 825 | - 'class' => 'small-text', |
|
| 826 | - ), |
|
| 827 | - 'CNT_name' => array( |
|
| 828 | - 'type' => 'TEXT', |
|
| 829 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 830 | - 'class' => 'regular-text', |
|
| 831 | - ), |
|
| 832 | - 'CNT_cur_code' => array( |
|
| 833 | - 'type' => 'TEXT', |
|
| 834 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 835 | - 'class' => 'small-text', |
|
| 836 | - ), |
|
| 837 | - 'CNT_cur_single' => array( |
|
| 838 | - 'type' => 'TEXT', |
|
| 839 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 840 | - 'class' => 'medium-text', |
|
| 841 | - ), |
|
| 842 | - 'CNT_cur_plural' => array( |
|
| 843 | - 'type' => 'TEXT', |
|
| 844 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 845 | - 'class' => 'medium-text', |
|
| 846 | - ), |
|
| 847 | - 'CNT_cur_sign' => array( |
|
| 848 | - 'type' => 'TEXT', |
|
| 849 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 850 | - 'class' => 'small-text', |
|
| 851 | - 'htmlentities' => false, |
|
| 852 | - ), |
|
| 853 | - 'CNT_cur_sign_b4' => array( |
|
| 854 | - 'type' => 'RADIO_BTN', |
|
| 855 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 856 | - 'class' => '', |
|
| 857 | - 'options' => $this->_yes_no_values, |
|
| 858 | - 'use_desc_4_label' => true, |
|
| 859 | - ), |
|
| 860 | - 'CNT_cur_dec_plc' => array( |
|
| 861 | - 'type' => 'RADIO_BTN', |
|
| 862 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 863 | - 'class' => '', |
|
| 864 | - 'options' => array( |
|
| 865 | - array('id' => 0, 'text' => ''), |
|
| 866 | - array('id' => 1, 'text' => ''), |
|
| 867 | - array('id' => 2, 'text' => ''), |
|
| 868 | - array('id' => 3, 'text' => ''), |
|
| 869 | - ), |
|
| 870 | - ), |
|
| 871 | - 'CNT_cur_dec_mrk' => array( |
|
| 872 | - 'type' => 'RADIO_BTN', |
|
| 873 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 874 | - 'class' => '', |
|
| 875 | - 'options' => array( |
|
| 876 | - array( |
|
| 877 | - 'id' => ',', |
|
| 878 | - 'text' => __(', (comma)', 'event_espresso'), |
|
| 879 | - ), |
|
| 880 | - array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 881 | - ), |
|
| 882 | - 'use_desc_4_label' => true, |
|
| 883 | - ), |
|
| 884 | - 'CNT_cur_thsnds' => array( |
|
| 885 | - 'type' => 'RADIO_BTN', |
|
| 886 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 887 | - 'class' => '', |
|
| 888 | - 'options' => array( |
|
| 889 | - array( |
|
| 890 | - 'id' => ',', |
|
| 891 | - 'text' => __(', (comma)', 'event_espresso'), |
|
| 892 | - ), |
|
| 893 | - array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 894 | - ), |
|
| 895 | - 'use_desc_4_label' => true, |
|
| 896 | - ), |
|
| 897 | - 'CNT_tel_code' => array( |
|
| 898 | - 'type' => 'TEXT', |
|
| 899 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 900 | - 'class' => 'small-text', |
|
| 901 | - ), |
|
| 902 | - 'CNT_is_EU' => array( |
|
| 903 | - 'type' => 'RADIO_BTN', |
|
| 904 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 905 | - 'class' => '', |
|
| 906 | - 'options' => $this->_yes_no_values, |
|
| 907 | - 'use_desc_4_label' => true, |
|
| 908 | - ), |
|
| 909 | - ); |
|
| 910 | - $this->_template_args['inputs'] = EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 911 | - $country, |
|
| 912 | - $country_input_types |
|
| 913 | - ); |
|
| 914 | - $country_details_settings = EEH_Template::display_template( |
|
| 915 | - GEN_SET_TEMPLATE_PATH . 'country_details_settings.template.php', |
|
| 916 | - $this->_template_args, |
|
| 917 | - true |
|
| 918 | - ); |
|
| 919 | - |
|
| 920 | - if (defined('DOING_AJAX')) { |
|
| 921 | - $notices = EE_Error::get_notices(false, false, false); |
|
| 922 | - echo wp_json_encode( |
|
| 923 | - array( |
|
| 924 | - 'return_data' => $country_details_settings, |
|
| 925 | - 'success' => $notices['success'], |
|
| 926 | - 'errors' => $notices['errors'], |
|
| 927 | - ) |
|
| 928 | - ); |
|
| 929 | - die(); |
|
| 930 | - } else { |
|
| 931 | - return $country_details_settings; |
|
| 932 | - } |
|
| 933 | - } |
|
| 934 | - |
|
| 935 | - |
|
| 936 | - /** |
|
| 937 | - * display_country_states |
|
| 938 | - * |
|
| 939 | - * @access public |
|
| 940 | - * @param string $CNT_ISO |
|
| 941 | - * @return string |
|
| 942 | - * @throws DomainException |
|
| 943 | - */ |
|
| 944 | - public function display_country_states($CNT_ISO = '') |
|
| 945 | - { |
|
| 946 | - |
|
| 947 | - $CNT_ISO = isset($this->_req_data['country']) ? sanitize_text_field($this->_req_data['country']) : $CNT_ISO; |
|
| 948 | - |
|
| 949 | - if (! $CNT_ISO) { |
|
| 950 | - return ''; |
|
| 951 | - } |
|
| 952 | - // for ajax |
|
| 953 | - remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 954 | - remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 955 | - add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'state_form_field_label_wrap'), 10, 2); |
|
| 956 | - add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'state_form_field_input__wrap'), 10, 2); |
|
| 957 | - $states = EEM_State::instance()->get_all_states_for_these_countries(array($CNT_ISO => $CNT_ISO)); |
|
| 958 | - |
|
| 959 | - if ($states) { |
|
| 960 | - foreach ($states as $STA_ID => $state) { |
|
| 961 | - if ($state instanceof EE_State) { |
|
| 962 | - // STA_abbrev STA_name STA_active |
|
| 963 | - $state_input_types = array( |
|
| 964 | - 'STA_abbrev' => array( |
|
| 965 | - 'type' => 'TEXT', |
|
| 966 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 967 | - 'class' => 'mid-text', |
|
| 968 | - ), |
|
| 969 | - 'STA_name' => array( |
|
| 970 | - 'type' => 'TEXT', |
|
| 971 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 972 | - 'class' => 'regular-text', |
|
| 973 | - ), |
|
| 974 | - 'STA_active' => array( |
|
| 975 | - 'type' => 'RADIO_BTN', |
|
| 976 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 977 | - 'options' => $this->_yes_no_values, |
|
| 978 | - 'use_desc_4_label' => true, |
|
| 979 | - ), |
|
| 980 | - ); |
|
| 981 | - $this->_template_args['states'][ $STA_ID ]['inputs'] = |
|
| 982 | - EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 983 | - $state, |
|
| 984 | - $state_input_types |
|
| 985 | - ); |
|
| 986 | - $query_args = array( |
|
| 987 | - 'action' => 'delete_state', |
|
| 988 | - 'STA_ID' => $STA_ID, |
|
| 989 | - 'CNT_ISO' => $CNT_ISO, |
|
| 990 | - 'STA_abbrev' => $state->abbrev(), |
|
| 991 | - ); |
|
| 992 | - $this->_template_args['states'][ $STA_ID ]['delete_state_url'] = |
|
| 993 | - EE_Admin_Page::add_query_args_and_nonce( |
|
| 994 | - $query_args, |
|
| 995 | - GEN_SET_ADMIN_URL |
|
| 996 | - ); |
|
| 997 | - } |
|
| 998 | - } |
|
| 999 | - } else { |
|
| 1000 | - $this->_template_args['states'] = false; |
|
| 1001 | - } |
|
| 1002 | - |
|
| 1003 | - $this->_template_args['add_new_state_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
| 1004 | - array('action' => 'add_new_state'), |
|
| 1005 | - GEN_SET_ADMIN_URL |
|
| 1006 | - ); |
|
| 1007 | - |
|
| 1008 | - $state_details_settings = EEH_Template::display_template( |
|
| 1009 | - GEN_SET_TEMPLATE_PATH . 'state_details_settings.template.php', |
|
| 1010 | - $this->_template_args, |
|
| 1011 | - true |
|
| 1012 | - ); |
|
| 1013 | - |
|
| 1014 | - if (defined('DOING_AJAX')) { |
|
| 1015 | - $notices = EE_Error::get_notices(false, false, false); |
|
| 1016 | - echo wp_json_encode( |
|
| 1017 | - array( |
|
| 1018 | - 'return_data' => $state_details_settings, |
|
| 1019 | - 'success' => $notices['success'], |
|
| 1020 | - 'errors' => $notices['errors'], |
|
| 1021 | - ) |
|
| 1022 | - ); |
|
| 1023 | - die(); |
|
| 1024 | - } else { |
|
| 1025 | - return $state_details_settings; |
|
| 1026 | - } |
|
| 1027 | - } |
|
| 1028 | - |
|
| 1029 | - |
|
| 1030 | - /** |
|
| 1031 | - * add_new_state |
|
| 1032 | - * |
|
| 1033 | - * @access public |
|
| 1034 | - * @return void |
|
| 1035 | - * @throws EE_Error |
|
| 1036 | - */ |
|
| 1037 | - public function add_new_state() |
|
| 1038 | - { |
|
| 1039 | - |
|
| 1040 | - $success = true; |
|
| 1041 | - |
|
| 1042 | - $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 1043 | - ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 1044 | - : false; |
|
| 1045 | - if (! $CNT_ISO) { |
|
| 1046 | - EE_Error::add_error( |
|
| 1047 | - __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 1048 | - __FILE__, |
|
| 1049 | - __FUNCTION__, |
|
| 1050 | - __LINE__ |
|
| 1051 | - ); |
|
| 1052 | - $success = false; |
|
| 1053 | - } |
|
| 1054 | - $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 1055 | - ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 1056 | - : false; |
|
| 1057 | - if (! $STA_abbrev) { |
|
| 1058 | - EE_Error::add_error( |
|
| 1059 | - __('No State ISO code or an invalid State ISO code was received.', 'event_espresso'), |
|
| 1060 | - __FILE__, |
|
| 1061 | - __FUNCTION__, |
|
| 1062 | - __LINE__ |
|
| 1063 | - ); |
|
| 1064 | - $success = false; |
|
| 1065 | - } |
|
| 1066 | - $STA_name = isset($this->_req_data['STA_name']) |
|
| 1067 | - ? sanitize_text_field($this->_req_data['STA_name']) |
|
| 1068 | - : false; |
|
| 1069 | - if (! $STA_name) { |
|
| 1070 | - EE_Error::add_error( |
|
| 1071 | - __('No State name or an invalid State name was received.', 'event_espresso'), |
|
| 1072 | - __FILE__, |
|
| 1073 | - __FUNCTION__, |
|
| 1074 | - __LINE__ |
|
| 1075 | - ); |
|
| 1076 | - $success = false; |
|
| 1077 | - } |
|
| 1078 | - |
|
| 1079 | - if ($success) { |
|
| 1080 | - $cols_n_values = array( |
|
| 1081 | - 'CNT_ISO' => $CNT_ISO, |
|
| 1082 | - 'STA_abbrev' => $STA_abbrev, |
|
| 1083 | - 'STA_name' => $STA_name, |
|
| 1084 | - 'STA_active' => true, |
|
| 1085 | - ); |
|
| 1086 | - $success = EEM_State::instance()->insert($cols_n_values); |
|
| 1087 | - EE_Error::add_success(__('The State was added successfully.', 'event_espresso')); |
|
| 1088 | - } |
|
| 1089 | - |
|
| 1090 | - if (defined('DOING_AJAX')) { |
|
| 1091 | - $notices = EE_Error::get_notices(false, false, false); |
|
| 1092 | - echo wp_json_encode(array_merge($notices, array('return_data' => $CNT_ISO))); |
|
| 1093 | - die(); |
|
| 1094 | - } else { |
|
| 1095 | - $this->_redirect_after_action($success, 'State', 'added', array('action' => 'country_settings')); |
|
| 1096 | - } |
|
| 1097 | - } |
|
| 1098 | - |
|
| 1099 | - |
|
| 1100 | - /** |
|
| 1101 | - * delete_state |
|
| 1102 | - * |
|
| 1103 | - * @access public |
|
| 1104 | - * @return boolean |
|
| 1105 | - */ |
|
| 1106 | - public function delete_state() |
|
| 1107 | - { |
|
| 1108 | - $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 1109 | - ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 1110 | - : false; |
|
| 1111 | - $STA_ID = isset($this->_req_data['STA_ID']) |
|
| 1112 | - ? sanitize_text_field($this->_req_data['STA_ID']) |
|
| 1113 | - : false; |
|
| 1114 | - $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 1115 | - ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 1116 | - : false; |
|
| 1117 | - if (! $STA_ID) { |
|
| 1118 | - EE_Error::add_error( |
|
| 1119 | - __('No State ID or an invalid State ID was received.', 'event_espresso'), |
|
| 1120 | - __FILE__, |
|
| 1121 | - __FUNCTION__, |
|
| 1122 | - __LINE__ |
|
| 1123 | - ); |
|
| 1124 | - return false; |
|
| 1125 | - } |
|
| 1126 | - |
|
| 1127 | - $success = EEM_State::instance()->delete_by_ID($STA_ID); |
|
| 1128 | - if ($success !== false) { |
|
| 1129 | - do_action( |
|
| 1130 | - 'AHEE__General_Settings_Admin_Page__delete_state__state_deleted', |
|
| 1131 | - $CNT_ISO, |
|
| 1132 | - $STA_ID, |
|
| 1133 | - array('STA_abbrev' => $STA_abbrev) |
|
| 1134 | - ); |
|
| 1135 | - EE_Error::add_success(__('The State was deleted successfully.', 'event_espresso')); |
|
| 1136 | - } |
|
| 1137 | - if (defined('DOING_AJAX')) { |
|
| 1138 | - $notices = EE_Error::get_notices(false, false); |
|
| 1139 | - $notices['return_data'] = true; |
|
| 1140 | - echo wp_json_encode($notices); |
|
| 1141 | - die(); |
|
| 1142 | - } else { |
|
| 1143 | - $this->_redirect_after_action( |
|
| 1144 | - $success, |
|
| 1145 | - 'State', |
|
| 1146 | - 'deleted', |
|
| 1147 | - array('action' => 'country_settings') |
|
| 1148 | - ); |
|
| 1149 | - } |
|
| 1150 | - } |
|
| 1151 | - |
|
| 1152 | - |
|
| 1153 | - /** |
|
| 1154 | - * _update_country_settings |
|
| 1155 | - * |
|
| 1156 | - * @access protected |
|
| 1157 | - * @return void |
|
| 1158 | - * @throws EE_Error |
|
| 1159 | - */ |
|
| 1160 | - protected function _update_country_settings() |
|
| 1161 | - { |
|
| 1162 | - // grab the country ISO code |
|
| 1163 | - $CNT_ISO = isset($this->_req_data['country']) |
|
| 1164 | - ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 1165 | - : false; |
|
| 1166 | - if (! $CNT_ISO) { |
|
| 1167 | - EE_Error::add_error( |
|
| 1168 | - __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 1169 | - __FILE__, |
|
| 1170 | - __FUNCTION__, |
|
| 1171 | - __LINE__ |
|
| 1172 | - ); |
|
| 1173 | - |
|
| 1174 | - return; |
|
| 1175 | - } |
|
| 1176 | - $cols_n_values = array(); |
|
| 1177 | - $cols_n_values['CNT_ISO3'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3']) |
|
| 1178 | - ? strtoupper(sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3'])) |
|
| 1179 | - : false; |
|
| 1180 | - $cols_n_values['RGN_ID'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1181 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1182 | - : null; |
|
| 1183 | - $cols_n_values['CNT_name'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1184 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1185 | - : null; |
|
| 1186 | - $cols_n_values['CNT_cur_code'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code']) |
|
| 1187 | - ? strtoupper(sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code'])) |
|
| 1188 | - : 'USD'; |
|
| 1189 | - $cols_n_values['CNT_cur_single'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single']) |
|
| 1190 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single']) |
|
| 1191 | - : 'dollar'; |
|
| 1192 | - $cols_n_values['CNT_cur_plural'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural']) |
|
| 1193 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural']) |
|
| 1194 | - : 'dollars'; |
|
| 1195 | - $cols_n_values['CNT_cur_sign'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign']) |
|
| 1196 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign']) |
|
| 1197 | - : '$'; |
|
| 1198 | - $cols_n_values['CNT_cur_sign_b4'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4']) |
|
| 1199 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4']) |
|
| 1200 | - : true; |
|
| 1201 | - $cols_n_values['CNT_cur_dec_plc'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc']) |
|
| 1202 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc']) |
|
| 1203 | - : 2; |
|
| 1204 | - $cols_n_values['CNT_cur_dec_mrk'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk']) |
|
| 1205 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk']) |
|
| 1206 | - : '.'; |
|
| 1207 | - $cols_n_values['CNT_cur_thsnds'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds']) |
|
| 1208 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds']) |
|
| 1209 | - : ','; |
|
| 1210 | - $cols_n_values['CNT_tel_code'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1211 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1212 | - : null; |
|
| 1213 | - $cols_n_values['CNT_is_EU'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1214 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1215 | - : false; |
|
| 1216 | - $cols_n_values['CNT_active'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1217 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1218 | - : false; |
|
| 1219 | - // allow filtering of country data |
|
| 1220 | - $cols_n_values = apply_filters( |
|
| 1221 | - 'FHEE__General_Settings_Admin_Page___update_country_settings__cols_n_values', |
|
| 1222 | - $cols_n_values |
|
| 1223 | - ); |
|
| 1224 | - |
|
| 1225 | - // where values |
|
| 1226 | - $where_cols_n_values = array(array('CNT_ISO' => $CNT_ISO)); |
|
| 1227 | - // run the update |
|
| 1228 | - $success = EEM_Country::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1229 | - |
|
| 1230 | - if (isset($this->_req_data['states']) && is_array($this->_req_data['states']) && $success !== false) { |
|
| 1231 | - // allow filtering of states data |
|
| 1232 | - $states = apply_filters( |
|
| 1233 | - 'FHEE__General_Settings_Admin_Page___update_country_settings__states', |
|
| 1234 | - $this->_req_data['states'] |
|
| 1235 | - ); |
|
| 1236 | - |
|
| 1237 | - // loop thru state data ( looks like : states[75][STA_name] ) |
|
| 1238 | - foreach ($states as $STA_ID => $state) { |
|
| 1239 | - $cols_n_values = array( |
|
| 1240 | - 'CNT_ISO' => $CNT_ISO, |
|
| 1241 | - 'STA_abbrev' => sanitize_text_field($state['STA_abbrev']), |
|
| 1242 | - 'STA_name' => sanitize_text_field($state['STA_name']), |
|
| 1243 | - 'STA_active' => (bool) absint($state['STA_active']), |
|
| 1244 | - ); |
|
| 1245 | - // where values |
|
| 1246 | - $where_cols_n_values = array(array('STA_ID' => $STA_ID)); |
|
| 1247 | - // run the update |
|
| 1248 | - $success = EEM_State::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1249 | - if ($success !== false) { |
|
| 1250 | - do_action( |
|
| 1251 | - 'AHEE__General_Settings_Admin_Page__update_country_settings__state_saved', |
|
| 1252 | - $CNT_ISO, |
|
| 1253 | - $STA_ID, |
|
| 1254 | - $cols_n_values |
|
| 1255 | - ); |
|
| 1256 | - } |
|
| 1257 | - } |
|
| 1258 | - } |
|
| 1259 | - // check if country being edited matches org option country, and if so, then update EE_Config with new settings |
|
| 1260 | - if (isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 1261 | - && $CNT_ISO == EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 1262 | - ) { |
|
| 1263 | - EE_Registry::instance()->CFG->currency = new EE_Currency_Config($CNT_ISO); |
|
| 1264 | - EE_Registry::instance()->CFG->update_espresso_config(); |
|
| 1265 | - } |
|
| 1266 | - |
|
| 1267 | - if ($success !== false) { |
|
| 1268 | - EE_Error::add_success( |
|
| 1269 | - esc_html__('Country Settings updated successfully.', 'event_espresso') |
|
| 1270 | - ); |
|
| 1271 | - } |
|
| 1272 | - $this->_redirect_after_action( |
|
| 1273 | - $success, |
|
| 1274 | - '', |
|
| 1275 | - '', |
|
| 1276 | - array('action' => 'country_settings', 'country' => $CNT_ISO), |
|
| 1277 | - true |
|
| 1278 | - ); |
|
| 1279 | - } |
|
| 1280 | - |
|
| 1281 | - |
|
| 1282 | - /** |
|
| 1283 | - * form_form_field_label_wrap |
|
| 1284 | - * |
|
| 1285 | - * @access public |
|
| 1286 | - * @param string $label |
|
| 1287 | - * @return string |
|
| 1288 | - */ |
|
| 1289 | - public function country_form_field_label_wrap($label, $required_text) |
|
| 1290 | - { |
|
| 1291 | - return ' |
|
| 21 | + /** |
|
| 22 | + * _question_group |
|
| 23 | + * holds the specific question group object for the question group details screen |
|
| 24 | + * |
|
| 25 | + * @var object |
|
| 26 | + */ |
|
| 27 | + protected $_question_group; |
|
| 28 | + |
|
| 29 | + |
|
| 30 | + /** |
|
| 31 | + * Initialize basic properties. |
|
| 32 | + */ |
|
| 33 | + protected function _init_page_props() |
|
| 34 | + { |
|
| 35 | + $this->page_slug = GEN_SET_PG_SLUG; |
|
| 36 | + $this->page_label = GEN_SET_LABEL; |
|
| 37 | + $this->_admin_base_url = GEN_SET_ADMIN_URL; |
|
| 38 | + $this->_admin_base_path = GEN_SET_ADMIN; |
|
| 39 | + } |
|
| 40 | + |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * Set ajax hooks |
|
| 44 | + */ |
|
| 45 | + protected function _ajax_hooks() |
|
| 46 | + { |
|
| 47 | + add_action('wp_ajax_espresso_display_country_settings', array($this, 'display_country_settings')); |
|
| 48 | + add_action('wp_ajax_espresso_display_country_states', array($this, 'display_country_states')); |
|
| 49 | + add_action('wp_ajax_espresso_delete_state', array($this, 'delete_state'), 10, 3); |
|
| 50 | + add_action('wp_ajax_espresso_add_new_state', array($this, 'add_new_state')); |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + |
|
| 54 | + /** |
|
| 55 | + * More page properties initialization. |
|
| 56 | + */ |
|
| 57 | + protected function _define_page_props() |
|
| 58 | + { |
|
| 59 | + $this->_admin_page_title = GEN_SET_LABEL; |
|
| 60 | + $this->_labels = array( |
|
| 61 | + 'publishbox' => __('Update Settings', 'event_espresso'), |
|
| 62 | + ); |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + |
|
| 66 | + /** |
|
| 67 | + * Set page routes property. |
|
| 68 | + */ |
|
| 69 | + protected function _set_page_routes() |
|
| 70 | + { |
|
| 71 | + $this->_page_routes = array( |
|
| 72 | + |
|
| 73 | + 'critical_pages' => array( |
|
| 74 | + 'func' => '_espresso_page_settings', |
|
| 75 | + 'capability' => 'manage_options', |
|
| 76 | + ), |
|
| 77 | + 'update_espresso_page_settings' => array( |
|
| 78 | + 'func' => '_update_espresso_page_settings', |
|
| 79 | + 'capability' => 'manage_options', |
|
| 80 | + 'noheader' => true, |
|
| 81 | + ), |
|
| 82 | + 'default' => array( |
|
| 83 | + 'func' => '_your_organization_settings', |
|
| 84 | + 'capability' => 'manage_options', |
|
| 85 | + ), |
|
| 86 | + |
|
| 87 | + 'update_your_organization_settings' => array( |
|
| 88 | + 'func' => '_update_your_organization_settings', |
|
| 89 | + 'capability' => 'manage_options', |
|
| 90 | + 'noheader' => true, |
|
| 91 | + ), |
|
| 92 | + |
|
| 93 | + 'admin_option_settings' => array( |
|
| 94 | + 'func' => '_admin_option_settings', |
|
| 95 | + 'capability' => 'manage_options', |
|
| 96 | + ), |
|
| 97 | + |
|
| 98 | + 'update_admin_option_settings' => array( |
|
| 99 | + 'func' => '_update_admin_option_settings', |
|
| 100 | + 'capability' => 'manage_options', |
|
| 101 | + 'noheader' => true, |
|
| 102 | + ), |
|
| 103 | + |
|
| 104 | + 'country_settings' => array( |
|
| 105 | + 'func' => '_country_settings', |
|
| 106 | + 'capability' => 'manage_options', |
|
| 107 | + ), |
|
| 108 | + |
|
| 109 | + 'update_country_settings' => array( |
|
| 110 | + 'func' => '_update_country_settings', |
|
| 111 | + 'capability' => 'manage_options', |
|
| 112 | + 'noheader' => true, |
|
| 113 | + ), |
|
| 114 | + |
|
| 115 | + 'display_country_settings' => array( |
|
| 116 | + 'func' => 'display_country_settings', |
|
| 117 | + 'capability' => 'manage_options', |
|
| 118 | + 'noheader' => true, |
|
| 119 | + ), |
|
| 120 | + |
|
| 121 | + 'add_new_state' => array( |
|
| 122 | + 'func' => 'add_new_state', |
|
| 123 | + 'capability' => 'manage_options', |
|
| 124 | + 'noheader' => true, |
|
| 125 | + ), |
|
| 126 | + |
|
| 127 | + 'delete_state' => array( |
|
| 128 | + 'func' => 'delete_state', |
|
| 129 | + 'capability' => 'manage_options', |
|
| 130 | + 'noheader' => true, |
|
| 131 | + ), |
|
| 132 | + 'privacy_settings' => array( |
|
| 133 | + 'func' => 'privacySettings', |
|
| 134 | + 'capability' => 'manage_options', |
|
| 135 | + ), |
|
| 136 | + 'update_privacy_settings' => array( |
|
| 137 | + 'func' => 'updatePrivacySettings', |
|
| 138 | + 'capability' => 'manage_options', |
|
| 139 | + 'noheader' => true, |
|
| 140 | + 'headers_sent_route' => 'privacy_settings' |
|
| 141 | + ) |
|
| 142 | + ); |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + |
|
| 146 | + /** |
|
| 147 | + * Set page configuration property |
|
| 148 | + */ |
|
| 149 | + protected function _set_page_config() |
|
| 150 | + { |
|
| 151 | + $this->_page_config = array( |
|
| 152 | + 'critical_pages' => array( |
|
| 153 | + 'nav' => array( |
|
| 154 | + 'label' => __('Critical Pages', 'event_espresso'), |
|
| 155 | + 'order' => 50, |
|
| 156 | + ), |
|
| 157 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 158 | + 'help_tabs' => array( |
|
| 159 | + 'general_settings_critical_pages_help_tab' => array( |
|
| 160 | + 'title' => __('Critical Pages', 'event_espresso'), |
|
| 161 | + 'filename' => 'general_settings_critical_pages', |
|
| 162 | + ), |
|
| 163 | + ), |
|
| 164 | + 'help_tour' => array('Critical_Pages_Help_Tour'), |
|
| 165 | + 'require_nonce' => false, |
|
| 166 | + ), |
|
| 167 | + 'default' => array( |
|
| 168 | + 'nav' => array( |
|
| 169 | + 'label' => __('Your Organization', 'event_espresso'), |
|
| 170 | + 'order' => 20, |
|
| 171 | + ), |
|
| 172 | + 'help_tabs' => array( |
|
| 173 | + 'general_settings_your_organization_help_tab' => array( |
|
| 174 | + 'title' => __('Your Organization', 'event_espresso'), |
|
| 175 | + 'filename' => 'general_settings_your_organization', |
|
| 176 | + ), |
|
| 177 | + ), |
|
| 178 | + 'help_tour' => array('Your_Organization_Help_Tour'), |
|
| 179 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 180 | + 'require_nonce' => false, |
|
| 181 | + ), |
|
| 182 | + 'admin_option_settings' => array( |
|
| 183 | + 'nav' => array( |
|
| 184 | + 'label' => __('Admin Options', 'event_espresso'), |
|
| 185 | + 'order' => 60, |
|
| 186 | + ), |
|
| 187 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 188 | + 'help_tabs' => array( |
|
| 189 | + 'general_settings_admin_options_help_tab' => array( |
|
| 190 | + 'title' => __('Admin Options', 'event_espresso'), |
|
| 191 | + 'filename' => 'general_settings_admin_options', |
|
| 192 | + ), |
|
| 193 | + ), |
|
| 194 | + 'help_tour' => array('Admin_Options_Help_Tour'), |
|
| 195 | + 'require_nonce' => false, |
|
| 196 | + ), |
|
| 197 | + 'country_settings' => array( |
|
| 198 | + 'nav' => array( |
|
| 199 | + 'label' => __('Countries', 'event_espresso'), |
|
| 200 | + 'order' => 70, |
|
| 201 | + ), |
|
| 202 | + 'help_tabs' => array( |
|
| 203 | + 'general_settings_countries_help_tab' => array( |
|
| 204 | + 'title' => __('Countries', 'event_espresso'), |
|
| 205 | + 'filename' => 'general_settings_countries', |
|
| 206 | + ), |
|
| 207 | + ), |
|
| 208 | + 'help_tour' => array('Countries_Help_Tour'), |
|
| 209 | + 'require_nonce' => false, |
|
| 210 | + ), |
|
| 211 | + 'privacy_settings' => array( |
|
| 212 | + 'nav' => array( |
|
| 213 | + 'label' => esc_html__('Privacy', 'event_espresso'), |
|
| 214 | + 'order' => 80 |
|
| 215 | + ), |
|
| 216 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 217 | + 'require_nonce' => false |
|
| 218 | + ) |
|
| 219 | + ); |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + |
|
| 223 | + protected function _add_screen_options() |
|
| 224 | + { |
|
| 225 | + } |
|
| 226 | + |
|
| 227 | + protected function _add_feature_pointers() |
|
| 228 | + { |
|
| 229 | + } |
|
| 230 | + |
|
| 231 | + |
|
| 232 | + /** |
|
| 233 | + * Enqueue global scripts and styles for all routes in the General Settings Admin Pages. |
|
| 234 | + */ |
|
| 235 | + public function load_scripts_styles() |
|
| 236 | + { |
|
| 237 | + // styles |
|
| 238 | + wp_enqueue_style('espresso-ui-theme'); |
|
| 239 | + // scripts |
|
| 240 | + wp_enqueue_script('ee_admin_js'); |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + |
|
| 244 | + /** |
|
| 245 | + * Execute logic running on `admin_init` |
|
| 246 | + */ |
|
| 247 | + public function admin_init() |
|
| 248 | + { |
|
| 249 | + EE_Registry::$i18n_js_strings['invalid_server_response'] = __( |
|
| 250 | + 'An error occurred! Your request may have been processed, but a valid response from the server was not received. Please refresh the page and try again.', |
|
| 251 | + 'event_espresso' |
|
| 252 | + ); |
|
| 253 | + EE_Registry::$i18n_js_strings['error_occurred'] = __( |
|
| 254 | + 'An error occurred! Please refresh the page and try again.', |
|
| 255 | + 'event_espresso' |
|
| 256 | + ); |
|
| 257 | + EE_Registry::$i18n_js_strings['confirm_delete_state'] = __( |
|
| 258 | + 'Are you sure you want to delete this State / Province?', |
|
| 259 | + 'event_espresso' |
|
| 260 | + ); |
|
| 261 | + $protocol = isset($_SERVER['HTTPS']) ? 'https://' : 'http://'; |
|
| 262 | + EE_Registry::$i18n_js_strings['ajax_url'] = admin_url( |
|
| 263 | + 'admin-ajax.php?page=espresso_general_settings', |
|
| 264 | + $protocol |
|
| 265 | + ); |
|
| 266 | + } |
|
| 267 | + |
|
| 268 | + public function admin_notices() |
|
| 269 | + { |
|
| 270 | + } |
|
| 271 | + |
|
| 272 | + public function admin_footer_scripts() |
|
| 273 | + { |
|
| 274 | + } |
|
| 275 | + |
|
| 276 | + |
|
| 277 | + /** |
|
| 278 | + * Enqueue scripts and styles for the default route. |
|
| 279 | + */ |
|
| 280 | + public function load_scripts_styles_default() |
|
| 281 | + { |
|
| 282 | + // styles |
|
| 283 | + wp_enqueue_style('thickbox'); |
|
| 284 | + // scripts |
|
| 285 | + wp_enqueue_script('media-upload'); |
|
| 286 | + wp_enqueue_script('thickbox'); |
|
| 287 | + wp_register_script( |
|
| 288 | + 'organization_settings', |
|
| 289 | + GEN_SET_ASSETS_URL . 'your_organization_settings.js', |
|
| 290 | + array('jquery', 'media-upload', 'thickbox'), |
|
| 291 | + EVENT_ESPRESSO_VERSION, |
|
| 292 | + true |
|
| 293 | + ); |
|
| 294 | + wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 295 | + wp_enqueue_script('organization_settings'); |
|
| 296 | + wp_enqueue_style('organization-css'); |
|
| 297 | + $confirm_image_delete = array( |
|
| 298 | + 'text' => __( |
|
| 299 | + 'Do you really want to delete this image? Please remember to save your settings to complete the removal.', |
|
| 300 | + 'event_espresso' |
|
| 301 | + ), |
|
| 302 | + ); |
|
| 303 | + wp_localize_script('organization_settings', 'confirm_image_delete', $confirm_image_delete); |
|
| 304 | + } |
|
| 305 | + |
|
| 306 | + |
|
| 307 | + /** |
|
| 308 | + * Enqueue scripts and styles for the country settings route. |
|
| 309 | + */ |
|
| 310 | + public function load_scripts_styles_country_settings() |
|
| 311 | + { |
|
| 312 | + // scripts |
|
| 313 | + wp_register_script( |
|
| 314 | + 'gen_settings_countries', |
|
| 315 | + GEN_SET_ASSETS_URL . 'gen_settings_countries.js', |
|
| 316 | + array('ee_admin_js'), |
|
| 317 | + EVENT_ESPRESSO_VERSION, |
|
| 318 | + true |
|
| 319 | + ); |
|
| 320 | + wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 321 | + wp_enqueue_script('gen_settings_countries'); |
|
| 322 | + wp_enqueue_style('organization-css'); |
|
| 323 | + } |
|
| 324 | + |
|
| 325 | + |
|
| 326 | + /************* Espresso Pages *************/ |
|
| 327 | + /** |
|
| 328 | + * _espresso_page_settings |
|
| 329 | + * |
|
| 330 | + * @throws \EE_Error |
|
| 331 | + */ |
|
| 332 | + protected function _espresso_page_settings() |
|
| 333 | + { |
|
| 334 | + // Check to make sure all of the main pages are setup properly, |
|
| 335 | + // if not create the default pages and display an admin notice |
|
| 336 | + EEH_Activation::verify_default_pages_exist(); |
|
| 337 | + $this->_transient_garbage_collection(); |
|
| 338 | + $this->_template_args['values'] = $this->_yes_no_values; |
|
| 339 | + $this->_template_args['reg_page_id'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 340 | + ? EE_Registry::instance()->CFG->core->reg_page_id |
|
| 341 | + : null; |
|
| 342 | + $this->_template_args['reg_page_obj'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 343 | + ? get_page(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 344 | + : false; |
|
| 345 | + $this->_template_args['txn_page_id'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 346 | + ? EE_Registry::instance()->CFG->core->txn_page_id |
|
| 347 | + : null; |
|
| 348 | + $this->_template_args['txn_page_obj'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 349 | + ? get_page(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 350 | + : false; |
|
| 351 | + $this->_template_args['thank_you_page_id'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 352 | + ? EE_Registry::instance()->CFG->core->thank_you_page_id |
|
| 353 | + : null; |
|
| 354 | + $this->_template_args['thank_you_page_obj'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 355 | + ? get_page(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 356 | + : false; |
|
| 357 | + $this->_template_args['cancel_page_id'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 358 | + ? EE_Registry::instance()->CFG->core->cancel_page_id |
|
| 359 | + : null; |
|
| 360 | + $this->_template_args['cancel_page_obj'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 361 | + ? get_page(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 362 | + : false; |
|
| 363 | + $this->_set_add_edit_form_tags('update_espresso_page_settings'); |
|
| 364 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 365 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 366 | + GEN_SET_TEMPLATE_PATH . 'espresso_page_settings.template.php', |
|
| 367 | + $this->_template_args, |
|
| 368 | + true |
|
| 369 | + ); |
|
| 370 | + $this->display_admin_page_with_sidebar(); |
|
| 371 | + } |
|
| 372 | + |
|
| 373 | + |
|
| 374 | + /** |
|
| 375 | + * Handler for updating espresso page settings. |
|
| 376 | + */ |
|
| 377 | + protected function _update_espresso_page_settings() |
|
| 378 | + { |
|
| 379 | + // capture incoming request data && set page IDs |
|
| 380 | + EE_Registry::instance()->CFG->core->reg_page_id = isset($this->_req_data['reg_page_id']) |
|
| 381 | + ? absint($this->_req_data['reg_page_id']) |
|
| 382 | + : EE_Registry::instance()->CFG->core->reg_page_id; |
|
| 383 | + EE_Registry::instance()->CFG->core->txn_page_id = isset($this->_req_data['txn_page_id']) |
|
| 384 | + ? absint($this->_req_data['txn_page_id']) |
|
| 385 | + : EE_Registry::instance()->CFG->core->txn_page_id; |
|
| 386 | + EE_Registry::instance()->CFG->core->thank_you_page_id = isset($this->_req_data['thank_you_page_id']) |
|
| 387 | + ? absint($this->_req_data['thank_you_page_id']) |
|
| 388 | + : EE_Registry::instance()->CFG->core->thank_you_page_id; |
|
| 389 | + EE_Registry::instance()->CFG->core->cancel_page_id = isset($this->_req_data['cancel_page_id']) |
|
| 390 | + ? absint($this->_req_data['cancel_page_id']) |
|
| 391 | + : EE_Registry::instance()->CFG->core->cancel_page_id; |
|
| 392 | + |
|
| 393 | + EE_Registry::instance()->CFG->core = apply_filters( |
|
| 394 | + 'FHEE__General_Settings_Admin_Page___update_espresso_page_settings__CFG_core', |
|
| 395 | + EE_Registry::instance()->CFG->core, |
|
| 396 | + $this->_req_data |
|
| 397 | + ); |
|
| 398 | + $what = __('Critical Pages & Shortcodes', 'event_espresso'); |
|
| 399 | + $this->_redirect_after_action( |
|
| 400 | + $this->_update_espresso_configuration( |
|
| 401 | + $what, |
|
| 402 | + EE_Registry::instance()->CFG->core, |
|
| 403 | + __FILE__, |
|
| 404 | + __FUNCTION__, |
|
| 405 | + __LINE__ |
|
| 406 | + ), |
|
| 407 | + $what, |
|
| 408 | + '', |
|
| 409 | + array( |
|
| 410 | + 'action' => 'critical_pages', |
|
| 411 | + ), |
|
| 412 | + true |
|
| 413 | + ); |
|
| 414 | + } |
|
| 415 | + |
|
| 416 | + |
|
| 417 | + /************* Your Organization *************/ |
|
| 418 | + |
|
| 419 | + |
|
| 420 | + /** |
|
| 421 | + * Output for the Your Organization settings route. |
|
| 422 | + * |
|
| 423 | + * @throws DomainException |
|
| 424 | + * @throws EE_Error |
|
| 425 | + */ |
|
| 426 | + protected function _your_organization_settings() |
|
| 427 | + { |
|
| 428 | + |
|
| 429 | + $this->_template_args['site_license_key'] = isset( |
|
| 430 | + EE_Registry::instance()->NET_CFG->core->site_license_key |
|
| 431 | + ) |
|
| 432 | + ? EE_Registry::instance()->NET_CFG->core->get_pretty('site_license_key') |
|
| 433 | + : ''; |
|
| 434 | + $this->_template_args['organization_name'] = isset(EE_Registry::instance()->CFG->organization->name) |
|
| 435 | + ? EE_Registry::instance()->CFG->organization->get_pretty('name') |
|
| 436 | + : ''; |
|
| 437 | + $this->_template_args['organization_address_1'] = isset(EE_Registry::instance()->CFG->organization->address_1) |
|
| 438 | + ? EE_Registry::instance()->CFG->organization->get_pretty('address_1') |
|
| 439 | + : ''; |
|
| 440 | + $this->_template_args['organization_address_2'] = isset(EE_Registry::instance()->CFG->organization->address_2) |
|
| 441 | + ? EE_Registry::instance()->CFG->organization->get_pretty('address_2') |
|
| 442 | + : ''; |
|
| 443 | + $this->_template_args['organization_city'] = isset(EE_Registry::instance()->CFG->organization->city) |
|
| 444 | + ? EE_Registry::instance()->CFG->organization->get_pretty('city') |
|
| 445 | + : ''; |
|
| 446 | + $this->_template_args['organization_zip'] = isset(EE_Registry::instance()->CFG->organization->zip) |
|
| 447 | + ? EE_Registry::instance()->CFG->organization->get_pretty('zip') |
|
| 448 | + : ''; |
|
| 449 | + $this->_template_args['organization_email'] = isset(EE_Registry::instance()->CFG->organization->email) |
|
| 450 | + ? EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 451 | + : ''; |
|
| 452 | + $this->_template_args['organization_phone'] = isset(EE_Registry::instance()->CFG->organization->phone) |
|
| 453 | + ? EE_Registry::instance()->CFG->organization->get_pretty('phone') |
|
| 454 | + : ''; |
|
| 455 | + $this->_template_args['organization_vat'] = isset(EE_Registry::instance()->CFG->organization->vat) |
|
| 456 | + ? EE_Registry::instance()->CFG->organization->get_pretty('vat') |
|
| 457 | + : ''; |
|
| 458 | + $this->_template_args['currency_sign'] = isset(EE_Registry::instance()->CFG->currency->sign) |
|
| 459 | + ? EE_Registry::instance()->CFG->currency->get_pretty('sign') |
|
| 460 | + : '$'; |
|
| 461 | + $this->_template_args['organization_logo_url'] = isset(EE_Registry::instance()->CFG->organization->logo_url) |
|
| 462 | + ? EE_Registry::instance()->CFG->organization->get_pretty('logo_url') |
|
| 463 | + : false; |
|
| 464 | + $this->_template_args['organization_facebook'] = isset(EE_Registry::instance()->CFG->organization->facebook) |
|
| 465 | + ? EE_Registry::instance()->CFG->organization->get_pretty('facebook') |
|
| 466 | + : ''; |
|
| 467 | + $this->_template_args['organization_twitter'] = isset(EE_Registry::instance()->CFG->organization->twitter) |
|
| 468 | + ? EE_Registry::instance()->CFG->organization->get_pretty('twitter') |
|
| 469 | + : ''; |
|
| 470 | + $this->_template_args['organization_linkedin'] = isset(EE_Registry::instance()->CFG->organization->linkedin) |
|
| 471 | + ? EE_Registry::instance()->CFG->organization->get_pretty('linkedin') |
|
| 472 | + : ''; |
|
| 473 | + $this->_template_args['organization_pinterest'] = isset(EE_Registry::instance()->CFG->organization->pinterest) |
|
| 474 | + ? EE_Registry::instance()->CFG->organization->get_pretty('pinterest') |
|
| 475 | + : ''; |
|
| 476 | + $this->_template_args['organization_google'] = isset(EE_Registry::instance()->CFG->organization->google) |
|
| 477 | + ? EE_Registry::instance()->CFG->organization->get_pretty('google') |
|
| 478 | + : ''; |
|
| 479 | + $this->_template_args['organization_instagram'] = isset(EE_Registry::instance()->CFG->organization->instagram) |
|
| 480 | + ? EE_Registry::instance()->CFG->organization->get_pretty('instagram') |
|
| 481 | + : ''; |
|
| 482 | + // UXIP settings |
|
| 483 | + $this->_template_args['ee_ueip_optin'] = isset(EE_Registry::instance()->CFG->core->ee_ueip_optin) |
|
| 484 | + ? EE_Registry::instance()->CFG->core->get_pretty('ee_ueip_optin') |
|
| 485 | + : 'yes'; |
|
| 486 | + |
|
| 487 | + $STA_ID = isset(EE_Registry::instance()->CFG->organization->STA_ID) |
|
| 488 | + ? EE_Registry::instance()->CFG->organization->STA_ID |
|
| 489 | + : 4; |
|
| 490 | + $this->_template_args['states'] = new EE_Question_Form_Input( |
|
| 491 | + EE_Question::new_instance( |
|
| 492 | + array( |
|
| 493 | + 'QST_ID' => 0, |
|
| 494 | + 'QST_display_text' => __('State/Province', 'event_espresso'), |
|
| 495 | + 'QST_system' => 'admin-state', |
|
| 496 | + ) |
|
| 497 | + ), |
|
| 498 | + EE_Answer::new_instance( |
|
| 499 | + array( |
|
| 500 | + 'ANS_ID' => 0, |
|
| 501 | + 'ANS_value' => $STA_ID, |
|
| 502 | + ) |
|
| 503 | + ), |
|
| 504 | + array( |
|
| 505 | + 'input_id' => 'organization_state', |
|
| 506 | + 'input_name' => 'organization_state', |
|
| 507 | + 'input_prefix' => '', |
|
| 508 | + 'append_qstn_id' => false, |
|
| 509 | + ) |
|
| 510 | + ); |
|
| 511 | + |
|
| 512 | + $CNT_ISO = isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 513 | + ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 514 | + : 'US'; |
|
| 515 | + $this->_template_args['countries'] = new EE_Question_Form_Input( |
|
| 516 | + EE_Question::new_instance( |
|
| 517 | + array( |
|
| 518 | + 'QST_ID' => 0, |
|
| 519 | + 'QST_display_text' => __('Country', 'event_espresso'), |
|
| 520 | + 'QST_system' => 'admin-country', |
|
| 521 | + ) |
|
| 522 | + ), |
|
| 523 | + EE_Answer::new_instance( |
|
| 524 | + array( |
|
| 525 | + 'ANS_ID' => 0, |
|
| 526 | + 'ANS_value' => $CNT_ISO, |
|
| 527 | + ) |
|
| 528 | + ), |
|
| 529 | + array( |
|
| 530 | + 'input_id' => 'organization_country', |
|
| 531 | + 'input_name' => 'organization_country', |
|
| 532 | + 'input_prefix' => '', |
|
| 533 | + 'append_qstn_id' => false, |
|
| 534 | + ) |
|
| 535 | + ); |
|
| 536 | + |
|
| 537 | + add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 538 | + add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 539 | + |
|
| 540 | + // PUE verification stuff |
|
| 541 | + $ver_option_key = 'puvererr_' . basename(EE_PLUGIN_BASENAME); |
|
| 542 | + $verify_fail = get_option($ver_option_key); |
|
| 543 | + $this->_template_args['site_license_key_verified'] = $verify_fail |
|
| 544 | + || ! empty($verify_fail) |
|
| 545 | + || (empty($this->_template_args['site_license_key']) |
|
| 546 | + && empty($verify_fail) |
|
| 547 | + ) |
|
| 548 | + ? '<span class="dashicons dashicons-admin-network ee-icon-color-ee-red ee-icon-size-20"></span>' |
|
| 549 | + : '<span class="dashicons dashicons-admin-network ee-icon-color-ee-green ee-icon-size-20"></span>'; |
|
| 550 | + |
|
| 551 | + $this->_set_add_edit_form_tags('update_your_organization_settings'); |
|
| 552 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 553 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 554 | + GEN_SET_TEMPLATE_PATH . 'your_organization_settings.template.php', |
|
| 555 | + $this->_template_args, |
|
| 556 | + true |
|
| 557 | + ); |
|
| 558 | + |
|
| 559 | + $this->display_admin_page_with_sidebar(); |
|
| 560 | + } |
|
| 561 | + |
|
| 562 | + |
|
| 563 | + /** |
|
| 564 | + * Handler for updating organziation settings. |
|
| 565 | + */ |
|
| 566 | + protected function _update_your_organization_settings() |
|
| 567 | + { |
|
| 568 | + if (is_main_site()) { |
|
| 569 | + EE_Registry::instance()->NET_CFG->core->site_license_key = isset($this->_req_data['site_license_key']) |
|
| 570 | + ? sanitize_text_field($this->_req_data['site_license_key']) |
|
| 571 | + : EE_Registry::instance()->NET_CFG->core->site_license_key; |
|
| 572 | + } |
|
| 573 | + EE_Registry::instance()->CFG->organization->name = isset($this->_req_data['organization_name']) |
|
| 574 | + ? sanitize_text_field($this->_req_data['organization_name']) |
|
| 575 | + : EE_Registry::instance()->CFG->organization->name; |
|
| 576 | + EE_Registry::instance()->CFG->organization->address_1 = isset($this->_req_data['organization_address_1']) |
|
| 577 | + ? sanitize_text_field($this->_req_data['organization_address_1']) |
|
| 578 | + : EE_Registry::instance()->CFG->organization->address_1; |
|
| 579 | + EE_Registry::instance()->CFG->organization->address_2 = isset($this->_req_data['organization_address_2']) |
|
| 580 | + ? sanitize_text_field($this->_req_data['organization_address_2']) |
|
| 581 | + : EE_Registry::instance()->CFG->organization->address_2; |
|
| 582 | + EE_Registry::instance()->CFG->organization->city = isset($this->_req_data['organization_city']) |
|
| 583 | + ? sanitize_text_field($this->_req_data['organization_city']) |
|
| 584 | + : EE_Registry::instance()->CFG->organization->city; |
|
| 585 | + EE_Registry::instance()->CFG->organization->STA_ID = isset($this->_req_data['organization_state']) |
|
| 586 | + ? absint($this->_req_data['organization_state']) |
|
| 587 | + : EE_Registry::instance()->CFG->organization->STA_ID; |
|
| 588 | + EE_Registry::instance()->CFG->organization->CNT_ISO = isset($this->_req_data['organization_country']) |
|
| 589 | + ? sanitize_text_field($this->_req_data['organization_country']) |
|
| 590 | + : EE_Registry::instance()->CFG->organization->CNT_ISO; |
|
| 591 | + EE_Registry::instance()->CFG->organization->zip = isset($this->_req_data['organization_zip']) |
|
| 592 | + ? sanitize_text_field($this->_req_data['organization_zip']) |
|
| 593 | + : EE_Registry::instance()->CFG->organization->zip; |
|
| 594 | + EE_Registry::instance()->CFG->organization->email = isset($this->_req_data['organization_email']) |
|
| 595 | + ? sanitize_email($this->_req_data['organization_email']) |
|
| 596 | + : EE_Registry::instance()->CFG->organization->email; |
|
| 597 | + EE_Registry::instance()->CFG->organization->vat = isset($this->_req_data['organization_vat']) |
|
| 598 | + ? sanitize_text_field($this->_req_data['organization_vat']) |
|
| 599 | + : EE_Registry::instance()->CFG->organization->vat; |
|
| 600 | + EE_Registry::instance()->CFG->organization->phone = isset($this->_req_data['organization_phone']) |
|
| 601 | + ? sanitize_text_field($this->_req_data['organization_phone']) |
|
| 602 | + : EE_Registry::instance()->CFG->organization->phone; |
|
| 603 | + EE_Registry::instance()->CFG->organization->logo_url = isset($this->_req_data['organization_logo_url']) |
|
| 604 | + ? esc_url_raw($this->_req_data['organization_logo_url']) |
|
| 605 | + : EE_Registry::instance()->CFG->organization->logo_url; |
|
| 606 | + EE_Registry::instance()->CFG->organization->facebook = isset($this->_req_data['organization_facebook']) |
|
| 607 | + ? esc_url_raw($this->_req_data['organization_facebook']) |
|
| 608 | + : EE_Registry::instance()->CFG->organization->facebook; |
|
| 609 | + EE_Registry::instance()->CFG->organization->twitter = isset($this->_req_data['organization_twitter']) |
|
| 610 | + ? esc_url_raw($this->_req_data['organization_twitter']) |
|
| 611 | + : EE_Registry::instance()->CFG->organization->twitter; |
|
| 612 | + EE_Registry::instance()->CFG->organization->linkedin = isset($this->_req_data['organization_linkedin']) |
|
| 613 | + ? esc_url_raw($this->_req_data['organization_linkedin']) |
|
| 614 | + : EE_Registry::instance()->CFG->organization->linkedin; |
|
| 615 | + EE_Registry::instance()->CFG->organization->pinterest = isset($this->_req_data['organization_pinterest']) |
|
| 616 | + ? esc_url_raw($this->_req_data['organization_pinterest']) |
|
| 617 | + : EE_Registry::instance()->CFG->organization->pinterest; |
|
| 618 | + EE_Registry::instance()->CFG->organization->google = isset($this->_req_data['organization_google']) |
|
| 619 | + ? esc_url_raw($this->_req_data['organization_google']) |
|
| 620 | + : EE_Registry::instance()->CFG->organization->google; |
|
| 621 | + EE_Registry::instance()->CFG->organization->instagram = isset($this->_req_data['organization_instagram']) |
|
| 622 | + ? esc_url_raw($this->_req_data['organization_instagram']) |
|
| 623 | + : EE_Registry::instance()->CFG->organization->instagram; |
|
| 624 | + EE_Registry::instance()->CFG->core->ee_ueip_optin = isset($this->_req_data['ueip_optin']) |
|
| 625 | + && ! empty($this->_req_data['ueip_optin']) |
|
| 626 | + ? filter_var($this->_req_data['ueip_optin'], FILTER_VALIDATE_BOOLEAN) |
|
| 627 | + : EE_Registry::instance()->CFG->core->ee_ueip_optin; |
|
| 628 | + |
|
| 629 | + EE_Registry::instance()->CFG->currency = new EE_Currency_Config( |
|
| 630 | + EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 631 | + ); |
|
| 632 | + |
|
| 633 | + EE_Registry::instance()->CFG = apply_filters( |
|
| 634 | + 'FHEE__General_Settings_Admin_Page___update_your_organization_settings__CFG', |
|
| 635 | + EE_Registry::instance()->CFG |
|
| 636 | + ); |
|
| 637 | + |
|
| 638 | + $what = 'Your Organization Settings'; |
|
| 639 | + $success = $this->_update_espresso_configuration( |
|
| 640 | + $what, |
|
| 641 | + EE_Registry::instance()->CFG, |
|
| 642 | + __FILE__, |
|
| 643 | + __FUNCTION__, |
|
| 644 | + __LINE__ |
|
| 645 | + ); |
|
| 646 | + |
|
| 647 | + $this->_redirect_after_action($success, $what, 'updated', array('action' => 'default')); |
|
| 648 | + } |
|
| 649 | + |
|
| 650 | + |
|
| 651 | + |
|
| 652 | + /************* Admin Options *************/ |
|
| 653 | + |
|
| 654 | + |
|
| 655 | + /** |
|
| 656 | + * _admin_option_settings |
|
| 657 | + * |
|
| 658 | + * @throws \EE_Error |
|
| 659 | + * @throws \LogicException |
|
| 660 | + */ |
|
| 661 | + protected function _admin_option_settings() |
|
| 662 | + { |
|
| 663 | + $this->_template_args['admin_page_content'] = ''; |
|
| 664 | + try { |
|
| 665 | + $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 666 | + // still need this for the old school form in Extend_General_Settings_Admin_Page |
|
| 667 | + $this->_template_args['values'] = $this->_yes_no_values; |
|
| 668 | + // also need to account for the do_action that was in the old template |
|
| 669 | + $admin_options_settings_form->setTemplateArgs($this->_template_args); |
|
| 670 | + $this->_template_args['admin_page_content'] = $admin_options_settings_form->display(); |
|
| 671 | + } catch (Exception $e) { |
|
| 672 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 673 | + } |
|
| 674 | + $this->_set_add_edit_form_tags('update_admin_option_settings'); |
|
| 675 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 676 | + $this->display_admin_page_with_sidebar(); |
|
| 677 | + } |
|
| 678 | + |
|
| 679 | + |
|
| 680 | + /** |
|
| 681 | + * _update_admin_option_settings |
|
| 682 | + * |
|
| 683 | + * @throws \EE_Error |
|
| 684 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 685 | + * @throws \EventEspresso\core\exceptions\InvalidFormSubmissionException |
|
| 686 | + * @throws \InvalidArgumentException |
|
| 687 | + * @throws \LogicException |
|
| 688 | + */ |
|
| 689 | + protected function _update_admin_option_settings() |
|
| 690 | + { |
|
| 691 | + try { |
|
| 692 | + $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 693 | + $admin_options_settings_form->process($this->_req_data[ $admin_options_settings_form->slug() ]); |
|
| 694 | + EE_Registry::instance()->CFG->admin = apply_filters( |
|
| 695 | + 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__CFG_admin', |
|
| 696 | + EE_Registry::instance()->CFG->admin |
|
| 697 | + ); |
|
| 698 | + } catch (Exception $e) { |
|
| 699 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 700 | + } |
|
| 701 | + $this->_redirect_after_action( |
|
| 702 | + apply_filters( |
|
| 703 | + 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__success', |
|
| 704 | + $this->_update_espresso_configuration( |
|
| 705 | + 'Admin Options', |
|
| 706 | + EE_Registry::instance()->CFG->admin, |
|
| 707 | + __FILE__, |
|
| 708 | + __FUNCTION__, |
|
| 709 | + __LINE__ |
|
| 710 | + ) |
|
| 711 | + ), |
|
| 712 | + 'Admin Options', |
|
| 713 | + 'updated', |
|
| 714 | + array('action' => 'admin_option_settings') |
|
| 715 | + ); |
|
| 716 | + } |
|
| 717 | + |
|
| 718 | + |
|
| 719 | + /************* Countries *************/ |
|
| 720 | + |
|
| 721 | + |
|
| 722 | + /** |
|
| 723 | + * Output Country Settings view. |
|
| 724 | + * |
|
| 725 | + * @throws DomainException |
|
| 726 | + * @throws EE_Error |
|
| 727 | + */ |
|
| 728 | + protected function _country_settings() |
|
| 729 | + { |
|
| 730 | + $CNT_ISO = isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 731 | + ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 732 | + : 'US'; |
|
| 733 | + $CNT_ISO = isset($this->_req_data['country']) |
|
| 734 | + ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 735 | + : $CNT_ISO; |
|
| 736 | + |
|
| 737 | + // load field generator helper |
|
| 738 | + |
|
| 739 | + $this->_template_args['values'] = $this->_yes_no_values; |
|
| 740 | + |
|
| 741 | + $this->_template_args['countries'] = new EE_Question_Form_Input( |
|
| 742 | + EE_Question::new_instance( |
|
| 743 | + array( |
|
| 744 | + 'QST_ID' => 0, |
|
| 745 | + 'QST_display_text' => __('Select Country', 'event_espresso'), |
|
| 746 | + 'QST_system' => 'admin-country', |
|
| 747 | + ) |
|
| 748 | + ), |
|
| 749 | + EE_Answer::new_instance( |
|
| 750 | + array( |
|
| 751 | + 'ANS_ID' => 0, |
|
| 752 | + 'ANS_value' => $CNT_ISO, |
|
| 753 | + ) |
|
| 754 | + ), |
|
| 755 | + array( |
|
| 756 | + 'input_id' => 'country', |
|
| 757 | + 'input_name' => 'country', |
|
| 758 | + 'input_prefix' => '', |
|
| 759 | + 'append_qstn_id' => false, |
|
| 760 | + ) |
|
| 761 | + ); |
|
| 762 | + |
|
| 763 | + add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 764 | + add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 765 | + $this->_template_args['country_details_settings'] = $this->display_country_settings(); |
|
| 766 | + $this->_template_args['country_states_settings'] = $this->display_country_states(); |
|
| 767 | + |
|
| 768 | + $this->_set_add_edit_form_tags('update_country_settings'); |
|
| 769 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 770 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 771 | + GEN_SET_TEMPLATE_PATH . 'countries_settings.template.php', |
|
| 772 | + $this->_template_args, |
|
| 773 | + true |
|
| 774 | + ); |
|
| 775 | + $this->display_admin_page_with_no_sidebar(); |
|
| 776 | + } |
|
| 777 | + |
|
| 778 | + |
|
| 779 | + /** |
|
| 780 | + * display_country_settings |
|
| 781 | + * |
|
| 782 | + * @access public |
|
| 783 | + * @param string $CNT_ISO |
|
| 784 | + * @return mixed string | array |
|
| 785 | + * @throws DomainException |
|
| 786 | + */ |
|
| 787 | + public function display_country_settings($CNT_ISO = '') |
|
| 788 | + { |
|
| 789 | + |
|
| 790 | + $CNT_ISO = isset($this->_req_data['country']) |
|
| 791 | + ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 792 | + : $CNT_ISO; |
|
| 793 | + if (! $CNT_ISO) { |
|
| 794 | + return ''; |
|
| 795 | + } |
|
| 796 | + |
|
| 797 | + // for ajax |
|
| 798 | + remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 799 | + remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 800 | + add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 801 | + add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 802 | + $country = EEM_Country::instance()->get_one_by_ID($CNT_ISO); |
|
| 803 | + |
|
| 804 | + $country_input_types = array( |
|
| 805 | + 'CNT_active' => array( |
|
| 806 | + 'type' => 'RADIO_BTN', |
|
| 807 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 808 | + 'class' => '', |
|
| 809 | + 'options' => $this->_yes_no_values, |
|
| 810 | + 'use_desc_4_label' => true, |
|
| 811 | + ), |
|
| 812 | + 'CNT_ISO' => array( |
|
| 813 | + 'type' => 'TEXT', |
|
| 814 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 815 | + 'class' => 'small-text', |
|
| 816 | + ), |
|
| 817 | + 'CNT_ISO3' => array( |
|
| 818 | + 'type' => 'TEXT', |
|
| 819 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 820 | + 'class' => 'small-text', |
|
| 821 | + ), |
|
| 822 | + 'RGN_ID' => array( |
|
| 823 | + 'type' => 'TEXT', |
|
| 824 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 825 | + 'class' => 'small-text', |
|
| 826 | + ), |
|
| 827 | + 'CNT_name' => array( |
|
| 828 | + 'type' => 'TEXT', |
|
| 829 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 830 | + 'class' => 'regular-text', |
|
| 831 | + ), |
|
| 832 | + 'CNT_cur_code' => array( |
|
| 833 | + 'type' => 'TEXT', |
|
| 834 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 835 | + 'class' => 'small-text', |
|
| 836 | + ), |
|
| 837 | + 'CNT_cur_single' => array( |
|
| 838 | + 'type' => 'TEXT', |
|
| 839 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 840 | + 'class' => 'medium-text', |
|
| 841 | + ), |
|
| 842 | + 'CNT_cur_plural' => array( |
|
| 843 | + 'type' => 'TEXT', |
|
| 844 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 845 | + 'class' => 'medium-text', |
|
| 846 | + ), |
|
| 847 | + 'CNT_cur_sign' => array( |
|
| 848 | + 'type' => 'TEXT', |
|
| 849 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 850 | + 'class' => 'small-text', |
|
| 851 | + 'htmlentities' => false, |
|
| 852 | + ), |
|
| 853 | + 'CNT_cur_sign_b4' => array( |
|
| 854 | + 'type' => 'RADIO_BTN', |
|
| 855 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 856 | + 'class' => '', |
|
| 857 | + 'options' => $this->_yes_no_values, |
|
| 858 | + 'use_desc_4_label' => true, |
|
| 859 | + ), |
|
| 860 | + 'CNT_cur_dec_plc' => array( |
|
| 861 | + 'type' => 'RADIO_BTN', |
|
| 862 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 863 | + 'class' => '', |
|
| 864 | + 'options' => array( |
|
| 865 | + array('id' => 0, 'text' => ''), |
|
| 866 | + array('id' => 1, 'text' => ''), |
|
| 867 | + array('id' => 2, 'text' => ''), |
|
| 868 | + array('id' => 3, 'text' => ''), |
|
| 869 | + ), |
|
| 870 | + ), |
|
| 871 | + 'CNT_cur_dec_mrk' => array( |
|
| 872 | + 'type' => 'RADIO_BTN', |
|
| 873 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 874 | + 'class' => '', |
|
| 875 | + 'options' => array( |
|
| 876 | + array( |
|
| 877 | + 'id' => ',', |
|
| 878 | + 'text' => __(', (comma)', 'event_espresso'), |
|
| 879 | + ), |
|
| 880 | + array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 881 | + ), |
|
| 882 | + 'use_desc_4_label' => true, |
|
| 883 | + ), |
|
| 884 | + 'CNT_cur_thsnds' => array( |
|
| 885 | + 'type' => 'RADIO_BTN', |
|
| 886 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 887 | + 'class' => '', |
|
| 888 | + 'options' => array( |
|
| 889 | + array( |
|
| 890 | + 'id' => ',', |
|
| 891 | + 'text' => __(', (comma)', 'event_espresso'), |
|
| 892 | + ), |
|
| 893 | + array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 894 | + ), |
|
| 895 | + 'use_desc_4_label' => true, |
|
| 896 | + ), |
|
| 897 | + 'CNT_tel_code' => array( |
|
| 898 | + 'type' => 'TEXT', |
|
| 899 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 900 | + 'class' => 'small-text', |
|
| 901 | + ), |
|
| 902 | + 'CNT_is_EU' => array( |
|
| 903 | + 'type' => 'RADIO_BTN', |
|
| 904 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 905 | + 'class' => '', |
|
| 906 | + 'options' => $this->_yes_no_values, |
|
| 907 | + 'use_desc_4_label' => true, |
|
| 908 | + ), |
|
| 909 | + ); |
|
| 910 | + $this->_template_args['inputs'] = EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 911 | + $country, |
|
| 912 | + $country_input_types |
|
| 913 | + ); |
|
| 914 | + $country_details_settings = EEH_Template::display_template( |
|
| 915 | + GEN_SET_TEMPLATE_PATH . 'country_details_settings.template.php', |
|
| 916 | + $this->_template_args, |
|
| 917 | + true |
|
| 918 | + ); |
|
| 919 | + |
|
| 920 | + if (defined('DOING_AJAX')) { |
|
| 921 | + $notices = EE_Error::get_notices(false, false, false); |
|
| 922 | + echo wp_json_encode( |
|
| 923 | + array( |
|
| 924 | + 'return_data' => $country_details_settings, |
|
| 925 | + 'success' => $notices['success'], |
|
| 926 | + 'errors' => $notices['errors'], |
|
| 927 | + ) |
|
| 928 | + ); |
|
| 929 | + die(); |
|
| 930 | + } else { |
|
| 931 | + return $country_details_settings; |
|
| 932 | + } |
|
| 933 | + } |
|
| 934 | + |
|
| 935 | + |
|
| 936 | + /** |
|
| 937 | + * display_country_states |
|
| 938 | + * |
|
| 939 | + * @access public |
|
| 940 | + * @param string $CNT_ISO |
|
| 941 | + * @return string |
|
| 942 | + * @throws DomainException |
|
| 943 | + */ |
|
| 944 | + public function display_country_states($CNT_ISO = '') |
|
| 945 | + { |
|
| 946 | + |
|
| 947 | + $CNT_ISO = isset($this->_req_data['country']) ? sanitize_text_field($this->_req_data['country']) : $CNT_ISO; |
|
| 948 | + |
|
| 949 | + if (! $CNT_ISO) { |
|
| 950 | + return ''; |
|
| 951 | + } |
|
| 952 | + // for ajax |
|
| 953 | + remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 954 | + remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 955 | + add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'state_form_field_label_wrap'), 10, 2); |
|
| 956 | + add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'state_form_field_input__wrap'), 10, 2); |
|
| 957 | + $states = EEM_State::instance()->get_all_states_for_these_countries(array($CNT_ISO => $CNT_ISO)); |
|
| 958 | + |
|
| 959 | + if ($states) { |
|
| 960 | + foreach ($states as $STA_ID => $state) { |
|
| 961 | + if ($state instanceof EE_State) { |
|
| 962 | + // STA_abbrev STA_name STA_active |
|
| 963 | + $state_input_types = array( |
|
| 964 | + 'STA_abbrev' => array( |
|
| 965 | + 'type' => 'TEXT', |
|
| 966 | + 'input_name' => 'states[' . $STA_ID . ']', |
|
| 967 | + 'class' => 'mid-text', |
|
| 968 | + ), |
|
| 969 | + 'STA_name' => array( |
|
| 970 | + 'type' => 'TEXT', |
|
| 971 | + 'input_name' => 'states[' . $STA_ID . ']', |
|
| 972 | + 'class' => 'regular-text', |
|
| 973 | + ), |
|
| 974 | + 'STA_active' => array( |
|
| 975 | + 'type' => 'RADIO_BTN', |
|
| 976 | + 'input_name' => 'states[' . $STA_ID . ']', |
|
| 977 | + 'options' => $this->_yes_no_values, |
|
| 978 | + 'use_desc_4_label' => true, |
|
| 979 | + ), |
|
| 980 | + ); |
|
| 981 | + $this->_template_args['states'][ $STA_ID ]['inputs'] = |
|
| 982 | + EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 983 | + $state, |
|
| 984 | + $state_input_types |
|
| 985 | + ); |
|
| 986 | + $query_args = array( |
|
| 987 | + 'action' => 'delete_state', |
|
| 988 | + 'STA_ID' => $STA_ID, |
|
| 989 | + 'CNT_ISO' => $CNT_ISO, |
|
| 990 | + 'STA_abbrev' => $state->abbrev(), |
|
| 991 | + ); |
|
| 992 | + $this->_template_args['states'][ $STA_ID ]['delete_state_url'] = |
|
| 993 | + EE_Admin_Page::add_query_args_and_nonce( |
|
| 994 | + $query_args, |
|
| 995 | + GEN_SET_ADMIN_URL |
|
| 996 | + ); |
|
| 997 | + } |
|
| 998 | + } |
|
| 999 | + } else { |
|
| 1000 | + $this->_template_args['states'] = false; |
|
| 1001 | + } |
|
| 1002 | + |
|
| 1003 | + $this->_template_args['add_new_state_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
| 1004 | + array('action' => 'add_new_state'), |
|
| 1005 | + GEN_SET_ADMIN_URL |
|
| 1006 | + ); |
|
| 1007 | + |
|
| 1008 | + $state_details_settings = EEH_Template::display_template( |
|
| 1009 | + GEN_SET_TEMPLATE_PATH . 'state_details_settings.template.php', |
|
| 1010 | + $this->_template_args, |
|
| 1011 | + true |
|
| 1012 | + ); |
|
| 1013 | + |
|
| 1014 | + if (defined('DOING_AJAX')) { |
|
| 1015 | + $notices = EE_Error::get_notices(false, false, false); |
|
| 1016 | + echo wp_json_encode( |
|
| 1017 | + array( |
|
| 1018 | + 'return_data' => $state_details_settings, |
|
| 1019 | + 'success' => $notices['success'], |
|
| 1020 | + 'errors' => $notices['errors'], |
|
| 1021 | + ) |
|
| 1022 | + ); |
|
| 1023 | + die(); |
|
| 1024 | + } else { |
|
| 1025 | + return $state_details_settings; |
|
| 1026 | + } |
|
| 1027 | + } |
|
| 1028 | + |
|
| 1029 | + |
|
| 1030 | + /** |
|
| 1031 | + * add_new_state |
|
| 1032 | + * |
|
| 1033 | + * @access public |
|
| 1034 | + * @return void |
|
| 1035 | + * @throws EE_Error |
|
| 1036 | + */ |
|
| 1037 | + public function add_new_state() |
|
| 1038 | + { |
|
| 1039 | + |
|
| 1040 | + $success = true; |
|
| 1041 | + |
|
| 1042 | + $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 1043 | + ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 1044 | + : false; |
|
| 1045 | + if (! $CNT_ISO) { |
|
| 1046 | + EE_Error::add_error( |
|
| 1047 | + __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 1048 | + __FILE__, |
|
| 1049 | + __FUNCTION__, |
|
| 1050 | + __LINE__ |
|
| 1051 | + ); |
|
| 1052 | + $success = false; |
|
| 1053 | + } |
|
| 1054 | + $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 1055 | + ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 1056 | + : false; |
|
| 1057 | + if (! $STA_abbrev) { |
|
| 1058 | + EE_Error::add_error( |
|
| 1059 | + __('No State ISO code or an invalid State ISO code was received.', 'event_espresso'), |
|
| 1060 | + __FILE__, |
|
| 1061 | + __FUNCTION__, |
|
| 1062 | + __LINE__ |
|
| 1063 | + ); |
|
| 1064 | + $success = false; |
|
| 1065 | + } |
|
| 1066 | + $STA_name = isset($this->_req_data['STA_name']) |
|
| 1067 | + ? sanitize_text_field($this->_req_data['STA_name']) |
|
| 1068 | + : false; |
|
| 1069 | + if (! $STA_name) { |
|
| 1070 | + EE_Error::add_error( |
|
| 1071 | + __('No State name or an invalid State name was received.', 'event_espresso'), |
|
| 1072 | + __FILE__, |
|
| 1073 | + __FUNCTION__, |
|
| 1074 | + __LINE__ |
|
| 1075 | + ); |
|
| 1076 | + $success = false; |
|
| 1077 | + } |
|
| 1078 | + |
|
| 1079 | + if ($success) { |
|
| 1080 | + $cols_n_values = array( |
|
| 1081 | + 'CNT_ISO' => $CNT_ISO, |
|
| 1082 | + 'STA_abbrev' => $STA_abbrev, |
|
| 1083 | + 'STA_name' => $STA_name, |
|
| 1084 | + 'STA_active' => true, |
|
| 1085 | + ); |
|
| 1086 | + $success = EEM_State::instance()->insert($cols_n_values); |
|
| 1087 | + EE_Error::add_success(__('The State was added successfully.', 'event_espresso')); |
|
| 1088 | + } |
|
| 1089 | + |
|
| 1090 | + if (defined('DOING_AJAX')) { |
|
| 1091 | + $notices = EE_Error::get_notices(false, false, false); |
|
| 1092 | + echo wp_json_encode(array_merge($notices, array('return_data' => $CNT_ISO))); |
|
| 1093 | + die(); |
|
| 1094 | + } else { |
|
| 1095 | + $this->_redirect_after_action($success, 'State', 'added', array('action' => 'country_settings')); |
|
| 1096 | + } |
|
| 1097 | + } |
|
| 1098 | + |
|
| 1099 | + |
|
| 1100 | + /** |
|
| 1101 | + * delete_state |
|
| 1102 | + * |
|
| 1103 | + * @access public |
|
| 1104 | + * @return boolean |
|
| 1105 | + */ |
|
| 1106 | + public function delete_state() |
|
| 1107 | + { |
|
| 1108 | + $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 1109 | + ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 1110 | + : false; |
|
| 1111 | + $STA_ID = isset($this->_req_data['STA_ID']) |
|
| 1112 | + ? sanitize_text_field($this->_req_data['STA_ID']) |
|
| 1113 | + : false; |
|
| 1114 | + $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 1115 | + ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 1116 | + : false; |
|
| 1117 | + if (! $STA_ID) { |
|
| 1118 | + EE_Error::add_error( |
|
| 1119 | + __('No State ID or an invalid State ID was received.', 'event_espresso'), |
|
| 1120 | + __FILE__, |
|
| 1121 | + __FUNCTION__, |
|
| 1122 | + __LINE__ |
|
| 1123 | + ); |
|
| 1124 | + return false; |
|
| 1125 | + } |
|
| 1126 | + |
|
| 1127 | + $success = EEM_State::instance()->delete_by_ID($STA_ID); |
|
| 1128 | + if ($success !== false) { |
|
| 1129 | + do_action( |
|
| 1130 | + 'AHEE__General_Settings_Admin_Page__delete_state__state_deleted', |
|
| 1131 | + $CNT_ISO, |
|
| 1132 | + $STA_ID, |
|
| 1133 | + array('STA_abbrev' => $STA_abbrev) |
|
| 1134 | + ); |
|
| 1135 | + EE_Error::add_success(__('The State was deleted successfully.', 'event_espresso')); |
|
| 1136 | + } |
|
| 1137 | + if (defined('DOING_AJAX')) { |
|
| 1138 | + $notices = EE_Error::get_notices(false, false); |
|
| 1139 | + $notices['return_data'] = true; |
|
| 1140 | + echo wp_json_encode($notices); |
|
| 1141 | + die(); |
|
| 1142 | + } else { |
|
| 1143 | + $this->_redirect_after_action( |
|
| 1144 | + $success, |
|
| 1145 | + 'State', |
|
| 1146 | + 'deleted', |
|
| 1147 | + array('action' => 'country_settings') |
|
| 1148 | + ); |
|
| 1149 | + } |
|
| 1150 | + } |
|
| 1151 | + |
|
| 1152 | + |
|
| 1153 | + /** |
|
| 1154 | + * _update_country_settings |
|
| 1155 | + * |
|
| 1156 | + * @access protected |
|
| 1157 | + * @return void |
|
| 1158 | + * @throws EE_Error |
|
| 1159 | + */ |
|
| 1160 | + protected function _update_country_settings() |
|
| 1161 | + { |
|
| 1162 | + // grab the country ISO code |
|
| 1163 | + $CNT_ISO = isset($this->_req_data['country']) |
|
| 1164 | + ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 1165 | + : false; |
|
| 1166 | + if (! $CNT_ISO) { |
|
| 1167 | + EE_Error::add_error( |
|
| 1168 | + __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 1169 | + __FILE__, |
|
| 1170 | + __FUNCTION__, |
|
| 1171 | + __LINE__ |
|
| 1172 | + ); |
|
| 1173 | + |
|
| 1174 | + return; |
|
| 1175 | + } |
|
| 1176 | + $cols_n_values = array(); |
|
| 1177 | + $cols_n_values['CNT_ISO3'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3']) |
|
| 1178 | + ? strtoupper(sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3'])) |
|
| 1179 | + : false; |
|
| 1180 | + $cols_n_values['RGN_ID'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1181 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1182 | + : null; |
|
| 1183 | + $cols_n_values['CNT_name'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1184 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1185 | + : null; |
|
| 1186 | + $cols_n_values['CNT_cur_code'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code']) |
|
| 1187 | + ? strtoupper(sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code'])) |
|
| 1188 | + : 'USD'; |
|
| 1189 | + $cols_n_values['CNT_cur_single'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single']) |
|
| 1190 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single']) |
|
| 1191 | + : 'dollar'; |
|
| 1192 | + $cols_n_values['CNT_cur_plural'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural']) |
|
| 1193 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural']) |
|
| 1194 | + : 'dollars'; |
|
| 1195 | + $cols_n_values['CNT_cur_sign'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign']) |
|
| 1196 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign']) |
|
| 1197 | + : '$'; |
|
| 1198 | + $cols_n_values['CNT_cur_sign_b4'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4']) |
|
| 1199 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4']) |
|
| 1200 | + : true; |
|
| 1201 | + $cols_n_values['CNT_cur_dec_plc'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc']) |
|
| 1202 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc']) |
|
| 1203 | + : 2; |
|
| 1204 | + $cols_n_values['CNT_cur_dec_mrk'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk']) |
|
| 1205 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk']) |
|
| 1206 | + : '.'; |
|
| 1207 | + $cols_n_values['CNT_cur_thsnds'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds']) |
|
| 1208 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds']) |
|
| 1209 | + : ','; |
|
| 1210 | + $cols_n_values['CNT_tel_code'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1211 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1212 | + : null; |
|
| 1213 | + $cols_n_values['CNT_is_EU'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1214 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1215 | + : false; |
|
| 1216 | + $cols_n_values['CNT_active'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1217 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1218 | + : false; |
|
| 1219 | + // allow filtering of country data |
|
| 1220 | + $cols_n_values = apply_filters( |
|
| 1221 | + 'FHEE__General_Settings_Admin_Page___update_country_settings__cols_n_values', |
|
| 1222 | + $cols_n_values |
|
| 1223 | + ); |
|
| 1224 | + |
|
| 1225 | + // where values |
|
| 1226 | + $where_cols_n_values = array(array('CNT_ISO' => $CNT_ISO)); |
|
| 1227 | + // run the update |
|
| 1228 | + $success = EEM_Country::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1229 | + |
|
| 1230 | + if (isset($this->_req_data['states']) && is_array($this->_req_data['states']) && $success !== false) { |
|
| 1231 | + // allow filtering of states data |
|
| 1232 | + $states = apply_filters( |
|
| 1233 | + 'FHEE__General_Settings_Admin_Page___update_country_settings__states', |
|
| 1234 | + $this->_req_data['states'] |
|
| 1235 | + ); |
|
| 1236 | + |
|
| 1237 | + // loop thru state data ( looks like : states[75][STA_name] ) |
|
| 1238 | + foreach ($states as $STA_ID => $state) { |
|
| 1239 | + $cols_n_values = array( |
|
| 1240 | + 'CNT_ISO' => $CNT_ISO, |
|
| 1241 | + 'STA_abbrev' => sanitize_text_field($state['STA_abbrev']), |
|
| 1242 | + 'STA_name' => sanitize_text_field($state['STA_name']), |
|
| 1243 | + 'STA_active' => (bool) absint($state['STA_active']), |
|
| 1244 | + ); |
|
| 1245 | + // where values |
|
| 1246 | + $where_cols_n_values = array(array('STA_ID' => $STA_ID)); |
|
| 1247 | + // run the update |
|
| 1248 | + $success = EEM_State::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1249 | + if ($success !== false) { |
|
| 1250 | + do_action( |
|
| 1251 | + 'AHEE__General_Settings_Admin_Page__update_country_settings__state_saved', |
|
| 1252 | + $CNT_ISO, |
|
| 1253 | + $STA_ID, |
|
| 1254 | + $cols_n_values |
|
| 1255 | + ); |
|
| 1256 | + } |
|
| 1257 | + } |
|
| 1258 | + } |
|
| 1259 | + // check if country being edited matches org option country, and if so, then update EE_Config with new settings |
|
| 1260 | + if (isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 1261 | + && $CNT_ISO == EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 1262 | + ) { |
|
| 1263 | + EE_Registry::instance()->CFG->currency = new EE_Currency_Config($CNT_ISO); |
|
| 1264 | + EE_Registry::instance()->CFG->update_espresso_config(); |
|
| 1265 | + } |
|
| 1266 | + |
|
| 1267 | + if ($success !== false) { |
|
| 1268 | + EE_Error::add_success( |
|
| 1269 | + esc_html__('Country Settings updated successfully.', 'event_espresso') |
|
| 1270 | + ); |
|
| 1271 | + } |
|
| 1272 | + $this->_redirect_after_action( |
|
| 1273 | + $success, |
|
| 1274 | + '', |
|
| 1275 | + '', |
|
| 1276 | + array('action' => 'country_settings', 'country' => $CNT_ISO), |
|
| 1277 | + true |
|
| 1278 | + ); |
|
| 1279 | + } |
|
| 1280 | + |
|
| 1281 | + |
|
| 1282 | + /** |
|
| 1283 | + * form_form_field_label_wrap |
|
| 1284 | + * |
|
| 1285 | + * @access public |
|
| 1286 | + * @param string $label |
|
| 1287 | + * @return string |
|
| 1288 | + */ |
|
| 1289 | + public function country_form_field_label_wrap($label, $required_text) |
|
| 1290 | + { |
|
| 1291 | + return ' |
|
| 1292 | 1292 | <tr> |
| 1293 | 1293 | <th> |
| 1294 | 1294 | ' . $label . ' |
| 1295 | 1295 | </th>'; |
| 1296 | - } |
|
| 1297 | - |
|
| 1298 | - |
|
| 1299 | - /** |
|
| 1300 | - * form_form_field_input__wrap |
|
| 1301 | - * |
|
| 1302 | - * @access public |
|
| 1303 | - * @param string $label |
|
| 1304 | - * @return string |
|
| 1305 | - */ |
|
| 1306 | - public function country_form_field_input__wrap($input, $label) |
|
| 1307 | - { |
|
| 1308 | - return ' |
|
| 1296 | + } |
|
| 1297 | + |
|
| 1298 | + |
|
| 1299 | + /** |
|
| 1300 | + * form_form_field_input__wrap |
|
| 1301 | + * |
|
| 1302 | + * @access public |
|
| 1303 | + * @param string $label |
|
| 1304 | + * @return string |
|
| 1305 | + */ |
|
| 1306 | + public function country_form_field_input__wrap($input, $label) |
|
| 1307 | + { |
|
| 1308 | + return ' |
|
| 1309 | 1309 | <td class="general-settings-country-input-td"> |
| 1310 | 1310 | ' . $input . ' |
| 1311 | 1311 | </td> |
| 1312 | 1312 | </tr>'; |
| 1313 | - } |
|
| 1314 | - |
|
| 1315 | - |
|
| 1316 | - /** |
|
| 1317 | - * form_form_field_label_wrap |
|
| 1318 | - * |
|
| 1319 | - * @access public |
|
| 1320 | - * @param string $label |
|
| 1321 | - * @param string $required_text |
|
| 1322 | - * @return string |
|
| 1323 | - */ |
|
| 1324 | - public function state_form_field_label_wrap($label, $required_text) |
|
| 1325 | - { |
|
| 1326 | - return $required_text; |
|
| 1327 | - } |
|
| 1328 | - |
|
| 1329 | - |
|
| 1330 | - /** |
|
| 1331 | - * form_form_field_input__wrap |
|
| 1332 | - * |
|
| 1333 | - * @access public |
|
| 1334 | - * @param string $label |
|
| 1335 | - * @return string |
|
| 1336 | - */ |
|
| 1337 | - public function state_form_field_input__wrap($input, $label) |
|
| 1338 | - { |
|
| 1339 | - return ' |
|
| 1313 | + } |
|
| 1314 | + |
|
| 1315 | + |
|
| 1316 | + /** |
|
| 1317 | + * form_form_field_label_wrap |
|
| 1318 | + * |
|
| 1319 | + * @access public |
|
| 1320 | + * @param string $label |
|
| 1321 | + * @param string $required_text |
|
| 1322 | + * @return string |
|
| 1323 | + */ |
|
| 1324 | + public function state_form_field_label_wrap($label, $required_text) |
|
| 1325 | + { |
|
| 1326 | + return $required_text; |
|
| 1327 | + } |
|
| 1328 | + |
|
| 1329 | + |
|
| 1330 | + /** |
|
| 1331 | + * form_form_field_input__wrap |
|
| 1332 | + * |
|
| 1333 | + * @access public |
|
| 1334 | + * @param string $label |
|
| 1335 | + * @return string |
|
| 1336 | + */ |
|
| 1337 | + public function state_form_field_input__wrap($input, $label) |
|
| 1338 | + { |
|
| 1339 | + return ' |
|
| 1340 | 1340 | <td class="general-settings-country-state-input-td"> |
| 1341 | 1341 | ' . $input . ' |
| 1342 | 1342 | </td>'; |
| 1343 | - } |
|
| 1344 | - |
|
| 1345 | - |
|
| 1346 | - /***********/ |
|
| 1347 | - |
|
| 1348 | - |
|
| 1349 | - /** |
|
| 1350 | - * displays edit and view links for critical EE pages |
|
| 1351 | - * |
|
| 1352 | - * @access public |
|
| 1353 | - * @param int $ee_page_id |
|
| 1354 | - * @return string |
|
| 1355 | - */ |
|
| 1356 | - public static function edit_view_links($ee_page_id) |
|
| 1357 | - { |
|
| 1358 | - $links = '<a href="' |
|
| 1359 | - . add_query_arg( |
|
| 1360 | - array('post' => $ee_page_id, 'action' => 'edit'), |
|
| 1361 | - admin_url('post.php') |
|
| 1362 | - ) |
|
| 1363 | - . '" >' |
|
| 1364 | - . __('Edit', 'event_espresso') |
|
| 1365 | - . '</a>'; |
|
| 1366 | - $links .= ' | '; |
|
| 1367 | - $links .= '<a href="' . get_permalink($ee_page_id) . '" >' . __('View', 'event_espresso') . '</a>'; |
|
| 1368 | - |
|
| 1369 | - return $links; |
|
| 1370 | - } |
|
| 1371 | - |
|
| 1372 | - |
|
| 1373 | - /** |
|
| 1374 | - * displays page and shortcode status for critical EE pages |
|
| 1375 | - * |
|
| 1376 | - * @param WP page object $ee_page |
|
| 1377 | - * @return string |
|
| 1378 | - */ |
|
| 1379 | - public static function page_and_shortcode_status($ee_page, $shortcode) |
|
| 1380 | - { |
|
| 1381 | - |
|
| 1382 | - // page status |
|
| 1383 | - if (isset($ee_page->post_status) && $ee_page->post_status == 'publish') { |
|
| 1384 | - $pg_colour = 'green'; |
|
| 1385 | - $pg_status = sprintf(__('Page%sStatus%sOK', 'event_espresso'), ' ', ' '); |
|
| 1386 | - } else { |
|
| 1387 | - $pg_colour = 'red'; |
|
| 1388 | - $pg_status = sprintf(__('Page%sVisibility%sProblem', 'event_espresso'), ' ', ' '); |
|
| 1389 | - } |
|
| 1390 | - |
|
| 1391 | - // shortcode status |
|
| 1392 | - if (isset($ee_page->post_content) && strpos($ee_page->post_content, $shortcode) !== false) { |
|
| 1393 | - $sc_colour = 'green'; |
|
| 1394 | - $sc_status = sprintf(__('Shortcode%sOK', 'event_espresso'), ' '); |
|
| 1395 | - } else { |
|
| 1396 | - $sc_colour = 'red'; |
|
| 1397 | - $sc_status = sprintf(__('Shortcode%sProblem', 'event_espresso'), ' '); |
|
| 1398 | - } |
|
| 1399 | - |
|
| 1400 | - return '<span style="color:' . $pg_colour . '; margin-right:2em;"><strong>' |
|
| 1401 | - . $pg_status |
|
| 1402 | - . '</strong></span><span style="color:' . $sc_colour . '"><strong>' . $sc_status . '</strong></span>'; |
|
| 1403 | - } |
|
| 1404 | - |
|
| 1405 | - |
|
| 1406 | - /** |
|
| 1407 | - * generates a dropdown of all parent pages - copied from WP core |
|
| 1408 | - * |
|
| 1409 | - * @param int $default |
|
| 1410 | - * @param int $parent |
|
| 1411 | - * @param int $level |
|
| 1412 | - */ |
|
| 1413 | - public static function page_settings_dropdown($default = 0, $parent = 0, $level = 0) |
|
| 1414 | - { |
|
| 1415 | - global $wpdb; |
|
| 1416 | - $items = $wpdb->get_results( |
|
| 1417 | - $wpdb->prepare( |
|
| 1418 | - "SELECT ID, post_parent, post_title FROM $wpdb->posts WHERE post_parent = %d AND post_type = 'page' AND post_status != 'trash' ORDER BY menu_order", |
|
| 1419 | - $parent |
|
| 1420 | - ) |
|
| 1421 | - ); |
|
| 1422 | - |
|
| 1423 | - if ($items) { |
|
| 1424 | - foreach ($items as $item) { |
|
| 1425 | - $pad = str_repeat(' ', $level * 3); |
|
| 1426 | - if ($item->ID == $default) { |
|
| 1427 | - $current = ' selected="selected"'; |
|
| 1428 | - } else { |
|
| 1429 | - $current = ''; |
|
| 1430 | - } |
|
| 1431 | - |
|
| 1432 | - echo "\n\t<option class='level-$level' value='$item->ID'$current>$pad " |
|
| 1433 | - . esc_html($item->post_title) |
|
| 1434 | - . "</option>"; |
|
| 1435 | - parent_dropdown($default, $item->ID, $level + 1); |
|
| 1436 | - } |
|
| 1437 | - } |
|
| 1438 | - } |
|
| 1439 | - |
|
| 1440 | - |
|
| 1441 | - /** |
|
| 1442 | - * Loads the scripts for the privacy settings form |
|
| 1443 | - */ |
|
| 1444 | - public function load_scripts_styles_privacy_settings() |
|
| 1445 | - { |
|
| 1446 | - $form_handler = LoaderFactory::getLoader()->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1447 | - $form_handler->enqueueStylesAndScripts(); |
|
| 1448 | - } |
|
| 1449 | - |
|
| 1450 | - |
|
| 1451 | - /** |
|
| 1452 | - * display the privacy settings form |
|
| 1453 | - */ |
|
| 1454 | - public function privacySettings() |
|
| 1455 | - { |
|
| 1456 | - $this->_set_add_edit_form_tags('update_privacy_settings'); |
|
| 1457 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 1458 | - $form_handler = LoaderFactory::getLoader()->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1459 | - $this->_template_args['admin_page_content'] = $form_handler->display(); |
|
| 1460 | - $this->display_admin_page_with_sidebar(); |
|
| 1461 | - } |
|
| 1462 | - |
|
| 1463 | - |
|
| 1464 | - /** |
|
| 1465 | - * Update the privacy settings from form data |
|
| 1466 | - */ |
|
| 1467 | - public function updatePrivacySettings() |
|
| 1468 | - { |
|
| 1469 | - $form_handler = LoaderFactory::getLoader()->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1470 | - $success = $form_handler->process($this->get_request_data()); |
|
| 1471 | - $this->_redirect_after_action( |
|
| 1472 | - $success, |
|
| 1473 | - esc_html__('Registration Form Options', 'event_espresso'), |
|
| 1474 | - 'updated', |
|
| 1475 | - array('action' => 'privacy_settings') |
|
| 1476 | - ); |
|
| 1477 | - } |
|
| 1343 | + } |
|
| 1344 | + |
|
| 1345 | + |
|
| 1346 | + /***********/ |
|
| 1347 | + |
|
| 1348 | + |
|
| 1349 | + /** |
|
| 1350 | + * displays edit and view links for critical EE pages |
|
| 1351 | + * |
|
| 1352 | + * @access public |
|
| 1353 | + * @param int $ee_page_id |
|
| 1354 | + * @return string |
|
| 1355 | + */ |
|
| 1356 | + public static function edit_view_links($ee_page_id) |
|
| 1357 | + { |
|
| 1358 | + $links = '<a href="' |
|
| 1359 | + . add_query_arg( |
|
| 1360 | + array('post' => $ee_page_id, 'action' => 'edit'), |
|
| 1361 | + admin_url('post.php') |
|
| 1362 | + ) |
|
| 1363 | + . '" >' |
|
| 1364 | + . __('Edit', 'event_espresso') |
|
| 1365 | + . '</a>'; |
|
| 1366 | + $links .= ' | '; |
|
| 1367 | + $links .= '<a href="' . get_permalink($ee_page_id) . '" >' . __('View', 'event_espresso') . '</a>'; |
|
| 1368 | + |
|
| 1369 | + return $links; |
|
| 1370 | + } |
|
| 1371 | + |
|
| 1372 | + |
|
| 1373 | + /** |
|
| 1374 | + * displays page and shortcode status for critical EE pages |
|
| 1375 | + * |
|
| 1376 | + * @param WP page object $ee_page |
|
| 1377 | + * @return string |
|
| 1378 | + */ |
|
| 1379 | + public static function page_and_shortcode_status($ee_page, $shortcode) |
|
| 1380 | + { |
|
| 1381 | + |
|
| 1382 | + // page status |
|
| 1383 | + if (isset($ee_page->post_status) && $ee_page->post_status == 'publish') { |
|
| 1384 | + $pg_colour = 'green'; |
|
| 1385 | + $pg_status = sprintf(__('Page%sStatus%sOK', 'event_espresso'), ' ', ' '); |
|
| 1386 | + } else { |
|
| 1387 | + $pg_colour = 'red'; |
|
| 1388 | + $pg_status = sprintf(__('Page%sVisibility%sProblem', 'event_espresso'), ' ', ' '); |
|
| 1389 | + } |
|
| 1390 | + |
|
| 1391 | + // shortcode status |
|
| 1392 | + if (isset($ee_page->post_content) && strpos($ee_page->post_content, $shortcode) !== false) { |
|
| 1393 | + $sc_colour = 'green'; |
|
| 1394 | + $sc_status = sprintf(__('Shortcode%sOK', 'event_espresso'), ' '); |
|
| 1395 | + } else { |
|
| 1396 | + $sc_colour = 'red'; |
|
| 1397 | + $sc_status = sprintf(__('Shortcode%sProblem', 'event_espresso'), ' '); |
|
| 1398 | + } |
|
| 1399 | + |
|
| 1400 | + return '<span style="color:' . $pg_colour . '; margin-right:2em;"><strong>' |
|
| 1401 | + . $pg_status |
|
| 1402 | + . '</strong></span><span style="color:' . $sc_colour . '"><strong>' . $sc_status . '</strong></span>'; |
|
| 1403 | + } |
|
| 1404 | + |
|
| 1405 | + |
|
| 1406 | + /** |
|
| 1407 | + * generates a dropdown of all parent pages - copied from WP core |
|
| 1408 | + * |
|
| 1409 | + * @param int $default |
|
| 1410 | + * @param int $parent |
|
| 1411 | + * @param int $level |
|
| 1412 | + */ |
|
| 1413 | + public static function page_settings_dropdown($default = 0, $parent = 0, $level = 0) |
|
| 1414 | + { |
|
| 1415 | + global $wpdb; |
|
| 1416 | + $items = $wpdb->get_results( |
|
| 1417 | + $wpdb->prepare( |
|
| 1418 | + "SELECT ID, post_parent, post_title FROM $wpdb->posts WHERE post_parent = %d AND post_type = 'page' AND post_status != 'trash' ORDER BY menu_order", |
|
| 1419 | + $parent |
|
| 1420 | + ) |
|
| 1421 | + ); |
|
| 1422 | + |
|
| 1423 | + if ($items) { |
|
| 1424 | + foreach ($items as $item) { |
|
| 1425 | + $pad = str_repeat(' ', $level * 3); |
|
| 1426 | + if ($item->ID == $default) { |
|
| 1427 | + $current = ' selected="selected"'; |
|
| 1428 | + } else { |
|
| 1429 | + $current = ''; |
|
| 1430 | + } |
|
| 1431 | + |
|
| 1432 | + echo "\n\t<option class='level-$level' value='$item->ID'$current>$pad " |
|
| 1433 | + . esc_html($item->post_title) |
|
| 1434 | + . "</option>"; |
|
| 1435 | + parent_dropdown($default, $item->ID, $level + 1); |
|
| 1436 | + } |
|
| 1437 | + } |
|
| 1438 | + } |
|
| 1439 | + |
|
| 1440 | + |
|
| 1441 | + /** |
|
| 1442 | + * Loads the scripts for the privacy settings form |
|
| 1443 | + */ |
|
| 1444 | + public function load_scripts_styles_privacy_settings() |
|
| 1445 | + { |
|
| 1446 | + $form_handler = LoaderFactory::getLoader()->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1447 | + $form_handler->enqueueStylesAndScripts(); |
|
| 1448 | + } |
|
| 1449 | + |
|
| 1450 | + |
|
| 1451 | + /** |
|
| 1452 | + * display the privacy settings form |
|
| 1453 | + */ |
|
| 1454 | + public function privacySettings() |
|
| 1455 | + { |
|
| 1456 | + $this->_set_add_edit_form_tags('update_privacy_settings'); |
|
| 1457 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 1458 | + $form_handler = LoaderFactory::getLoader()->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1459 | + $this->_template_args['admin_page_content'] = $form_handler->display(); |
|
| 1460 | + $this->display_admin_page_with_sidebar(); |
|
| 1461 | + } |
|
| 1462 | + |
|
| 1463 | + |
|
| 1464 | + /** |
|
| 1465 | + * Update the privacy settings from form data |
|
| 1466 | + */ |
|
| 1467 | + public function updatePrivacySettings() |
|
| 1468 | + { |
|
| 1469 | + $form_handler = LoaderFactory::getLoader()->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1470 | + $success = $form_handler->process($this->get_request_data()); |
|
| 1471 | + $this->_redirect_after_action( |
|
| 1472 | + $success, |
|
| 1473 | + esc_html__('Registration Form Options', 'event_espresso'), |
|
| 1474 | + 'updated', |
|
| 1475 | + array('action' => 'privacy_settings') |
|
| 1476 | + ); |
|
| 1477 | + } |
|
| 1478 | 1478 | |
| 1479 | 1479 | } |
@@ -13,116 +13,116 @@ |
||
| 13 | 13 | interface RequestTypeContextCheckerInterface |
| 14 | 14 | { |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * true if the current request involves some form of activation |
|
| 18 | - * |
|
| 19 | - * @return bool |
|
| 20 | - */ |
|
| 21 | - public function isActivation(); |
|
| 16 | + /** |
|
| 17 | + * true if the current request involves some form of activation |
|
| 18 | + * |
|
| 19 | + * @return bool |
|
| 20 | + */ |
|
| 21 | + public function isActivation(); |
|
| 22 | 22 | |
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * @param $is_activation |
|
| 26 | - * @return bool |
|
| 27 | - */ |
|
| 28 | - public function setIsActivation($is_activation); |
|
| 24 | + /** |
|
| 25 | + * @param $is_activation |
|
| 26 | + * @return bool |
|
| 27 | + */ |
|
| 28 | + public function setIsActivation($is_activation); |
|
| 29 | 29 | |
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * true if the current request is for the admin and is not being made via AJAX |
|
| 33 | - * |
|
| 34 | - * @return bool |
|
| 35 | - */ |
|
| 36 | - public function isAdmin(); |
|
| 31 | + /** |
|
| 32 | + * true if the current request is for the admin and is not being made via AJAX |
|
| 33 | + * |
|
| 34 | + * @return bool |
|
| 35 | + */ |
|
| 36 | + public function isAdmin(); |
|
| 37 | 37 | |
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * true if the current request is for the admin AND is being made via AJAX |
|
| 41 | - * and the ajax request contains the request parameter "ee_admin_ajax" |
|
| 42 | - * |
|
| 43 | - * @return bool |
|
| 44 | - */ |
|
| 45 | - public function isAdminAjax(); |
|
| 39 | + /** |
|
| 40 | + * true if the current request is for the admin AND is being made via AJAX |
|
| 41 | + * and the ajax request contains the request parameter "ee_admin_ajax" |
|
| 42 | + * |
|
| 43 | + * @return bool |
|
| 44 | + */ |
|
| 45 | + public function isAdminAjax(); |
|
| 46 | 46 | |
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * true if the current request is being made via AJAX... any AJAX |
|
| 50 | - * |
|
| 51 | - * @return bool |
|
| 52 | - */ |
|
| 53 | - public function isAjax(); |
|
| 48 | + /** |
|
| 49 | + * true if the current request is being made via AJAX... any AJAX |
|
| 50 | + * |
|
| 51 | + * @return bool |
|
| 52 | + */ |
|
| 53 | + public function isAjax(); |
|
| 54 | 54 | |
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * true if the current request is for the EE REST API |
|
| 58 | - * |
|
| 59 | - * @return bool |
|
| 60 | - */ |
|
| 61 | - public function isApi(); |
|
| 56 | + /** |
|
| 57 | + * true if the current request is for the EE REST API |
|
| 58 | + * |
|
| 59 | + * @return bool |
|
| 60 | + */ |
|
| 61 | + public function isApi(); |
|
| 62 | 62 | |
| 63 | 63 | |
| 64 | - /** |
|
| 65 | - * true if the current request is from the command line |
|
| 66 | - * |
|
| 67 | - * @return bool |
|
| 68 | - */ |
|
| 69 | - public function isCli(); |
|
| 64 | + /** |
|
| 65 | + * true if the current request is from the command line |
|
| 66 | + * |
|
| 67 | + * @return bool |
|
| 68 | + */ |
|
| 69 | + public function isCli(); |
|
| 70 | 70 | |
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * true if the current request is for a WP_Cron |
|
| 74 | - * |
|
| 75 | - * @return bool |
|
| 76 | - */ |
|
| 77 | - public function isCron(); |
|
| 72 | + /** |
|
| 73 | + * true if the current request is for a WP_Cron |
|
| 74 | + * |
|
| 75 | + * @return bool |
|
| 76 | + */ |
|
| 77 | + public function isCron(); |
|
| 78 | 78 | |
| 79 | 79 | |
| 80 | - /** |
|
| 81 | - * true if the current request is for either the EE admin or EE frontend AND is being made via AJAX |
|
| 82 | - * |
|
| 83 | - * @return bool |
|
| 84 | - */ |
|
| 85 | - public function isEeAjax(); |
|
| 80 | + /** |
|
| 81 | + * true if the current request is for either the EE admin or EE frontend AND is being made via AJAX |
|
| 82 | + * |
|
| 83 | + * @return bool |
|
| 84 | + */ |
|
| 85 | + public function isEeAjax(); |
|
| 86 | 86 | |
| 87 | 87 | |
| 88 | - /** |
|
| 89 | - * true if the current request is for a feed (ie: RSS) |
|
| 90 | - * |
|
| 91 | - * @return bool |
|
| 92 | - */ |
|
| 93 | - public function isFeed(); |
|
| 88 | + /** |
|
| 89 | + * true if the current request is for a feed (ie: RSS) |
|
| 90 | + * |
|
| 91 | + * @return bool |
|
| 92 | + */ |
|
| 93 | + public function isFeed(); |
|
| 94 | 94 | |
| 95 | 95 | |
| 96 | - /** |
|
| 97 | - * true if the current request is for the frontend and is not being made via AJAX |
|
| 98 | - * |
|
| 99 | - * @return bool |
|
| 100 | - */ |
|
| 101 | - public function isFrontend(); |
|
| 96 | + /** |
|
| 97 | + * true if the current request is for the frontend and is not being made via AJAX |
|
| 98 | + * |
|
| 99 | + * @return bool |
|
| 100 | + */ |
|
| 101 | + public function isFrontend(); |
|
| 102 | 102 | |
| 103 | 103 | |
| 104 | - /** |
|
| 105 | - * @return bool |
|
| 106 | - */ |
|
| 107 | - public function isFrontAjax(); |
|
| 104 | + /** |
|
| 105 | + * @return bool |
|
| 106 | + */ |
|
| 107 | + public function isFrontAjax(); |
|
| 108 | 108 | |
| 109 | 109 | |
| 110 | - /** |
|
| 111 | - * @return bool |
|
| 112 | - */ |
|
| 113 | - public function isIframe(); |
|
| 110 | + /** |
|
| 111 | + * @return bool |
|
| 112 | + */ |
|
| 113 | + public function isIframe(); |
|
| 114 | 114 | |
| 115 | 115 | |
| 116 | - /** |
|
| 117 | - * true if the current request is being made via AJAX but is NOT for EE related logic |
|
| 118 | - * |
|
| 119 | - * @return bool |
|
| 120 | - */ |
|
| 121 | - public function isOtherAjax(); |
|
| 116 | + /** |
|
| 117 | + * true if the current request is being made via AJAX but is NOT for EE related logic |
|
| 118 | + * |
|
| 119 | + * @return bool |
|
| 120 | + */ |
|
| 121 | + public function isOtherAjax(); |
|
| 122 | 122 | |
| 123 | 123 | |
| 124 | - /** |
|
| 125 | - * @return string |
|
| 126 | - */ |
|
| 127 | - public function slug(); |
|
| 124 | + /** |
|
| 125 | + * @return string |
|
| 126 | + */ |
|
| 127 | + public function slug(); |
|
| 128 | 128 | } |
@@ -28,616 +28,616 @@ |
||
| 28 | 28 | abstract class FormHandler implements FormHandlerInterface |
| 29 | 29 | { |
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * will add opening and closing HTML form tags as well as a submit button |
|
| 33 | - */ |
|
| 34 | - const ADD_FORM_TAGS_AND_SUBMIT = 'add_form_tags_and_submit'; |
|
| 35 | - |
|
| 36 | - /** |
|
| 37 | - * will add opening and closing HTML form tags but NOT a submit button |
|
| 38 | - */ |
|
| 39 | - const ADD_FORM_TAGS_ONLY = 'add_form_tags_only'; |
|
| 40 | - |
|
| 41 | - /** |
|
| 42 | - * will NOT add opening and closing HTML form tags but will add a submit button |
|
| 43 | - */ |
|
| 44 | - const ADD_FORM_SUBMIT_ONLY = 'add_form_submit_only'; |
|
| 45 | - |
|
| 46 | - /** |
|
| 47 | - * will NOT add opening and closing HTML form tags NOR a submit button |
|
| 48 | - */ |
|
| 49 | - const DO_NOT_SETUP_FORM = 'do_not_setup_form'; |
|
| 50 | - |
|
| 51 | - /** |
|
| 52 | - * if set to false, then this form has no displayable content, |
|
| 53 | - * and will only be used for processing data sent passed via GET or POST |
|
| 54 | - * defaults to true ( ie: form has displayable content ) |
|
| 55 | - * |
|
| 56 | - * @var boolean $displayable |
|
| 57 | - */ |
|
| 58 | - private $displayable = true; |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * @var string $form_name |
|
| 62 | - */ |
|
| 63 | - private $form_name; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * @var string $admin_name |
|
| 67 | - */ |
|
| 68 | - private $admin_name; |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * @var string $slug |
|
| 72 | - */ |
|
| 73 | - private $slug; |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * @var string $submit_btn_text |
|
| 77 | - */ |
|
| 78 | - private $submit_btn_text; |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * @var string $form_action |
|
| 82 | - */ |
|
| 83 | - private $form_action; |
|
| 84 | - |
|
| 85 | - /** |
|
| 86 | - * form params in key value pairs |
|
| 87 | - * can be added to form action URL or as hidden inputs |
|
| 88 | - * |
|
| 89 | - * @var array $form_args |
|
| 90 | - */ |
|
| 91 | - private $form_args = array(); |
|
| 92 | - |
|
| 93 | - /** |
|
| 94 | - * value of one of the string constant above |
|
| 95 | - * |
|
| 96 | - * @var string $form_config |
|
| 97 | - */ |
|
| 98 | - private $form_config; |
|
| 99 | - |
|
| 100 | - /** |
|
| 101 | - * whether or not the form was determined to be invalid |
|
| 102 | - * |
|
| 103 | - * @var boolean $form_has_errors |
|
| 104 | - */ |
|
| 105 | - private $form_has_errors; |
|
| 106 | - |
|
| 107 | - /** |
|
| 108 | - * the absolute top level form section being used on the page |
|
| 109 | - * |
|
| 110 | - * @var EE_Form_Section_Proper $form |
|
| 111 | - */ |
|
| 112 | - private $form; |
|
| 113 | - |
|
| 114 | - /** |
|
| 115 | - * @var EE_Registry $registry |
|
| 116 | - */ |
|
| 117 | - protected $registry; |
|
| 118 | - |
|
| 119 | - // phpcs:disable PEAR.Functions.ValidDefaultValue.NotAtEnd |
|
| 120 | - /** |
|
| 121 | - * Form constructor. |
|
| 122 | - * |
|
| 123 | - * @param string $form_name |
|
| 124 | - * @param string $admin_name |
|
| 125 | - * @param string $slug |
|
| 126 | - * @param string $form_action |
|
| 127 | - * @param string $form_config |
|
| 128 | - * @param EE_Registry $registry |
|
| 129 | - * @throws InvalidDataTypeException |
|
| 130 | - * @throws DomainException |
|
| 131 | - * @throws InvalidArgumentException |
|
| 132 | - */ |
|
| 133 | - public function __construct( |
|
| 134 | - $form_name, |
|
| 135 | - $admin_name, |
|
| 136 | - $slug, |
|
| 137 | - $form_action = '', |
|
| 138 | - $form_config = FormHandler::ADD_FORM_TAGS_AND_SUBMIT, |
|
| 139 | - EE_Registry $registry |
|
| 140 | - ) { |
|
| 141 | - $this->setFormName($form_name); |
|
| 142 | - $this->setAdminName($admin_name); |
|
| 143 | - $this->setSlug($slug); |
|
| 144 | - $this->setFormAction($form_action); |
|
| 145 | - $this->setFormConfig($form_config); |
|
| 146 | - $this->setSubmitBtnText(esc_html__('Submit', 'event_espresso')); |
|
| 147 | - $this->registry = $registry; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - |
|
| 151 | - /** |
|
| 152 | - * @return array |
|
| 153 | - */ |
|
| 154 | - public static function getFormConfigConstants() |
|
| 155 | - { |
|
| 156 | - return array( |
|
| 157 | - FormHandler::ADD_FORM_TAGS_AND_SUBMIT, |
|
| 158 | - FormHandler::ADD_FORM_TAGS_ONLY, |
|
| 159 | - FormHandler::ADD_FORM_SUBMIT_ONLY, |
|
| 160 | - FormHandler::DO_NOT_SETUP_FORM, |
|
| 161 | - ); |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - |
|
| 165 | - /** |
|
| 166 | - * @param bool $for_display |
|
| 167 | - * @return EE_Form_Section_Proper |
|
| 168 | - * @throws EE_Error |
|
| 169 | - * @throws LogicException |
|
| 170 | - */ |
|
| 171 | - public function form($for_display = false) |
|
| 172 | - { |
|
| 173 | - if (! $this->formIsValid()) { |
|
| 174 | - return null; |
|
| 175 | - } |
|
| 176 | - if ($for_display) { |
|
| 177 | - $form_config = $this->formConfig(); |
|
| 178 | - if ($form_config === FormHandler::ADD_FORM_TAGS_AND_SUBMIT |
|
| 179 | - || $form_config === FormHandler::ADD_FORM_SUBMIT_ONLY |
|
| 180 | - ) { |
|
| 181 | - $this->appendSubmitButton(); |
|
| 182 | - $this->clearFormButtonFloats(); |
|
| 183 | - } |
|
| 184 | - } |
|
| 185 | - return $this->form; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - |
|
| 189 | - /** |
|
| 190 | - * @return boolean |
|
| 191 | - * @throws LogicException |
|
| 192 | - */ |
|
| 193 | - public function formIsValid() |
|
| 194 | - { |
|
| 195 | - if ($this->form instanceof EE_Form_Section_Proper) { |
|
| 196 | - return true; |
|
| 197 | - } |
|
| 198 | - $form = apply_filters( |
|
| 199 | - 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__formIsValid__generated_form_object', |
|
| 200 | - $this->generate(), |
|
| 201 | - $this |
|
| 202 | - ); |
|
| 203 | - if ($this->verifyForm($form)) { |
|
| 204 | - $this->setForm($form); |
|
| 205 | - } |
|
| 206 | - return true; |
|
| 207 | - } |
|
| 208 | - |
|
| 209 | - |
|
| 210 | - /** |
|
| 211 | - * @param EE_Form_Section_Proper|null $form |
|
| 212 | - * @return bool |
|
| 213 | - * @throws LogicException |
|
| 214 | - */ |
|
| 215 | - public function verifyForm(EE_Form_Section_Proper $form = null) |
|
| 216 | - { |
|
| 217 | - $form = $form !== null ? $form : $this->form; |
|
| 218 | - if ($form instanceof EE_Form_Section_Proper) { |
|
| 219 | - return true; |
|
| 220 | - } |
|
| 221 | - throw new LogicException( |
|
| 222 | - sprintf( |
|
| 223 | - esc_html__('The "%1$s" form is invalid or missing. %2$s', 'event_espresso'), |
|
| 224 | - $this->form_name, |
|
| 225 | - var_export($form, true) |
|
| 226 | - ) |
|
| 227 | - ); |
|
| 228 | - } |
|
| 229 | - |
|
| 230 | - |
|
| 231 | - /** |
|
| 232 | - * @param EE_Form_Section_Proper $form |
|
| 233 | - */ |
|
| 234 | - public function setForm(EE_Form_Section_Proper $form) |
|
| 235 | - { |
|
| 236 | - $this->form = $form; |
|
| 237 | - } |
|
| 238 | - |
|
| 239 | - |
|
| 240 | - /** |
|
| 241 | - * @return boolean |
|
| 242 | - */ |
|
| 243 | - public function displayable() |
|
| 244 | - { |
|
| 245 | - return $this->displayable; |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - |
|
| 249 | - /** |
|
| 250 | - * @param boolean $displayable |
|
| 251 | - */ |
|
| 252 | - public function setDisplayable($displayable = false) |
|
| 253 | - { |
|
| 254 | - $this->displayable = filter_var($displayable, FILTER_VALIDATE_BOOLEAN); |
|
| 255 | - } |
|
| 256 | - |
|
| 257 | - |
|
| 258 | - /** |
|
| 259 | - * a public name for the form that can be displayed on the frontend of a site |
|
| 260 | - * |
|
| 261 | - * @return string |
|
| 262 | - */ |
|
| 263 | - public function formName() |
|
| 264 | - { |
|
| 265 | - return $this->form_name; |
|
| 266 | - } |
|
| 267 | - |
|
| 268 | - |
|
| 269 | - /** |
|
| 270 | - * @param string $form_name |
|
| 271 | - * @throws InvalidDataTypeException |
|
| 272 | - */ |
|
| 273 | - public function setFormName($form_name) |
|
| 274 | - { |
|
| 275 | - if (! is_string($form_name)) { |
|
| 276 | - throw new InvalidDataTypeException('$form_name', $form_name, 'string'); |
|
| 277 | - } |
|
| 278 | - $this->form_name = $form_name; |
|
| 279 | - } |
|
| 280 | - |
|
| 281 | - |
|
| 282 | - /** |
|
| 283 | - * a public name for the form that can be displayed, but only in the admin |
|
| 284 | - * |
|
| 285 | - * @return string |
|
| 286 | - */ |
|
| 287 | - public function adminName() |
|
| 288 | - { |
|
| 289 | - return $this->admin_name; |
|
| 290 | - } |
|
| 291 | - |
|
| 292 | - |
|
| 293 | - /** |
|
| 294 | - * @param string $admin_name |
|
| 295 | - * @throws InvalidDataTypeException |
|
| 296 | - */ |
|
| 297 | - public function setAdminName($admin_name) |
|
| 298 | - { |
|
| 299 | - if (! is_string($admin_name)) { |
|
| 300 | - throw new InvalidDataTypeException('$admin_name', $admin_name, 'string'); |
|
| 301 | - } |
|
| 302 | - $this->admin_name = $admin_name; |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - |
|
| 306 | - /** |
|
| 307 | - * a URL friendly string that can be used for identifying the form |
|
| 308 | - * |
|
| 309 | - * @return string |
|
| 310 | - */ |
|
| 311 | - public function slug() |
|
| 312 | - { |
|
| 313 | - return $this->slug; |
|
| 314 | - } |
|
| 315 | - |
|
| 316 | - |
|
| 317 | - /** |
|
| 318 | - * @param string $slug |
|
| 319 | - * @throws InvalidDataTypeException |
|
| 320 | - */ |
|
| 321 | - public function setSlug($slug) |
|
| 322 | - { |
|
| 323 | - if (! is_string($slug)) { |
|
| 324 | - throw new InvalidDataTypeException('$slug', $slug, 'string'); |
|
| 325 | - } |
|
| 326 | - $this->slug = $slug; |
|
| 327 | - } |
|
| 328 | - |
|
| 329 | - |
|
| 330 | - /** |
|
| 331 | - * @return string |
|
| 332 | - */ |
|
| 333 | - public function submitBtnText() |
|
| 334 | - { |
|
| 335 | - return $this->submit_btn_text; |
|
| 336 | - } |
|
| 337 | - |
|
| 338 | - |
|
| 339 | - /** |
|
| 340 | - * @param string $submit_btn_text |
|
| 341 | - * @throws InvalidDataTypeException |
|
| 342 | - * @throws InvalidArgumentException |
|
| 343 | - */ |
|
| 344 | - public function setSubmitBtnText($submit_btn_text) |
|
| 345 | - { |
|
| 346 | - if (! is_string($submit_btn_text)) { |
|
| 347 | - throw new InvalidDataTypeException('$submit_btn_text', $submit_btn_text, 'string'); |
|
| 348 | - } |
|
| 349 | - if (empty($submit_btn_text)) { |
|
| 350 | - throw new InvalidArgumentException( |
|
| 351 | - esc_html__('Can not set Submit button text because an empty string was provided.', 'event_espresso') |
|
| 352 | - ); |
|
| 353 | - } |
|
| 354 | - $this->submit_btn_text = $submit_btn_text; |
|
| 355 | - } |
|
| 356 | - |
|
| 357 | - |
|
| 358 | - /** |
|
| 359 | - * @return string |
|
| 360 | - */ |
|
| 361 | - public function formAction() |
|
| 362 | - { |
|
| 363 | - return ! empty($this->form_args) |
|
| 364 | - ? add_query_arg($this->form_args, $this->form_action) |
|
| 365 | - : $this->form_action; |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - |
|
| 369 | - /** |
|
| 370 | - * @param string $form_action |
|
| 371 | - * @throws InvalidDataTypeException |
|
| 372 | - */ |
|
| 373 | - public function setFormAction($form_action) |
|
| 374 | - { |
|
| 375 | - if (! is_string($form_action)) { |
|
| 376 | - throw new InvalidDataTypeException('$form_action', $form_action, 'string'); |
|
| 377 | - } |
|
| 378 | - $this->form_action = $form_action; |
|
| 379 | - } |
|
| 380 | - |
|
| 381 | - |
|
| 382 | - /** |
|
| 383 | - * @param array $form_args |
|
| 384 | - * @throws InvalidDataTypeException |
|
| 385 | - * @throws InvalidArgumentException |
|
| 386 | - */ |
|
| 387 | - public function addFormActionArgs($form_args = array()) |
|
| 388 | - { |
|
| 389 | - if (is_object($form_args)) { |
|
| 390 | - throw new InvalidDataTypeException( |
|
| 391 | - '$form_args', |
|
| 392 | - $form_args, |
|
| 393 | - 'anything other than an object was expected.' |
|
| 394 | - ); |
|
| 395 | - } |
|
| 396 | - if (empty($form_args)) { |
|
| 397 | - throw new InvalidArgumentException( |
|
| 398 | - esc_html__('The redirect arguments can not be an empty array.', 'event_espresso') |
|
| 399 | - ); |
|
| 400 | - } |
|
| 401 | - $this->form_args = array_merge($this->form_args, $form_args); |
|
| 402 | - } |
|
| 403 | - |
|
| 404 | - |
|
| 405 | - /** |
|
| 406 | - * @return string |
|
| 407 | - */ |
|
| 408 | - public function formConfig() |
|
| 409 | - { |
|
| 410 | - return $this->form_config; |
|
| 411 | - } |
|
| 412 | - |
|
| 413 | - |
|
| 414 | - /** |
|
| 415 | - * @param string $form_config |
|
| 416 | - * @throws DomainException |
|
| 417 | - */ |
|
| 418 | - public function setFormConfig($form_config) |
|
| 419 | - { |
|
| 420 | - if (! in_array( |
|
| 421 | - $form_config, |
|
| 422 | - array( |
|
| 423 | - FormHandler::ADD_FORM_TAGS_AND_SUBMIT, |
|
| 424 | - FormHandler::ADD_FORM_TAGS_ONLY, |
|
| 425 | - FormHandler::ADD_FORM_SUBMIT_ONLY, |
|
| 426 | - FormHandler::DO_NOT_SETUP_FORM, |
|
| 427 | - ), |
|
| 428 | - true |
|
| 429 | - ) |
|
| 430 | - ) { |
|
| 431 | - throw new DomainException( |
|
| 432 | - sprintf( |
|
| 433 | - esc_html__( |
|
| 434 | - '"%1$s" is not a valid value for the form config. Please use one of the class constants on \EventEspresso\core\libraries\form_sections\form_handlers\Form', |
|
| 435 | - 'event_espresso' |
|
| 436 | - ), |
|
| 437 | - $form_config |
|
| 438 | - ) |
|
| 439 | - ); |
|
| 440 | - } |
|
| 441 | - $this->form_config = $form_config; |
|
| 442 | - } |
|
| 443 | - |
|
| 444 | - |
|
| 445 | - /** |
|
| 446 | - * called after the form is instantiated |
|
| 447 | - * and used for performing any logic that needs to occur early |
|
| 448 | - * before any of the other methods are called. |
|
| 449 | - * returns true if everything is ok to proceed, |
|
| 450 | - * and false if no further form logic should be implemented |
|
| 451 | - * |
|
| 452 | - * @return boolean |
|
| 453 | - */ |
|
| 454 | - public function initialize() |
|
| 455 | - { |
|
| 456 | - $this->form_has_errors = EE_Error::has_error(true); |
|
| 457 | - return true; |
|
| 458 | - } |
|
| 459 | - |
|
| 460 | - |
|
| 461 | - /** |
|
| 462 | - * used for setting up css and js |
|
| 463 | - * |
|
| 464 | - * @return void |
|
| 465 | - * @throws LogicException |
|
| 466 | - * @throws EE_Error |
|
| 467 | - */ |
|
| 468 | - public function enqueueStylesAndScripts() |
|
| 469 | - { |
|
| 470 | - $this->form()->enqueue_js(); |
|
| 471 | - } |
|
| 472 | - |
|
| 473 | - |
|
| 474 | - /** |
|
| 475 | - * creates and returns the actual form |
|
| 476 | - * |
|
| 477 | - * @return EE_Form_Section_Proper |
|
| 478 | - */ |
|
| 479 | - abstract public function generate(); |
|
| 480 | - |
|
| 481 | - |
|
| 482 | - /** |
|
| 483 | - * creates and returns an EE_Submit_Input labeled "Submit" |
|
| 484 | - * |
|
| 485 | - * @param string $text |
|
| 486 | - * @return EE_Submit_Input |
|
| 487 | - */ |
|
| 488 | - public function generateSubmitButton($text = '') |
|
| 489 | - { |
|
| 490 | - $text = ! empty($text) ? $text : $this->submitBtnText(); |
|
| 491 | - return new EE_Submit_Input( |
|
| 492 | - array( |
|
| 493 | - 'html_name' => 'ee-form-submit-' . $this->slug(), |
|
| 494 | - 'html_id' => 'ee-form-submit-' . $this->slug(), |
|
| 495 | - 'html_class' => 'ee-form-submit', |
|
| 496 | - 'html_label' => ' ', |
|
| 497 | - 'other_html_attributes' => ' rel="' . $this->slug() . '"', |
|
| 498 | - 'default' => $text, |
|
| 499 | - ) |
|
| 500 | - ); |
|
| 501 | - } |
|
| 502 | - |
|
| 503 | - |
|
| 504 | - /** |
|
| 505 | - * calls generateSubmitButton() and appends it onto the form along with a float clearing div |
|
| 506 | - * |
|
| 507 | - * @param string $text |
|
| 508 | - * @return void |
|
| 509 | - * @throws EE_Error |
|
| 510 | - */ |
|
| 511 | - public function appendSubmitButton($text = '') |
|
| 512 | - { |
|
| 513 | - if ($this->form->subsection_exists($this->slug() . '-submit-btn')) { |
|
| 514 | - return; |
|
| 515 | - } |
|
| 516 | - $this->form->add_subsections( |
|
| 517 | - array($this->slug() . '-submit-btn' => $this->generateSubmitButton($text)), |
|
| 518 | - null, |
|
| 519 | - false |
|
| 520 | - ); |
|
| 521 | - } |
|
| 522 | - |
|
| 523 | - |
|
| 524 | - /** |
|
| 525 | - * creates and returns an EE_Submit_Input labeled "Cancel" |
|
| 526 | - * |
|
| 527 | - * @param string $text |
|
| 528 | - * @return EE_Submit_Input |
|
| 529 | - */ |
|
| 530 | - public function generateCancelButton($text = '') |
|
| 531 | - { |
|
| 532 | - $cancel_button = new EE_Submit_Input( |
|
| 533 | - array( |
|
| 534 | - 'html_name' => 'ee-form-submit-' . $this->slug(), // YES! Same name as submit !!! |
|
| 535 | - 'html_id' => 'ee-cancel-form-' . $this->slug(), |
|
| 536 | - 'html_class' => 'ee-cancel-form', |
|
| 537 | - 'html_label' => ' ', |
|
| 538 | - 'other_html_attributes' => ' rel="' . $this->slug() . '"', |
|
| 539 | - 'default' => ! empty($text) ? $text : esc_html__('Cancel', 'event_espresso'), |
|
| 540 | - ) |
|
| 541 | - ); |
|
| 542 | - $cancel_button->set_button_css_attributes(false); |
|
| 543 | - return $cancel_button; |
|
| 544 | - } |
|
| 545 | - |
|
| 546 | - |
|
| 547 | - /** |
|
| 548 | - * appends a float clearing div onto end of form |
|
| 549 | - * |
|
| 550 | - * @return void |
|
| 551 | - * @throws EE_Error |
|
| 552 | - */ |
|
| 553 | - public function clearFormButtonFloats() |
|
| 554 | - { |
|
| 555 | - $this->form->add_subsections( |
|
| 556 | - array( |
|
| 557 | - 'clear-submit-btn-float' => new EE_Form_Section_HTML( |
|
| 558 | - EEH_HTML::div('', '', 'clear-float') . EEH_HTML::divx() |
|
| 559 | - ), |
|
| 560 | - ), |
|
| 561 | - null, |
|
| 562 | - false |
|
| 563 | - ); |
|
| 564 | - } |
|
| 565 | - |
|
| 566 | - |
|
| 567 | - /** |
|
| 568 | - * takes the generated form and displays it along with ony other non-form HTML that may be required |
|
| 569 | - * returns a string of HTML that can be directly echoed in a template |
|
| 570 | - * |
|
| 571 | - * @return string |
|
| 572 | - * @throws \InvalidArgumentException |
|
| 573 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 574 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 575 | - * @throws LogicException |
|
| 576 | - * @throws EE_Error |
|
| 577 | - */ |
|
| 578 | - public function display() |
|
| 579 | - { |
|
| 580 | - $form_html = apply_filters( |
|
| 581 | - 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__display__before_form', |
|
| 582 | - '' |
|
| 583 | - ); |
|
| 584 | - $form_config = $this->formConfig(); |
|
| 585 | - if ($form_config === FormHandler::ADD_FORM_TAGS_AND_SUBMIT |
|
| 586 | - || $form_config === FormHandler::ADD_FORM_TAGS_ONLY |
|
| 587 | - ) { |
|
| 588 | - $form_html .= $this->form()->form_open($this->formAction()); |
|
| 589 | - } |
|
| 590 | - $form_html .= $this->form(true)->get_html(); |
|
| 591 | - if ($form_config === FormHandler::ADD_FORM_TAGS_AND_SUBMIT |
|
| 592 | - || $form_config === FormHandler::ADD_FORM_TAGS_ONLY |
|
| 593 | - ) { |
|
| 594 | - $form_html .= $this->form()->form_close(); |
|
| 595 | - } |
|
| 596 | - $form_html .= apply_filters( |
|
| 597 | - 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__display__after_form', |
|
| 598 | - '' |
|
| 599 | - ); |
|
| 600 | - return $form_html; |
|
| 601 | - } |
|
| 602 | - |
|
| 603 | - |
|
| 604 | - /** |
|
| 605 | - * handles processing the form submission |
|
| 606 | - * returns true or false depending on whether the form was processed successfully or not |
|
| 607 | - * |
|
| 608 | - * @param array $submitted_form_data |
|
| 609 | - * @return array |
|
| 610 | - * @throws \InvalidArgumentException |
|
| 611 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 612 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 613 | - * @throws EE_Error |
|
| 614 | - * @throws LogicException |
|
| 615 | - * @throws InvalidFormSubmissionException |
|
| 616 | - */ |
|
| 617 | - public function process($submitted_form_data = array()) |
|
| 618 | - { |
|
| 619 | - if (! $this->form()->was_submitted($submitted_form_data)) { |
|
| 620 | - throw new InvalidFormSubmissionException($this->form_name); |
|
| 621 | - } |
|
| 622 | - $this->form(true)->receive_form_submission($submitted_form_data); |
|
| 623 | - if (! $this->form()->is_valid()) { |
|
| 624 | - throw new InvalidFormSubmissionException( |
|
| 625 | - $this->form_name, |
|
| 626 | - sprintf( |
|
| 627 | - esc_html__( |
|
| 628 | - 'The "%1$s" form is invalid. Please correct the following errors and resubmit: %2$s %3$s', |
|
| 629 | - 'event_espresso' |
|
| 630 | - ), |
|
| 631 | - $this->form_name, |
|
| 632 | - '<br />', |
|
| 633 | - implode('<br />', $this->form()->get_validation_errors_accumulated()) |
|
| 634 | - ) |
|
| 635 | - ); |
|
| 636 | - } |
|
| 637 | - return apply_filters( |
|
| 638 | - 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__process__valid_data', |
|
| 639 | - $this->form()->valid_data(), |
|
| 640 | - $this |
|
| 641 | - ); |
|
| 642 | - } |
|
| 31 | + /** |
|
| 32 | + * will add opening and closing HTML form tags as well as a submit button |
|
| 33 | + */ |
|
| 34 | + const ADD_FORM_TAGS_AND_SUBMIT = 'add_form_tags_and_submit'; |
|
| 35 | + |
|
| 36 | + /** |
|
| 37 | + * will add opening and closing HTML form tags but NOT a submit button |
|
| 38 | + */ |
|
| 39 | + const ADD_FORM_TAGS_ONLY = 'add_form_tags_only'; |
|
| 40 | + |
|
| 41 | + /** |
|
| 42 | + * will NOT add opening and closing HTML form tags but will add a submit button |
|
| 43 | + */ |
|
| 44 | + const ADD_FORM_SUBMIT_ONLY = 'add_form_submit_only'; |
|
| 45 | + |
|
| 46 | + /** |
|
| 47 | + * will NOT add opening and closing HTML form tags NOR a submit button |
|
| 48 | + */ |
|
| 49 | + const DO_NOT_SETUP_FORM = 'do_not_setup_form'; |
|
| 50 | + |
|
| 51 | + /** |
|
| 52 | + * if set to false, then this form has no displayable content, |
|
| 53 | + * and will only be used for processing data sent passed via GET or POST |
|
| 54 | + * defaults to true ( ie: form has displayable content ) |
|
| 55 | + * |
|
| 56 | + * @var boolean $displayable |
|
| 57 | + */ |
|
| 58 | + private $displayable = true; |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * @var string $form_name |
|
| 62 | + */ |
|
| 63 | + private $form_name; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * @var string $admin_name |
|
| 67 | + */ |
|
| 68 | + private $admin_name; |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * @var string $slug |
|
| 72 | + */ |
|
| 73 | + private $slug; |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * @var string $submit_btn_text |
|
| 77 | + */ |
|
| 78 | + private $submit_btn_text; |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * @var string $form_action |
|
| 82 | + */ |
|
| 83 | + private $form_action; |
|
| 84 | + |
|
| 85 | + /** |
|
| 86 | + * form params in key value pairs |
|
| 87 | + * can be added to form action URL or as hidden inputs |
|
| 88 | + * |
|
| 89 | + * @var array $form_args |
|
| 90 | + */ |
|
| 91 | + private $form_args = array(); |
|
| 92 | + |
|
| 93 | + /** |
|
| 94 | + * value of one of the string constant above |
|
| 95 | + * |
|
| 96 | + * @var string $form_config |
|
| 97 | + */ |
|
| 98 | + private $form_config; |
|
| 99 | + |
|
| 100 | + /** |
|
| 101 | + * whether or not the form was determined to be invalid |
|
| 102 | + * |
|
| 103 | + * @var boolean $form_has_errors |
|
| 104 | + */ |
|
| 105 | + private $form_has_errors; |
|
| 106 | + |
|
| 107 | + /** |
|
| 108 | + * the absolute top level form section being used on the page |
|
| 109 | + * |
|
| 110 | + * @var EE_Form_Section_Proper $form |
|
| 111 | + */ |
|
| 112 | + private $form; |
|
| 113 | + |
|
| 114 | + /** |
|
| 115 | + * @var EE_Registry $registry |
|
| 116 | + */ |
|
| 117 | + protected $registry; |
|
| 118 | + |
|
| 119 | + // phpcs:disable PEAR.Functions.ValidDefaultValue.NotAtEnd |
|
| 120 | + /** |
|
| 121 | + * Form constructor. |
|
| 122 | + * |
|
| 123 | + * @param string $form_name |
|
| 124 | + * @param string $admin_name |
|
| 125 | + * @param string $slug |
|
| 126 | + * @param string $form_action |
|
| 127 | + * @param string $form_config |
|
| 128 | + * @param EE_Registry $registry |
|
| 129 | + * @throws InvalidDataTypeException |
|
| 130 | + * @throws DomainException |
|
| 131 | + * @throws InvalidArgumentException |
|
| 132 | + */ |
|
| 133 | + public function __construct( |
|
| 134 | + $form_name, |
|
| 135 | + $admin_name, |
|
| 136 | + $slug, |
|
| 137 | + $form_action = '', |
|
| 138 | + $form_config = FormHandler::ADD_FORM_TAGS_AND_SUBMIT, |
|
| 139 | + EE_Registry $registry |
|
| 140 | + ) { |
|
| 141 | + $this->setFormName($form_name); |
|
| 142 | + $this->setAdminName($admin_name); |
|
| 143 | + $this->setSlug($slug); |
|
| 144 | + $this->setFormAction($form_action); |
|
| 145 | + $this->setFormConfig($form_config); |
|
| 146 | + $this->setSubmitBtnText(esc_html__('Submit', 'event_espresso')); |
|
| 147 | + $this->registry = $registry; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + |
|
| 151 | + /** |
|
| 152 | + * @return array |
|
| 153 | + */ |
|
| 154 | + public static function getFormConfigConstants() |
|
| 155 | + { |
|
| 156 | + return array( |
|
| 157 | + FormHandler::ADD_FORM_TAGS_AND_SUBMIT, |
|
| 158 | + FormHandler::ADD_FORM_TAGS_ONLY, |
|
| 159 | + FormHandler::ADD_FORM_SUBMIT_ONLY, |
|
| 160 | + FormHandler::DO_NOT_SETUP_FORM, |
|
| 161 | + ); |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + |
|
| 165 | + /** |
|
| 166 | + * @param bool $for_display |
|
| 167 | + * @return EE_Form_Section_Proper |
|
| 168 | + * @throws EE_Error |
|
| 169 | + * @throws LogicException |
|
| 170 | + */ |
|
| 171 | + public function form($for_display = false) |
|
| 172 | + { |
|
| 173 | + if (! $this->formIsValid()) { |
|
| 174 | + return null; |
|
| 175 | + } |
|
| 176 | + if ($for_display) { |
|
| 177 | + $form_config = $this->formConfig(); |
|
| 178 | + if ($form_config === FormHandler::ADD_FORM_TAGS_AND_SUBMIT |
|
| 179 | + || $form_config === FormHandler::ADD_FORM_SUBMIT_ONLY |
|
| 180 | + ) { |
|
| 181 | + $this->appendSubmitButton(); |
|
| 182 | + $this->clearFormButtonFloats(); |
|
| 183 | + } |
|
| 184 | + } |
|
| 185 | + return $this->form; |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + |
|
| 189 | + /** |
|
| 190 | + * @return boolean |
|
| 191 | + * @throws LogicException |
|
| 192 | + */ |
|
| 193 | + public function formIsValid() |
|
| 194 | + { |
|
| 195 | + if ($this->form instanceof EE_Form_Section_Proper) { |
|
| 196 | + return true; |
|
| 197 | + } |
|
| 198 | + $form = apply_filters( |
|
| 199 | + 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__formIsValid__generated_form_object', |
|
| 200 | + $this->generate(), |
|
| 201 | + $this |
|
| 202 | + ); |
|
| 203 | + if ($this->verifyForm($form)) { |
|
| 204 | + $this->setForm($form); |
|
| 205 | + } |
|
| 206 | + return true; |
|
| 207 | + } |
|
| 208 | + |
|
| 209 | + |
|
| 210 | + /** |
|
| 211 | + * @param EE_Form_Section_Proper|null $form |
|
| 212 | + * @return bool |
|
| 213 | + * @throws LogicException |
|
| 214 | + */ |
|
| 215 | + public function verifyForm(EE_Form_Section_Proper $form = null) |
|
| 216 | + { |
|
| 217 | + $form = $form !== null ? $form : $this->form; |
|
| 218 | + if ($form instanceof EE_Form_Section_Proper) { |
|
| 219 | + return true; |
|
| 220 | + } |
|
| 221 | + throw new LogicException( |
|
| 222 | + sprintf( |
|
| 223 | + esc_html__('The "%1$s" form is invalid or missing. %2$s', 'event_espresso'), |
|
| 224 | + $this->form_name, |
|
| 225 | + var_export($form, true) |
|
| 226 | + ) |
|
| 227 | + ); |
|
| 228 | + } |
|
| 229 | + |
|
| 230 | + |
|
| 231 | + /** |
|
| 232 | + * @param EE_Form_Section_Proper $form |
|
| 233 | + */ |
|
| 234 | + public function setForm(EE_Form_Section_Proper $form) |
|
| 235 | + { |
|
| 236 | + $this->form = $form; |
|
| 237 | + } |
|
| 238 | + |
|
| 239 | + |
|
| 240 | + /** |
|
| 241 | + * @return boolean |
|
| 242 | + */ |
|
| 243 | + public function displayable() |
|
| 244 | + { |
|
| 245 | + return $this->displayable; |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + |
|
| 249 | + /** |
|
| 250 | + * @param boolean $displayable |
|
| 251 | + */ |
|
| 252 | + public function setDisplayable($displayable = false) |
|
| 253 | + { |
|
| 254 | + $this->displayable = filter_var($displayable, FILTER_VALIDATE_BOOLEAN); |
|
| 255 | + } |
|
| 256 | + |
|
| 257 | + |
|
| 258 | + /** |
|
| 259 | + * a public name for the form that can be displayed on the frontend of a site |
|
| 260 | + * |
|
| 261 | + * @return string |
|
| 262 | + */ |
|
| 263 | + public function formName() |
|
| 264 | + { |
|
| 265 | + return $this->form_name; |
|
| 266 | + } |
|
| 267 | + |
|
| 268 | + |
|
| 269 | + /** |
|
| 270 | + * @param string $form_name |
|
| 271 | + * @throws InvalidDataTypeException |
|
| 272 | + */ |
|
| 273 | + public function setFormName($form_name) |
|
| 274 | + { |
|
| 275 | + if (! is_string($form_name)) { |
|
| 276 | + throw new InvalidDataTypeException('$form_name', $form_name, 'string'); |
|
| 277 | + } |
|
| 278 | + $this->form_name = $form_name; |
|
| 279 | + } |
|
| 280 | + |
|
| 281 | + |
|
| 282 | + /** |
|
| 283 | + * a public name for the form that can be displayed, but only in the admin |
|
| 284 | + * |
|
| 285 | + * @return string |
|
| 286 | + */ |
|
| 287 | + public function adminName() |
|
| 288 | + { |
|
| 289 | + return $this->admin_name; |
|
| 290 | + } |
|
| 291 | + |
|
| 292 | + |
|
| 293 | + /** |
|
| 294 | + * @param string $admin_name |
|
| 295 | + * @throws InvalidDataTypeException |
|
| 296 | + */ |
|
| 297 | + public function setAdminName($admin_name) |
|
| 298 | + { |
|
| 299 | + if (! is_string($admin_name)) { |
|
| 300 | + throw new InvalidDataTypeException('$admin_name', $admin_name, 'string'); |
|
| 301 | + } |
|
| 302 | + $this->admin_name = $admin_name; |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + |
|
| 306 | + /** |
|
| 307 | + * a URL friendly string that can be used for identifying the form |
|
| 308 | + * |
|
| 309 | + * @return string |
|
| 310 | + */ |
|
| 311 | + public function slug() |
|
| 312 | + { |
|
| 313 | + return $this->slug; |
|
| 314 | + } |
|
| 315 | + |
|
| 316 | + |
|
| 317 | + /** |
|
| 318 | + * @param string $slug |
|
| 319 | + * @throws InvalidDataTypeException |
|
| 320 | + */ |
|
| 321 | + public function setSlug($slug) |
|
| 322 | + { |
|
| 323 | + if (! is_string($slug)) { |
|
| 324 | + throw new InvalidDataTypeException('$slug', $slug, 'string'); |
|
| 325 | + } |
|
| 326 | + $this->slug = $slug; |
|
| 327 | + } |
|
| 328 | + |
|
| 329 | + |
|
| 330 | + /** |
|
| 331 | + * @return string |
|
| 332 | + */ |
|
| 333 | + public function submitBtnText() |
|
| 334 | + { |
|
| 335 | + return $this->submit_btn_text; |
|
| 336 | + } |
|
| 337 | + |
|
| 338 | + |
|
| 339 | + /** |
|
| 340 | + * @param string $submit_btn_text |
|
| 341 | + * @throws InvalidDataTypeException |
|
| 342 | + * @throws InvalidArgumentException |
|
| 343 | + */ |
|
| 344 | + public function setSubmitBtnText($submit_btn_text) |
|
| 345 | + { |
|
| 346 | + if (! is_string($submit_btn_text)) { |
|
| 347 | + throw new InvalidDataTypeException('$submit_btn_text', $submit_btn_text, 'string'); |
|
| 348 | + } |
|
| 349 | + if (empty($submit_btn_text)) { |
|
| 350 | + throw new InvalidArgumentException( |
|
| 351 | + esc_html__('Can not set Submit button text because an empty string was provided.', 'event_espresso') |
|
| 352 | + ); |
|
| 353 | + } |
|
| 354 | + $this->submit_btn_text = $submit_btn_text; |
|
| 355 | + } |
|
| 356 | + |
|
| 357 | + |
|
| 358 | + /** |
|
| 359 | + * @return string |
|
| 360 | + */ |
|
| 361 | + public function formAction() |
|
| 362 | + { |
|
| 363 | + return ! empty($this->form_args) |
|
| 364 | + ? add_query_arg($this->form_args, $this->form_action) |
|
| 365 | + : $this->form_action; |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + |
|
| 369 | + /** |
|
| 370 | + * @param string $form_action |
|
| 371 | + * @throws InvalidDataTypeException |
|
| 372 | + */ |
|
| 373 | + public function setFormAction($form_action) |
|
| 374 | + { |
|
| 375 | + if (! is_string($form_action)) { |
|
| 376 | + throw new InvalidDataTypeException('$form_action', $form_action, 'string'); |
|
| 377 | + } |
|
| 378 | + $this->form_action = $form_action; |
|
| 379 | + } |
|
| 380 | + |
|
| 381 | + |
|
| 382 | + /** |
|
| 383 | + * @param array $form_args |
|
| 384 | + * @throws InvalidDataTypeException |
|
| 385 | + * @throws InvalidArgumentException |
|
| 386 | + */ |
|
| 387 | + public function addFormActionArgs($form_args = array()) |
|
| 388 | + { |
|
| 389 | + if (is_object($form_args)) { |
|
| 390 | + throw new InvalidDataTypeException( |
|
| 391 | + '$form_args', |
|
| 392 | + $form_args, |
|
| 393 | + 'anything other than an object was expected.' |
|
| 394 | + ); |
|
| 395 | + } |
|
| 396 | + if (empty($form_args)) { |
|
| 397 | + throw new InvalidArgumentException( |
|
| 398 | + esc_html__('The redirect arguments can not be an empty array.', 'event_espresso') |
|
| 399 | + ); |
|
| 400 | + } |
|
| 401 | + $this->form_args = array_merge($this->form_args, $form_args); |
|
| 402 | + } |
|
| 403 | + |
|
| 404 | + |
|
| 405 | + /** |
|
| 406 | + * @return string |
|
| 407 | + */ |
|
| 408 | + public function formConfig() |
|
| 409 | + { |
|
| 410 | + return $this->form_config; |
|
| 411 | + } |
|
| 412 | + |
|
| 413 | + |
|
| 414 | + /** |
|
| 415 | + * @param string $form_config |
|
| 416 | + * @throws DomainException |
|
| 417 | + */ |
|
| 418 | + public function setFormConfig($form_config) |
|
| 419 | + { |
|
| 420 | + if (! in_array( |
|
| 421 | + $form_config, |
|
| 422 | + array( |
|
| 423 | + FormHandler::ADD_FORM_TAGS_AND_SUBMIT, |
|
| 424 | + FormHandler::ADD_FORM_TAGS_ONLY, |
|
| 425 | + FormHandler::ADD_FORM_SUBMIT_ONLY, |
|
| 426 | + FormHandler::DO_NOT_SETUP_FORM, |
|
| 427 | + ), |
|
| 428 | + true |
|
| 429 | + ) |
|
| 430 | + ) { |
|
| 431 | + throw new DomainException( |
|
| 432 | + sprintf( |
|
| 433 | + esc_html__( |
|
| 434 | + '"%1$s" is not a valid value for the form config. Please use one of the class constants on \EventEspresso\core\libraries\form_sections\form_handlers\Form', |
|
| 435 | + 'event_espresso' |
|
| 436 | + ), |
|
| 437 | + $form_config |
|
| 438 | + ) |
|
| 439 | + ); |
|
| 440 | + } |
|
| 441 | + $this->form_config = $form_config; |
|
| 442 | + } |
|
| 443 | + |
|
| 444 | + |
|
| 445 | + /** |
|
| 446 | + * called after the form is instantiated |
|
| 447 | + * and used for performing any logic that needs to occur early |
|
| 448 | + * before any of the other methods are called. |
|
| 449 | + * returns true if everything is ok to proceed, |
|
| 450 | + * and false if no further form logic should be implemented |
|
| 451 | + * |
|
| 452 | + * @return boolean |
|
| 453 | + */ |
|
| 454 | + public function initialize() |
|
| 455 | + { |
|
| 456 | + $this->form_has_errors = EE_Error::has_error(true); |
|
| 457 | + return true; |
|
| 458 | + } |
|
| 459 | + |
|
| 460 | + |
|
| 461 | + /** |
|
| 462 | + * used for setting up css and js |
|
| 463 | + * |
|
| 464 | + * @return void |
|
| 465 | + * @throws LogicException |
|
| 466 | + * @throws EE_Error |
|
| 467 | + */ |
|
| 468 | + public function enqueueStylesAndScripts() |
|
| 469 | + { |
|
| 470 | + $this->form()->enqueue_js(); |
|
| 471 | + } |
|
| 472 | + |
|
| 473 | + |
|
| 474 | + /** |
|
| 475 | + * creates and returns the actual form |
|
| 476 | + * |
|
| 477 | + * @return EE_Form_Section_Proper |
|
| 478 | + */ |
|
| 479 | + abstract public function generate(); |
|
| 480 | + |
|
| 481 | + |
|
| 482 | + /** |
|
| 483 | + * creates and returns an EE_Submit_Input labeled "Submit" |
|
| 484 | + * |
|
| 485 | + * @param string $text |
|
| 486 | + * @return EE_Submit_Input |
|
| 487 | + */ |
|
| 488 | + public function generateSubmitButton($text = '') |
|
| 489 | + { |
|
| 490 | + $text = ! empty($text) ? $text : $this->submitBtnText(); |
|
| 491 | + return new EE_Submit_Input( |
|
| 492 | + array( |
|
| 493 | + 'html_name' => 'ee-form-submit-' . $this->slug(), |
|
| 494 | + 'html_id' => 'ee-form-submit-' . $this->slug(), |
|
| 495 | + 'html_class' => 'ee-form-submit', |
|
| 496 | + 'html_label' => ' ', |
|
| 497 | + 'other_html_attributes' => ' rel="' . $this->slug() . '"', |
|
| 498 | + 'default' => $text, |
|
| 499 | + ) |
|
| 500 | + ); |
|
| 501 | + } |
|
| 502 | + |
|
| 503 | + |
|
| 504 | + /** |
|
| 505 | + * calls generateSubmitButton() and appends it onto the form along with a float clearing div |
|
| 506 | + * |
|
| 507 | + * @param string $text |
|
| 508 | + * @return void |
|
| 509 | + * @throws EE_Error |
|
| 510 | + */ |
|
| 511 | + public function appendSubmitButton($text = '') |
|
| 512 | + { |
|
| 513 | + if ($this->form->subsection_exists($this->slug() . '-submit-btn')) { |
|
| 514 | + return; |
|
| 515 | + } |
|
| 516 | + $this->form->add_subsections( |
|
| 517 | + array($this->slug() . '-submit-btn' => $this->generateSubmitButton($text)), |
|
| 518 | + null, |
|
| 519 | + false |
|
| 520 | + ); |
|
| 521 | + } |
|
| 522 | + |
|
| 523 | + |
|
| 524 | + /** |
|
| 525 | + * creates and returns an EE_Submit_Input labeled "Cancel" |
|
| 526 | + * |
|
| 527 | + * @param string $text |
|
| 528 | + * @return EE_Submit_Input |
|
| 529 | + */ |
|
| 530 | + public function generateCancelButton($text = '') |
|
| 531 | + { |
|
| 532 | + $cancel_button = new EE_Submit_Input( |
|
| 533 | + array( |
|
| 534 | + 'html_name' => 'ee-form-submit-' . $this->slug(), // YES! Same name as submit !!! |
|
| 535 | + 'html_id' => 'ee-cancel-form-' . $this->slug(), |
|
| 536 | + 'html_class' => 'ee-cancel-form', |
|
| 537 | + 'html_label' => ' ', |
|
| 538 | + 'other_html_attributes' => ' rel="' . $this->slug() . '"', |
|
| 539 | + 'default' => ! empty($text) ? $text : esc_html__('Cancel', 'event_espresso'), |
|
| 540 | + ) |
|
| 541 | + ); |
|
| 542 | + $cancel_button->set_button_css_attributes(false); |
|
| 543 | + return $cancel_button; |
|
| 544 | + } |
|
| 545 | + |
|
| 546 | + |
|
| 547 | + /** |
|
| 548 | + * appends a float clearing div onto end of form |
|
| 549 | + * |
|
| 550 | + * @return void |
|
| 551 | + * @throws EE_Error |
|
| 552 | + */ |
|
| 553 | + public function clearFormButtonFloats() |
|
| 554 | + { |
|
| 555 | + $this->form->add_subsections( |
|
| 556 | + array( |
|
| 557 | + 'clear-submit-btn-float' => new EE_Form_Section_HTML( |
|
| 558 | + EEH_HTML::div('', '', 'clear-float') . EEH_HTML::divx() |
|
| 559 | + ), |
|
| 560 | + ), |
|
| 561 | + null, |
|
| 562 | + false |
|
| 563 | + ); |
|
| 564 | + } |
|
| 565 | + |
|
| 566 | + |
|
| 567 | + /** |
|
| 568 | + * takes the generated form and displays it along with ony other non-form HTML that may be required |
|
| 569 | + * returns a string of HTML that can be directly echoed in a template |
|
| 570 | + * |
|
| 571 | + * @return string |
|
| 572 | + * @throws \InvalidArgumentException |
|
| 573 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 574 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 575 | + * @throws LogicException |
|
| 576 | + * @throws EE_Error |
|
| 577 | + */ |
|
| 578 | + public function display() |
|
| 579 | + { |
|
| 580 | + $form_html = apply_filters( |
|
| 581 | + 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__display__before_form', |
|
| 582 | + '' |
|
| 583 | + ); |
|
| 584 | + $form_config = $this->formConfig(); |
|
| 585 | + if ($form_config === FormHandler::ADD_FORM_TAGS_AND_SUBMIT |
|
| 586 | + || $form_config === FormHandler::ADD_FORM_TAGS_ONLY |
|
| 587 | + ) { |
|
| 588 | + $form_html .= $this->form()->form_open($this->formAction()); |
|
| 589 | + } |
|
| 590 | + $form_html .= $this->form(true)->get_html(); |
|
| 591 | + if ($form_config === FormHandler::ADD_FORM_TAGS_AND_SUBMIT |
|
| 592 | + || $form_config === FormHandler::ADD_FORM_TAGS_ONLY |
|
| 593 | + ) { |
|
| 594 | + $form_html .= $this->form()->form_close(); |
|
| 595 | + } |
|
| 596 | + $form_html .= apply_filters( |
|
| 597 | + 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__display__after_form', |
|
| 598 | + '' |
|
| 599 | + ); |
|
| 600 | + return $form_html; |
|
| 601 | + } |
|
| 602 | + |
|
| 603 | + |
|
| 604 | + /** |
|
| 605 | + * handles processing the form submission |
|
| 606 | + * returns true or false depending on whether the form was processed successfully or not |
|
| 607 | + * |
|
| 608 | + * @param array $submitted_form_data |
|
| 609 | + * @return array |
|
| 610 | + * @throws \InvalidArgumentException |
|
| 611 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 612 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 613 | + * @throws EE_Error |
|
| 614 | + * @throws LogicException |
|
| 615 | + * @throws InvalidFormSubmissionException |
|
| 616 | + */ |
|
| 617 | + public function process($submitted_form_data = array()) |
|
| 618 | + { |
|
| 619 | + if (! $this->form()->was_submitted($submitted_form_data)) { |
|
| 620 | + throw new InvalidFormSubmissionException($this->form_name); |
|
| 621 | + } |
|
| 622 | + $this->form(true)->receive_form_submission($submitted_form_data); |
|
| 623 | + if (! $this->form()->is_valid()) { |
|
| 624 | + throw new InvalidFormSubmissionException( |
|
| 625 | + $this->form_name, |
|
| 626 | + sprintf( |
|
| 627 | + esc_html__( |
|
| 628 | + 'The "%1$s" form is invalid. Please correct the following errors and resubmit: %2$s %3$s', |
|
| 629 | + 'event_espresso' |
|
| 630 | + ), |
|
| 631 | + $this->form_name, |
|
| 632 | + '<br />', |
|
| 633 | + implode('<br />', $this->form()->get_validation_errors_accumulated()) |
|
| 634 | + ) |
|
| 635 | + ); |
|
| 636 | + } |
|
| 637 | + return apply_filters( |
|
| 638 | + 'FHEE__EventEspresso_core_libraries_form_sections_form_handlers_FormHandler__process__valid_data', |
|
| 639 | + $this->form()->valid_data(), |
|
| 640 | + $this |
|
| 641 | + ); |
|
| 642 | + } |
|
| 643 | 643 | } |