@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | private function setType($type) |
| 84 | 84 | { |
| 85 | - if (! in_array($type, $this->validAssetTypes(), true)) { |
|
| 85 | + if ( ! in_array($type, $this->validAssetTypes(), true)) { |
|
| 86 | 86 | throw new InvalidDataTypeException( |
| 87 | 87 | 'Asset::$type', |
| 88 | 88 | $type, |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | private function setHandle($handle) |
| 101 | 101 | { |
| 102 | - if (! is_string($handle)) { |
|
| 102 | + if ( ! is_string($handle)) { |
|
| 103 | 103 | throw new InvalidDataTypeException( |
| 104 | 104 | '$handle', |
| 105 | 105 | $handle, |
@@ -15,183 +15,183 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | abstract class Asset |
| 17 | 17 | { |
| 18 | - /** |
|
| 19 | - * indicates the file extension for a CSS file |
|
| 20 | - */ |
|
| 21 | - const EXT_CSS = '.css'; |
|
| 22 | - |
|
| 23 | - /** |
|
| 24 | - * indicates the file extension for a JS file |
|
| 25 | - */ |
|
| 26 | - const EXT_JS = '.js'; |
|
| 27 | - |
|
| 28 | - /** |
|
| 29 | - * indicates the file extension for a JS file |
|
| 30 | - */ |
|
| 31 | - const EXT_PHP = '.php'; |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * indicates the file extension for a build distribution CSS file |
|
| 35 | - */ |
|
| 36 | - const FILE_EXTENSION_DISTRIBUTION_CSS = '.dist.css'; |
|
| 37 | - |
|
| 38 | - /** |
|
| 39 | - * indicates the file extension for a build distribution JS file |
|
| 40 | - */ |
|
| 41 | - const FILE_EXTENSION_DISTRIBUTION_JS = '.dist.js'; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Indicates the file extension for a build distribution dependencies json file. |
|
| 45 | - */ |
|
| 46 | - const FILE_EXTENSION_DISTRIBUTION_DEPS = '.dist.deps.php'; |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * indicates a Cascading Style Sheet asset |
|
| 50 | - */ |
|
| 51 | - const TYPE_CSS = 'css'; |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * indicates a Javascript asset |
|
| 55 | - */ |
|
| 56 | - const TYPE_JS = 'js'; |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * indicates a JSON asset |
|
| 60 | - */ |
|
| 61 | - CONST TYPE_JSON = 'json'; |
|
| 62 | - /** |
|
| 63 | - * indicates a PHP asset |
|
| 64 | - */ |
|
| 65 | - CONST TYPE_PHP = 'php'; |
|
| 66 | - |
|
| 67 | - /** |
|
| 68 | - * indicates a Javascript manifest file |
|
| 69 | - */ |
|
| 70 | - const TYPE_MANIFEST = 'manifest'; |
|
| 71 | - |
|
| 72 | - /** |
|
| 73 | - * @var DomainInterface $domain |
|
| 74 | - */ |
|
| 75 | - protected $domain; |
|
| 76 | - |
|
| 77 | - /** |
|
| 78 | - * @var string $type |
|
| 79 | - */ |
|
| 80 | - private $type; |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * @var string $handle |
|
| 84 | - */ |
|
| 85 | - private $handle; |
|
| 86 | - |
|
| 87 | - /** |
|
| 88 | - * @var bool $registered |
|
| 89 | - */ |
|
| 90 | - private $registered = false; |
|
| 91 | - |
|
| 92 | - |
|
| 93 | - /** |
|
| 94 | - * Asset constructor. |
|
| 95 | - * |
|
| 96 | - * @param $type |
|
| 97 | - * @param string $handle |
|
| 98 | - * @param DomainInterface $domain |
|
| 99 | - * @throws InvalidDataTypeException |
|
| 100 | - */ |
|
| 101 | - public function __construct($type, $handle, DomainInterface $domain) |
|
| 102 | - { |
|
| 103 | - $this->domain = $domain; |
|
| 104 | - $this->setType($type); |
|
| 105 | - $this->setHandle($handle); |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - |
|
| 109 | - /** |
|
| 110 | - * @return array |
|
| 111 | - */ |
|
| 112 | - public function validAssetTypes() |
|
| 113 | - { |
|
| 114 | - return array( |
|
| 115 | - Asset::TYPE_CSS, |
|
| 116 | - Asset::TYPE_JS, |
|
| 117 | - Asset::TYPE_MANIFEST, |
|
| 118 | - ); |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * @param string $type |
|
| 124 | - * @throws InvalidDataTypeException |
|
| 125 | - */ |
|
| 126 | - private function setType($type) |
|
| 127 | - { |
|
| 128 | - if (! in_array($type, $this->validAssetTypes(), true)) { |
|
| 129 | - throw new InvalidDataTypeException( |
|
| 130 | - 'Asset::$type', |
|
| 131 | - $type, |
|
| 132 | - 'one of the TYPE_* class constants on \EventEspresso\core\domain\values\Asset is required' |
|
| 133 | - ); |
|
| 134 | - } |
|
| 135 | - $this->type = $type; |
|
| 136 | - } |
|
| 137 | - |
|
| 138 | - |
|
| 139 | - /** |
|
| 140 | - * @param string $handle |
|
| 141 | - * @throws InvalidDataTypeException |
|
| 142 | - */ |
|
| 143 | - private function setHandle($handle) |
|
| 144 | - { |
|
| 145 | - if (! is_string($handle)) { |
|
| 146 | - throw new InvalidDataTypeException( |
|
| 147 | - '$handle', |
|
| 148 | - $handle, |
|
| 149 | - 'string' |
|
| 150 | - ); |
|
| 151 | - } |
|
| 152 | - $this->handle = $handle; |
|
| 153 | - } |
|
| 154 | - |
|
| 155 | - |
|
| 156 | - /** |
|
| 157 | - * @return string |
|
| 158 | - */ |
|
| 159 | - public function assetNamespace() |
|
| 160 | - { |
|
| 161 | - return $this->domain->assetNamespace(); |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - |
|
| 165 | - /** |
|
| 166 | - * @return string |
|
| 167 | - */ |
|
| 168 | - public function type() |
|
| 169 | - { |
|
| 170 | - return $this->type; |
|
| 171 | - } |
|
| 172 | - |
|
| 173 | - |
|
| 174 | - /** |
|
| 175 | - * @return string |
|
| 176 | - */ |
|
| 177 | - public function handle() |
|
| 178 | - { |
|
| 179 | - return $this->handle; |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - /** |
|
| 183 | - * @return bool |
|
| 184 | - */ |
|
| 185 | - public function isRegistered() |
|
| 186 | - { |
|
| 187 | - return $this->registered; |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - /** |
|
| 191 | - * @param bool $registered |
|
| 192 | - */ |
|
| 193 | - public function setRegistered($registered = true) |
|
| 194 | - { |
|
| 195 | - $this->registered = filter_var($registered, FILTER_VALIDATE_BOOLEAN); |
|
| 196 | - } |
|
| 18 | + /** |
|
| 19 | + * indicates the file extension for a CSS file |
|
| 20 | + */ |
|
| 21 | + const EXT_CSS = '.css'; |
|
| 22 | + |
|
| 23 | + /** |
|
| 24 | + * indicates the file extension for a JS file |
|
| 25 | + */ |
|
| 26 | + const EXT_JS = '.js'; |
|
| 27 | + |
|
| 28 | + /** |
|
| 29 | + * indicates the file extension for a JS file |
|
| 30 | + */ |
|
| 31 | + const EXT_PHP = '.php'; |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * indicates the file extension for a build distribution CSS file |
|
| 35 | + */ |
|
| 36 | + const FILE_EXTENSION_DISTRIBUTION_CSS = '.dist.css'; |
|
| 37 | + |
|
| 38 | + /** |
|
| 39 | + * indicates the file extension for a build distribution JS file |
|
| 40 | + */ |
|
| 41 | + const FILE_EXTENSION_DISTRIBUTION_JS = '.dist.js'; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Indicates the file extension for a build distribution dependencies json file. |
|
| 45 | + */ |
|
| 46 | + const FILE_EXTENSION_DISTRIBUTION_DEPS = '.dist.deps.php'; |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * indicates a Cascading Style Sheet asset |
|
| 50 | + */ |
|
| 51 | + const TYPE_CSS = 'css'; |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * indicates a Javascript asset |
|
| 55 | + */ |
|
| 56 | + const TYPE_JS = 'js'; |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * indicates a JSON asset |
|
| 60 | + */ |
|
| 61 | + CONST TYPE_JSON = 'json'; |
|
| 62 | + /** |
|
| 63 | + * indicates a PHP asset |
|
| 64 | + */ |
|
| 65 | + CONST TYPE_PHP = 'php'; |
|
| 66 | + |
|
| 67 | + /** |
|
| 68 | + * indicates a Javascript manifest file |
|
| 69 | + */ |
|
| 70 | + const TYPE_MANIFEST = 'manifest'; |
|
| 71 | + |
|
| 72 | + /** |
|
| 73 | + * @var DomainInterface $domain |
|
| 74 | + */ |
|
| 75 | + protected $domain; |
|
| 76 | + |
|
| 77 | + /** |
|
| 78 | + * @var string $type |
|
| 79 | + */ |
|
| 80 | + private $type; |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * @var string $handle |
|
| 84 | + */ |
|
| 85 | + private $handle; |
|
| 86 | + |
|
| 87 | + /** |
|
| 88 | + * @var bool $registered |
|
| 89 | + */ |
|
| 90 | + private $registered = false; |
|
| 91 | + |
|
| 92 | + |
|
| 93 | + /** |
|
| 94 | + * Asset constructor. |
|
| 95 | + * |
|
| 96 | + * @param $type |
|
| 97 | + * @param string $handle |
|
| 98 | + * @param DomainInterface $domain |
|
| 99 | + * @throws InvalidDataTypeException |
|
| 100 | + */ |
|
| 101 | + public function __construct($type, $handle, DomainInterface $domain) |
|
| 102 | + { |
|
| 103 | + $this->domain = $domain; |
|
| 104 | + $this->setType($type); |
|
| 105 | + $this->setHandle($handle); |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + |
|
| 109 | + /** |
|
| 110 | + * @return array |
|
| 111 | + */ |
|
| 112 | + public function validAssetTypes() |
|
| 113 | + { |
|
| 114 | + return array( |
|
| 115 | + Asset::TYPE_CSS, |
|
| 116 | + Asset::TYPE_JS, |
|
| 117 | + Asset::TYPE_MANIFEST, |
|
| 118 | + ); |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * @param string $type |
|
| 124 | + * @throws InvalidDataTypeException |
|
| 125 | + */ |
|
| 126 | + private function setType($type) |
|
| 127 | + { |
|
| 128 | + if (! in_array($type, $this->validAssetTypes(), true)) { |
|
| 129 | + throw new InvalidDataTypeException( |
|
| 130 | + 'Asset::$type', |
|
| 131 | + $type, |
|
| 132 | + 'one of the TYPE_* class constants on \EventEspresso\core\domain\values\Asset is required' |
|
| 133 | + ); |
|
| 134 | + } |
|
| 135 | + $this->type = $type; |
|
| 136 | + } |
|
| 137 | + |
|
| 138 | + |
|
| 139 | + /** |
|
| 140 | + * @param string $handle |
|
| 141 | + * @throws InvalidDataTypeException |
|
| 142 | + */ |
|
| 143 | + private function setHandle($handle) |
|
| 144 | + { |
|
| 145 | + if (! is_string($handle)) { |
|
| 146 | + throw new InvalidDataTypeException( |
|
| 147 | + '$handle', |
|
| 148 | + $handle, |
|
| 149 | + 'string' |
|
| 150 | + ); |
|
| 151 | + } |
|
| 152 | + $this->handle = $handle; |
|
| 153 | + } |
|
| 154 | + |
|
| 155 | + |
|
| 156 | + /** |
|
| 157 | + * @return string |
|
| 158 | + */ |
|
| 159 | + public function assetNamespace() |
|
| 160 | + { |
|
| 161 | + return $this->domain->assetNamespace(); |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + |
|
| 165 | + /** |
|
| 166 | + * @return string |
|
| 167 | + */ |
|
| 168 | + public function type() |
|
| 169 | + { |
|
| 170 | + return $this->type; |
|
| 171 | + } |
|
| 172 | + |
|
| 173 | + |
|
| 174 | + /** |
|
| 175 | + * @return string |
|
| 176 | + */ |
|
| 177 | + public function handle() |
|
| 178 | + { |
|
| 179 | + return $this->handle; |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + /** |
|
| 183 | + * @return bool |
|
| 184 | + */ |
|
| 185 | + public function isRegistered() |
|
| 186 | + { |
|
| 187 | + return $this->registered; |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + /** |
|
| 191 | + * @param bool $registered |
|
| 192 | + */ |
|
| 193 | + public function setRegistered($registered = true) |
|
| 194 | + { |
|
| 195 | + $this->registered = filter_var($registered, FILTER_VALIDATE_BOOLEAN); |
|
| 196 | + } |
|
| 197 | 197 | } |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | */ |
| 55 | 55 | private function setMedia($media) |
| 56 | 56 | { |
| 57 | - if (! is_string($media)) { |
|
| 57 | + if ( ! is_string($media)) { |
|
| 58 | 58 | throw new InvalidDataTypeException( |
| 59 | 59 | '$media', |
| 60 | 60 | $media, |
@@ -17,68 +17,68 @@ |
||
| 17 | 17 | class StylesheetAsset extends BrowserAsset |
| 18 | 18 | { |
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * @var string $media |
|
| 22 | - */ |
|
| 23 | - private $media; |
|
| 20 | + /** |
|
| 21 | + * @var string $media |
|
| 22 | + */ |
|
| 23 | + private $media; |
|
| 24 | 24 | |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * CssFile constructor. |
|
| 28 | - * |
|
| 29 | - * @param $handle |
|
| 30 | - * @param string $source |
|
| 31 | - * @param array $dependencies |
|
| 32 | - * @param DomainInterface $domain |
|
| 33 | - * @param string $media |
|
| 34 | - * @param string $version |
|
| 35 | - * @throws InvalidDataTypeException |
|
| 36 | - * @throws DomainException |
|
| 37 | - */ |
|
| 38 | - public function __construct( |
|
| 39 | - $handle, |
|
| 40 | - $source, |
|
| 41 | - array $dependencies, |
|
| 42 | - DomainInterface $domain, |
|
| 43 | - $media = 'all', |
|
| 44 | - $version = '' |
|
| 45 | - ) { |
|
| 46 | - parent::__construct(Asset::TYPE_CSS, $handle, $source, $dependencies, $domain, $version); |
|
| 47 | - $this->setMedia($media); |
|
| 48 | - } |
|
| 26 | + /** |
|
| 27 | + * CssFile constructor. |
|
| 28 | + * |
|
| 29 | + * @param $handle |
|
| 30 | + * @param string $source |
|
| 31 | + * @param array $dependencies |
|
| 32 | + * @param DomainInterface $domain |
|
| 33 | + * @param string $media |
|
| 34 | + * @param string $version |
|
| 35 | + * @throws InvalidDataTypeException |
|
| 36 | + * @throws DomainException |
|
| 37 | + */ |
|
| 38 | + public function __construct( |
|
| 39 | + $handle, |
|
| 40 | + $source, |
|
| 41 | + array $dependencies, |
|
| 42 | + DomainInterface $domain, |
|
| 43 | + $media = 'all', |
|
| 44 | + $version = '' |
|
| 45 | + ) { |
|
| 46 | + parent::__construct(Asset::TYPE_CSS, $handle, $source, $dependencies, $domain, $version); |
|
| 47 | + $this->setMedia($media); |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | 50 | |
| 51 | - /** |
|
| 52 | - * @return string |
|
| 53 | - */ |
|
| 54 | - public function media() |
|
| 55 | - { |
|
| 56 | - return $this->media; |
|
| 57 | - } |
|
| 51 | + /** |
|
| 52 | + * @return string |
|
| 53 | + */ |
|
| 54 | + public function media() |
|
| 55 | + { |
|
| 56 | + return $this->media; |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * @param string $media |
|
| 62 | - * @throws InvalidDataTypeException |
|
| 63 | - */ |
|
| 64 | - private function setMedia($media) |
|
| 65 | - { |
|
| 66 | - if (! is_string($media)) { |
|
| 67 | - throw new InvalidDataTypeException( |
|
| 68 | - '$media', |
|
| 69 | - $media, |
|
| 70 | - 'string' |
|
| 71 | - ); |
|
| 72 | - } |
|
| 73 | - $this->media = $media; |
|
| 74 | - } |
|
| 60 | + /** |
|
| 61 | + * @param string $media |
|
| 62 | + * @throws InvalidDataTypeException |
|
| 63 | + */ |
|
| 64 | + private function setMedia($media) |
|
| 65 | + { |
|
| 66 | + if (! is_string($media)) { |
|
| 67 | + throw new InvalidDataTypeException( |
|
| 68 | + '$media', |
|
| 69 | + $media, |
|
| 70 | + 'string' |
|
| 71 | + ); |
|
| 72 | + } |
|
| 73 | + $this->media = $media; |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | 76 | |
| 77 | - /** |
|
| 78 | - * @since 4.9.62.p |
|
| 79 | - */ |
|
| 80 | - public function enqueueAsset() |
|
| 81 | - { |
|
| 82 | - wp_enqueue_style($this->handle()); |
|
| 83 | - } |
|
| 77 | + /** |
|
| 78 | + * @since 4.9.62.p |
|
| 79 | + */ |
|
| 80 | + public function enqueueAsset() |
|
| 81 | + { |
|
| 82 | + wp_enqueue_style($this->handle()); |
|
| 83 | + } |
|
| 84 | 84 | } |
@@ -35,6 +35,6 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | public static function getIdBase($widget_class) |
| 37 | 37 | { |
| 38 | - return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)) . '-widget'; |
|
| 38 | + return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)).'-widget'; |
|
| 39 | 39 | } |
| 40 | 40 | } |
@@ -11,28 +11,28 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | class EspressoWidget extends \WP_Widget |
| 13 | 13 | { |
| 14 | - /** |
|
| 15 | - * @param string $name |
|
| 16 | - * @param array $widget_options |
|
| 17 | - * @param array $control_options |
|
| 18 | - */ |
|
| 19 | - public function __construct($name = '', array $widget_options = array(), array $control_options = array()) |
|
| 20 | - { |
|
| 21 | - $id_base = EspressoWidget::getIdBase(get_class($this)); |
|
| 22 | - $control_options['id_base'] = $id_base; |
|
| 23 | - $control_options['height'] = isset($control_options['height']) ? $control_options['height'] : 300; |
|
| 24 | - $control_options['width'] = isset($control_options['width']) ? $control_options['width'] : 350; |
|
| 25 | - // Register widget with WordPress |
|
| 26 | - parent::__construct($id_base, $name, $widget_options, $control_options); |
|
| 27 | - } |
|
| 14 | + /** |
|
| 15 | + * @param string $name |
|
| 16 | + * @param array $widget_options |
|
| 17 | + * @param array $control_options |
|
| 18 | + */ |
|
| 19 | + public function __construct($name = '', array $widget_options = array(), array $control_options = array()) |
|
| 20 | + { |
|
| 21 | + $id_base = EspressoWidget::getIdBase(get_class($this)); |
|
| 22 | + $control_options['id_base'] = $id_base; |
|
| 23 | + $control_options['height'] = isset($control_options['height']) ? $control_options['height'] : 300; |
|
| 24 | + $control_options['width'] = isset($control_options['width']) ? $control_options['width'] : 350; |
|
| 25 | + // Register widget with WordPress |
|
| 26 | + parent::__construct($id_base, $name, $widget_options, $control_options); |
|
| 27 | + } |
|
| 28 | 28 | |
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @param string $widget_class |
|
| 32 | - * @return string |
|
| 33 | - */ |
|
| 34 | - public static function getIdBase($widget_class) |
|
| 35 | - { |
|
| 36 | - return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)) . '-widget'; |
|
| 37 | - } |
|
| 30 | + /** |
|
| 31 | + * @param string $widget_class |
|
| 32 | + * @return string |
|
| 33 | + */ |
|
| 34 | + public static function getIdBase($widget_class) |
|
| 35 | + { |
|
| 36 | + return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)) . '-widget'; |
|
| 37 | + } |
|
| 38 | 38 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | $this |
| 61 | 61 | ) |
| 62 | 62 | ); |
| 63 | - if (! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
| 63 | + if ( ! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
| 64 | 64 | $this->addStylesheets(array('site_theme' => '')); |
| 65 | 65 | } |
| 66 | 66 | $this->addScripts( |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | array(), |
| 80 | 80 | $this |
| 81 | 81 | ); |
| 82 | - if (! empty($js_attributes)) { |
|
| 82 | + if ( ! empty($js_attributes)) { |
|
| 83 | 83 | $this->addScriptAttributes($js_attributes); |
| 84 | 84 | } |
| 85 | 85 | $this->addLocalizedVars( |
@@ -19,77 +19,77 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | class TicketSelectorIframe extends Iframe |
| 21 | 21 | { |
| 22 | - /** |
|
| 23 | - * TicketSelectorIframe constructor. |
|
| 24 | - * |
|
| 25 | - * @param EEM_Event $event_model |
|
| 26 | - * @param CurrentPage $current_page |
|
| 27 | - * @param RequestInterface $request |
|
| 28 | - * @throws EE_Error |
|
| 29 | - */ |
|
| 30 | - public function __construct(EEM_Event $event_model, CurrentPage $current_page, RequestInterface $request) |
|
| 31 | - { |
|
| 32 | - $current_page->setEspressoPage(true); |
|
| 33 | - $ticket_selector = LoaderFactory::getLoader()->getNew(DisplayTicketSelector::class); |
|
| 34 | - $ticket_selector->setIframe(); |
|
| 35 | - $event = $event_model->get_one_by_ID($request->getRequestParam('event', 0, 'int')); |
|
| 36 | - parent::__construct( |
|
| 37 | - esc_html__('Ticket Selector', 'event_espresso'), |
|
| 38 | - $ticket_selector->display($event) |
|
| 39 | - ); |
|
| 40 | - $this->addStylesheets( |
|
| 41 | - apply_filters( |
|
| 42 | - 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__css', |
|
| 43 | - array( |
|
| 44 | - 'ticket_selector_embed' => TICKET_SELECTOR_ASSETS_URL |
|
| 45 | - . 'ticket_selector_embed.css?ver=' |
|
| 46 | - . EVENT_ESPRESSO_VERSION, |
|
| 47 | - 'ticket_selector' => TICKET_SELECTOR_ASSETS_URL |
|
| 48 | - . 'ticket_selector.css?ver=' |
|
| 49 | - . EVENT_ESPRESSO_VERSION, |
|
| 50 | - ), |
|
| 51 | - $this |
|
| 52 | - ) |
|
| 53 | - ); |
|
| 54 | - if (! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
| 55 | - $this->addStylesheets(array('site_theme' => '')); |
|
| 56 | - } |
|
| 57 | - $this->addScripts( |
|
| 58 | - apply_filters( |
|
| 59 | - 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__js', |
|
| 60 | - array( |
|
| 61 | - 'ticket_selector_iframe_embed' => TICKET_SELECTOR_ASSETS_URL |
|
| 62 | - . 'ticket_selector_iframe_embed.js?ver=' |
|
| 63 | - . EVENT_ESPRESSO_VERSION, |
|
| 64 | - ), |
|
| 65 | - $this |
|
| 66 | - ) |
|
| 67 | - ); |
|
| 68 | - $js_attributes = apply_filters( |
|
| 69 | - 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__js_attributes', |
|
| 70 | - array(), |
|
| 71 | - $this |
|
| 72 | - ); |
|
| 73 | - if (! empty($js_attributes)) { |
|
| 74 | - $this->addScriptAttributes($js_attributes); |
|
| 75 | - } |
|
| 76 | - $this->addLocalizedVars( |
|
| 77 | - apply_filters( |
|
| 78 | - 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__localized_vars', |
|
| 79 | - array( |
|
| 80 | - 'ticket_selector_iframe' => true, |
|
| 81 | - 'EEDTicketSelectorMsg' => wp_strip_all_tags( |
|
| 82 | - __( |
|
| 83 | - 'Please choose at least one ticket before continuing.', |
|
| 84 | - 'event_espresso' |
|
| 85 | - ) |
|
| 86 | - ), |
|
| 87 | - ) |
|
| 88 | - ) |
|
| 89 | - ); |
|
| 90 | - do_action( |
|
| 91 | - 'AHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__complete', |
|
| 92 | - $this |
|
| 93 | - ); |
|
| 94 | - } |
|
| 22 | + /** |
|
| 23 | + * TicketSelectorIframe constructor. |
|
| 24 | + * |
|
| 25 | + * @param EEM_Event $event_model |
|
| 26 | + * @param CurrentPage $current_page |
|
| 27 | + * @param RequestInterface $request |
|
| 28 | + * @throws EE_Error |
|
| 29 | + */ |
|
| 30 | + public function __construct(EEM_Event $event_model, CurrentPage $current_page, RequestInterface $request) |
|
| 31 | + { |
|
| 32 | + $current_page->setEspressoPage(true); |
|
| 33 | + $ticket_selector = LoaderFactory::getLoader()->getNew(DisplayTicketSelector::class); |
|
| 34 | + $ticket_selector->setIframe(); |
|
| 35 | + $event = $event_model->get_one_by_ID($request->getRequestParam('event', 0, 'int')); |
|
| 36 | + parent::__construct( |
|
| 37 | + esc_html__('Ticket Selector', 'event_espresso'), |
|
| 38 | + $ticket_selector->display($event) |
|
| 39 | + ); |
|
| 40 | + $this->addStylesheets( |
|
| 41 | + apply_filters( |
|
| 42 | + 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__css', |
|
| 43 | + array( |
|
| 44 | + 'ticket_selector_embed' => TICKET_SELECTOR_ASSETS_URL |
|
| 45 | + . 'ticket_selector_embed.css?ver=' |
|
| 46 | + . EVENT_ESPRESSO_VERSION, |
|
| 47 | + 'ticket_selector' => TICKET_SELECTOR_ASSETS_URL |
|
| 48 | + . 'ticket_selector.css?ver=' |
|
| 49 | + . EVENT_ESPRESSO_VERSION, |
|
| 50 | + ), |
|
| 51 | + $this |
|
| 52 | + ) |
|
| 53 | + ); |
|
| 54 | + if (! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
| 55 | + $this->addStylesheets(array('site_theme' => '')); |
|
| 56 | + } |
|
| 57 | + $this->addScripts( |
|
| 58 | + apply_filters( |
|
| 59 | + 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__js', |
|
| 60 | + array( |
|
| 61 | + 'ticket_selector_iframe_embed' => TICKET_SELECTOR_ASSETS_URL |
|
| 62 | + . 'ticket_selector_iframe_embed.js?ver=' |
|
| 63 | + . EVENT_ESPRESSO_VERSION, |
|
| 64 | + ), |
|
| 65 | + $this |
|
| 66 | + ) |
|
| 67 | + ); |
|
| 68 | + $js_attributes = apply_filters( |
|
| 69 | + 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__js_attributes', |
|
| 70 | + array(), |
|
| 71 | + $this |
|
| 72 | + ); |
|
| 73 | + if (! empty($js_attributes)) { |
|
| 74 | + $this->addScriptAttributes($js_attributes); |
|
| 75 | + } |
|
| 76 | + $this->addLocalizedVars( |
|
| 77 | + apply_filters( |
|
| 78 | + 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__localized_vars', |
|
| 79 | + array( |
|
| 80 | + 'ticket_selector_iframe' => true, |
|
| 81 | + 'EEDTicketSelectorMsg' => wp_strip_all_tags( |
|
| 82 | + __( |
|
| 83 | + 'Please choose at least one ticket before continuing.', |
|
| 84 | + 'event_espresso' |
|
| 85 | + ) |
|
| 86 | + ), |
|
| 87 | + ) |
|
| 88 | + ) |
|
| 89 | + ); |
|
| 90 | + do_action( |
|
| 91 | + 'AHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__complete', |
|
| 92 | + $this |
|
| 93 | + ); |
|
| 94 | + } |
|
| 95 | 95 | } |
@@ -33,87 +33,87 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | class SocketPost implements RequestMethod |
| 35 | 35 | { |
| 36 | - /** |
|
| 37 | - * reCAPTCHA service host. |
|
| 38 | - * |
|
| 39 | - * @const string |
|
| 40 | - */ |
|
| 41 | - const RECAPTCHA_HOST = 'www.google.com'; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * @const string reCAPTCHA service path |
|
| 45 | - */ |
|
| 46 | - const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * @const string Bad request error |
|
| 50 | - */ |
|
| 51 | - const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * @const string Bad response error |
|
| 55 | - */ |
|
| 56 | - const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * Socket to the reCAPTCHA service |
|
| 60 | - * |
|
| 61 | - * @var Socket |
|
| 62 | - */ |
|
| 63 | - private $socket; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * Constructor |
|
| 67 | - * |
|
| 68 | - * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
| 69 | - */ |
|
| 70 | - public function __construct(Socket $socket = null) |
|
| 71 | - { |
|
| 72 | - if (! is_null($socket)) { |
|
| 73 | - $this->socket = $socket; |
|
| 74 | - } else { |
|
| 75 | - $this->socket = new Socket(); |
|
| 76 | - } |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - /** |
|
| 80 | - * Submit the POST request with the specified parameters. |
|
| 81 | - * |
|
| 82 | - * @param RequestParameters $params Request parameters |
|
| 83 | - * @return string Body of the reCAPTCHA response |
|
| 84 | - */ |
|
| 85 | - public function submit(RequestParameters $params) |
|
| 86 | - { |
|
| 87 | - $errno = 0; |
|
| 88 | - $errstr = ''; |
|
| 89 | - |
|
| 90 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
| 91 | - $content = $params->toQueryString(); |
|
| 92 | - |
|
| 93 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
| 94 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
| 95 | - $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
| 96 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
| 97 | - $request .= "Connection: close\r\n\r\n"; |
|
| 98 | - $request .= $content . "\r\n\r\n"; |
|
| 99 | - |
|
| 100 | - $this->socket->fwrite($request); |
|
| 101 | - $response = ''; |
|
| 102 | - |
|
| 103 | - while (! $this->socket->feof()) { |
|
| 104 | - $response .= $this->socket->fgets(4096); |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - $this->socket->fclose(); |
|
| 108 | - |
|
| 109 | - if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
| 110 | - $parts = preg_split("#\n\s*\n#Uis", $response); |
|
| 111 | - return $parts[1]; |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - return self::BAD_RESPONSE; |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - return self::BAD_REQUEST; |
|
| 118 | - } |
|
| 36 | + /** |
|
| 37 | + * reCAPTCHA service host. |
|
| 38 | + * |
|
| 39 | + * @const string |
|
| 40 | + */ |
|
| 41 | + const RECAPTCHA_HOST = 'www.google.com'; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * @const string reCAPTCHA service path |
|
| 45 | + */ |
|
| 46 | + const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * @const string Bad request error |
|
| 50 | + */ |
|
| 51 | + const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * @const string Bad response error |
|
| 55 | + */ |
|
| 56 | + const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * Socket to the reCAPTCHA service |
|
| 60 | + * |
|
| 61 | + * @var Socket |
|
| 62 | + */ |
|
| 63 | + private $socket; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * Constructor |
|
| 67 | + * |
|
| 68 | + * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
| 69 | + */ |
|
| 70 | + public function __construct(Socket $socket = null) |
|
| 71 | + { |
|
| 72 | + if (! is_null($socket)) { |
|
| 73 | + $this->socket = $socket; |
|
| 74 | + } else { |
|
| 75 | + $this->socket = new Socket(); |
|
| 76 | + } |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + /** |
|
| 80 | + * Submit the POST request with the specified parameters. |
|
| 81 | + * |
|
| 82 | + * @param RequestParameters $params Request parameters |
|
| 83 | + * @return string Body of the reCAPTCHA response |
|
| 84 | + */ |
|
| 85 | + public function submit(RequestParameters $params) |
|
| 86 | + { |
|
| 87 | + $errno = 0; |
|
| 88 | + $errstr = ''; |
|
| 89 | + |
|
| 90 | + if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
| 91 | + $content = $params->toQueryString(); |
|
| 92 | + |
|
| 93 | + $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
| 94 | + $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
| 95 | + $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
| 96 | + $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
| 97 | + $request .= "Connection: close\r\n\r\n"; |
|
| 98 | + $request .= $content . "\r\n\r\n"; |
|
| 99 | + |
|
| 100 | + $this->socket->fwrite($request); |
|
| 101 | + $response = ''; |
|
| 102 | + |
|
| 103 | + while (! $this->socket->feof()) { |
|
| 104 | + $response .= $this->socket->fgets(4096); |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + $this->socket->fclose(); |
|
| 108 | + |
|
| 109 | + if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
| 110 | + $parts = preg_split("#\n\s*\n#Uis", $response); |
|
| 111 | + return $parts[1]; |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + return self::BAD_RESPONSE; |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + return self::BAD_REQUEST; |
|
| 118 | + } |
|
| 119 | 119 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | public function __construct(Socket $socket = null) |
| 71 | 71 | { |
| 72 | - if (! is_null($socket)) { |
|
| 72 | + if ( ! is_null($socket)) { |
|
| 73 | 73 | $this->socket = $socket; |
| 74 | 74 | } else { |
| 75 | 75 | $this->socket = new Socket(); |
@@ -87,20 +87,20 @@ discard block |
||
| 87 | 87 | $errno = 0; |
| 88 | 88 | $errstr = ''; |
| 89 | 89 | |
| 90 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
| 90 | + if ($this->socket->fsockopen('ssl://'.self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
| 91 | 91 | $content = $params->toQueryString(); |
| 92 | 92 | |
| 93 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
| 94 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
| 93 | + $request = "POST ".self::SITE_VERIFY_PATH." HTTP/1.1\r\n"; |
|
| 94 | + $request .= "Host: ".self::RECAPTCHA_HOST."\r\n"; |
|
| 95 | 95 | $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
| 96 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
| 96 | + $request .= "Content-length: ".strlen($content)."\r\n"; |
|
| 97 | 97 | $request .= "Connection: close\r\n\r\n"; |
| 98 | - $request .= $content . "\r\n\r\n"; |
|
| 98 | + $request .= $content."\r\n\r\n"; |
|
| 99 | 99 | |
| 100 | 100 | $this->socket->fwrite($request); |
| 101 | 101 | $response = ''; |
| 102 | 102 | |
| 103 | - while (! $this->socket->feof()) { |
|
| 103 | + while ( ! $this->socket->feof()) { |
|
| 104 | 104 | $response .= $this->socket->fgets(4096); |
| 105 | 105 | } |
| 106 | 106 | |
@@ -29,79 +29,79 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | class Socket |
| 31 | 31 | { |
| 32 | - private $handle = null; |
|
| 32 | + private $handle = null; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * fsockopen |
|
| 36 | - * |
|
| 37 | - * @see http://php.net/fsockopen |
|
| 38 | - * @param string $hostname |
|
| 39 | - * @param int $port |
|
| 40 | - * @param int $errno |
|
| 41 | - * @param string $errstr |
|
| 42 | - * @param float $timeout |
|
| 43 | - * @return resource |
|
| 44 | - */ |
|
| 45 | - public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
| 46 | - { |
|
| 47 | - $this->handle = fsockopen( |
|
| 48 | - $hostname, |
|
| 49 | - $port, |
|
| 50 | - $errno, |
|
| 51 | - $errstr, |
|
| 52 | - (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout) |
|
| 53 | - ); |
|
| 34 | + /** |
|
| 35 | + * fsockopen |
|
| 36 | + * |
|
| 37 | + * @see http://php.net/fsockopen |
|
| 38 | + * @param string $hostname |
|
| 39 | + * @param int $port |
|
| 40 | + * @param int $errno |
|
| 41 | + * @param string $errstr |
|
| 42 | + * @param float $timeout |
|
| 43 | + * @return resource |
|
| 44 | + */ |
|
| 45 | + public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
| 46 | + { |
|
| 47 | + $this->handle = fsockopen( |
|
| 48 | + $hostname, |
|
| 49 | + $port, |
|
| 50 | + $errno, |
|
| 51 | + $errstr, |
|
| 52 | + (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout) |
|
| 53 | + ); |
|
| 54 | 54 | |
| 55 | - if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
| 56 | - return $this->handle; |
|
| 57 | - } else { |
|
| 58 | - return false; |
|
| 59 | - } |
|
| 60 | - } |
|
| 55 | + if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
| 56 | + return $this->handle; |
|
| 57 | + } else { |
|
| 58 | + return false; |
|
| 59 | + } |
|
| 60 | + } |
|
| 61 | 61 | |
| 62 | - /** |
|
| 63 | - * fwrite |
|
| 64 | - * |
|
| 65 | - * @see http://php.net/fwrite |
|
| 66 | - * @param string $string |
|
| 67 | - * @param int $length |
|
| 68 | - * @return int | bool |
|
| 69 | - */ |
|
| 70 | - public function fwrite($string, $length = null) |
|
| 71 | - { |
|
| 72 | - return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
| 73 | - } |
|
| 62 | + /** |
|
| 63 | + * fwrite |
|
| 64 | + * |
|
| 65 | + * @see http://php.net/fwrite |
|
| 66 | + * @param string $string |
|
| 67 | + * @param int $length |
|
| 68 | + * @return int | bool |
|
| 69 | + */ |
|
| 70 | + public function fwrite($string, $length = null) |
|
| 71 | + { |
|
| 72 | + return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | - /** |
|
| 76 | - * fgets |
|
| 77 | - * |
|
| 78 | - * @see http://php.net/fgets |
|
| 79 | - * @param int $length |
|
| 80 | - */ |
|
| 81 | - public function fgets($length = null) |
|
| 82 | - { |
|
| 83 | - return fgets($this->handle, $length); |
|
| 84 | - } |
|
| 75 | + /** |
|
| 76 | + * fgets |
|
| 77 | + * |
|
| 78 | + * @see http://php.net/fgets |
|
| 79 | + * @param int $length |
|
| 80 | + */ |
|
| 81 | + public function fgets($length = null) |
|
| 82 | + { |
|
| 83 | + return fgets($this->handle, $length); |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - /** |
|
| 87 | - * feof |
|
| 88 | - * |
|
| 89 | - * @see http://php.net/feof |
|
| 90 | - * @return bool |
|
| 91 | - */ |
|
| 92 | - public function feof() |
|
| 93 | - { |
|
| 94 | - return feof($this->handle); |
|
| 95 | - } |
|
| 86 | + /** |
|
| 87 | + * feof |
|
| 88 | + * |
|
| 89 | + * @see http://php.net/feof |
|
| 90 | + * @return bool |
|
| 91 | + */ |
|
| 92 | + public function feof() |
|
| 93 | + { |
|
| 94 | + return feof($this->handle); |
|
| 95 | + } |
|
| 96 | 96 | |
| 97 | - /** |
|
| 98 | - * fclose |
|
| 99 | - * |
|
| 100 | - * @see http://php.net/fclose |
|
| 101 | - * @return bool |
|
| 102 | - */ |
|
| 103 | - public function fclose() |
|
| 104 | - { |
|
| 105 | - return fclose($this->handle); |
|
| 106 | - } |
|
| 97 | + /** |
|
| 98 | + * fclose |
|
| 99 | + * |
|
| 100 | + * @see http://php.net/fclose |
|
| 101 | + * @return bool |
|
| 102 | + */ |
|
| 103 | + public function fclose() |
|
| 104 | + { |
|
| 105 | + return fclose($this->handle); |
|
| 106 | + } |
|
| 107 | 107 | } |
@@ -33,18 +33,18 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | public function log(\Exception $exception, $time = 0) |
| 35 | 35 | { |
| 36 | - if (! $time) { |
|
| 36 | + if ( ! $time) { |
|
| 37 | 37 | $time = time(); |
| 38 | 38 | } |
| 39 | 39 | $exception_log = '----------------------------------------------------------------------------------------'; |
| 40 | 40 | $exception_log .= PHP_EOL; |
| 41 | - $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
| 42 | - $exception_log .= 'Message: ' . $exception->getMessage() . PHP_EOL; |
|
| 43 | - $exception_log .= 'Code: ' . $exception->getCode() . PHP_EOL; |
|
| 44 | - $exception_log .= 'File: ' . $exception->getFile() . PHP_EOL; |
|
| 45 | - $exception_log .= 'Line No: ' . $exception->getLine() . PHP_EOL; |
|
| 46 | - $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
| 47 | - $exception_log .= $exception->getTraceAsString() . PHP_EOL; |
|
| 41 | + $exception_log .= '['.date('Y-m-d H:i:s', $time).'] Exception Details'.PHP_EOL; |
|
| 42 | + $exception_log .= 'Message: '.$exception->getMessage().PHP_EOL; |
|
| 43 | + $exception_log .= 'Code: '.$exception->getCode().PHP_EOL; |
|
| 44 | + $exception_log .= 'File: '.$exception->getFile().PHP_EOL; |
|
| 45 | + $exception_log .= 'Line No: '.$exception->getLine().PHP_EOL; |
|
| 46 | + $exception_log .= 'Stack trace: '.PHP_EOL; |
|
| 47 | + $exception_log .= $exception->getTraceAsString().PHP_EOL; |
|
| 48 | 48 | $exception_log .= '----------------------------------------------------------------------------------------'; |
| 49 | 49 | $exception_log .= PHP_EOL; |
| 50 | 50 | error_log($exception_log); |
@@ -12,39 +12,39 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class ExceptionLogger |
| 14 | 14 | { |
| 15 | - /** |
|
| 16 | - * ExceptionLogger constructor. |
|
| 17 | - * |
|
| 18 | - * @param \Exception $exception |
|
| 19 | - */ |
|
| 20 | - public function __construct(\Exception $exception) |
|
| 21 | - { |
|
| 22 | - $this->log($exception); |
|
| 23 | - } |
|
| 15 | + /** |
|
| 16 | + * ExceptionLogger constructor. |
|
| 17 | + * |
|
| 18 | + * @param \Exception $exception |
|
| 19 | + */ |
|
| 20 | + public function __construct(\Exception $exception) |
|
| 21 | + { |
|
| 22 | + $this->log($exception); |
|
| 23 | + } |
|
| 24 | 24 | |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * write exception details to log file |
|
| 28 | - * |
|
| 29 | - * @param \Exception $exception |
|
| 30 | - * @param int $time |
|
| 31 | - */ |
|
| 32 | - public function log(\Exception $exception, $time = 0) |
|
| 33 | - { |
|
| 34 | - if (! $time) { |
|
| 35 | - $time = time(); |
|
| 36 | - } |
|
| 37 | - $exception_log = '----------------------------------------------------------------------------------------'; |
|
| 38 | - $exception_log .= PHP_EOL; |
|
| 39 | - $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
| 40 | - $exception_log .= 'Message: ' . $exception->getMessage() . PHP_EOL; |
|
| 41 | - $exception_log .= 'Code: ' . $exception->getCode() . PHP_EOL; |
|
| 42 | - $exception_log .= 'File: ' . $exception->getFile() . PHP_EOL; |
|
| 43 | - $exception_log .= 'Line No: ' . $exception->getLine() . PHP_EOL; |
|
| 44 | - $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
| 45 | - $exception_log .= $exception->getTraceAsString() . PHP_EOL; |
|
| 46 | - $exception_log .= '----------------------------------------------------------------------------------------'; |
|
| 47 | - $exception_log .= PHP_EOL; |
|
| 48 | - error_log($exception_log); |
|
| 49 | - } |
|
| 26 | + /** |
|
| 27 | + * write exception details to log file |
|
| 28 | + * |
|
| 29 | + * @param \Exception $exception |
|
| 30 | + * @param int $time |
|
| 31 | + */ |
|
| 32 | + public function log(\Exception $exception, $time = 0) |
|
| 33 | + { |
|
| 34 | + if (! $time) { |
|
| 35 | + $time = time(); |
|
| 36 | + } |
|
| 37 | + $exception_log = '----------------------------------------------------------------------------------------'; |
|
| 38 | + $exception_log .= PHP_EOL; |
|
| 39 | + $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
| 40 | + $exception_log .= 'Message: ' . $exception->getMessage() . PHP_EOL; |
|
| 41 | + $exception_log .= 'Code: ' . $exception->getCode() . PHP_EOL; |
|
| 42 | + $exception_log .= 'File: ' . $exception->getFile() . PHP_EOL; |
|
| 43 | + $exception_log .= 'Line No: ' . $exception->getLine() . PHP_EOL; |
|
| 44 | + $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
| 45 | + $exception_log .= $exception->getTraceAsString() . PHP_EOL; |
|
| 46 | + $exception_log .= '----------------------------------------------------------------------------------------'; |
|
| 47 | + $exception_log .= PHP_EOL; |
|
| 48 | + error_log($exception_log); |
|
| 49 | + } |
|
| 50 | 50 | } |
@@ -24,14 +24,14 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | public function formatArray($input) |
| 26 | 26 | { |
| 27 | - if (! is_array($input)) { |
|
| 27 | + if ( ! is_array($input)) { |
|
| 28 | 28 | throw new InvalidDataTypeException('input', $input, 'array'); |
| 29 | 29 | } |
| 30 | 30 | // we can use $this inside the closure in PHP 5.3, so pass in a variable pointing to this instead |
| 31 | 31 | $formatter = $this; |
| 32 | 32 | array_walk_recursive( |
| 33 | 33 | $input, |
| 34 | - function (&$value, $key) use ($formatter) { |
|
| 34 | + function(&$value, $key) use ($formatter) { |
|
| 35 | 35 | $value = $formatter->format($value); |
| 36 | 36 | } |
| 37 | 37 | ); |
@@ -14,26 +14,26 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | abstract class FormatterBase implements FormatterInterface |
| 16 | 16 | { |
| 17 | - /** |
|
| 18 | - * Recursively applies the formatting to all VALUES in this multi-dimensional array |
|
| 19 | - * |
|
| 20 | - * @param array $input |
|
| 21 | - * @return array |
|
| 22 | - * @throws InvalidDataTypeException if $input is not an array |
|
| 23 | - */ |
|
| 24 | - public function formatArray($input) |
|
| 25 | - { |
|
| 26 | - if (! is_array($input)) { |
|
| 27 | - throw new InvalidDataTypeException('input', $input, 'array'); |
|
| 28 | - } |
|
| 29 | - // we can use $this inside the closure in PHP 5.3, so pass in a variable pointing to this instead |
|
| 30 | - $formatter = $this; |
|
| 31 | - array_walk_recursive( |
|
| 32 | - $input, |
|
| 33 | - function (&$value, $key) use ($formatter) { |
|
| 34 | - $value = $formatter->format($value); |
|
| 35 | - } |
|
| 36 | - ); |
|
| 37 | - return $input; |
|
| 38 | - } |
|
| 17 | + /** |
|
| 18 | + * Recursively applies the formatting to all VALUES in this multi-dimensional array |
|
| 19 | + * |
|
| 20 | + * @param array $input |
|
| 21 | + * @return array |
|
| 22 | + * @throws InvalidDataTypeException if $input is not an array |
|
| 23 | + */ |
|
| 24 | + public function formatArray($input) |
|
| 25 | + { |
|
| 26 | + if (! is_array($input)) { |
|
| 27 | + throw new InvalidDataTypeException('input', $input, 'array'); |
|
| 28 | + } |
|
| 29 | + // we can use $this inside the closure in PHP 5.3, so pass in a variable pointing to this instead |
|
| 30 | + $formatter = $this; |
|
| 31 | + array_walk_recursive( |
|
| 32 | + $input, |
|
| 33 | + function (&$value, $key) use ($formatter) { |
|
| 34 | + $value = $formatter->format($value); |
|
| 35 | + } |
|
| 36 | + ); |
|
| 37 | + return $input; |
|
| 38 | + } |
|
| 39 | 39 | } |
@@ -53,10 +53,10 @@ discard block |
||
| 53 | 53 | { |
| 54 | 54 | $this->request = $request; |
| 55 | 55 | $this->response = $response; |
| 56 | - espresso_load_required('EE_Base', EE_CORE . 'EE_Base.core.php'); |
|
| 57 | - espresso_load_required('EE_Deprecated', EE_CORE . 'EE_Deprecated.core.php'); |
|
| 56 | + espresso_load_required('EE_Base', EE_CORE.'EE_Base.core.php'); |
|
| 57 | + espresso_load_required('EE_Deprecated', EE_CORE.'EE_Deprecated.core.php'); |
|
| 58 | 58 | // workarounds for PHP < 5.3 |
| 59 | - espresso_load_required('EEH_Class_Tools', EE_HELPERS . 'EEH_Class_Tools.helper.php'); |
|
| 59 | + espresso_load_required('EEH_Class_Tools', EE_HELPERS.'EEH_Class_Tools.helper.php'); |
|
| 60 | 60 | do_action( |
| 61 | 61 | 'EE_EventEspresso_core_services_request_RequestStackCoreApp__handle_request__initialize_core_loading' |
| 62 | 62 | ); |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | { |
| 84 | 84 | espresso_load_required( |
| 85 | 85 | 'EE_Bootstrap', |
| 86 | - EE_CORE . 'EE_Bootstrap.core.php' |
|
| 86 | + EE_CORE.'EE_Bootstrap.core.php' |
|
| 87 | 87 | ); |
| 88 | 88 | add_action('plugins_loaded', array('EE_Bootstrap', 'load_espresso_addons'), 1); |
| 89 | 89 | add_action('plugins_loaded', array('EE_Bootstrap', 'detect_activations_or_upgrades'), 3); |
@@ -22,87 +22,87 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | class RequestStackCoreApp implements RequestDecoratorInterface, RequestStackCoreAppInterface |
| 24 | 24 | { |
| 25 | - /** |
|
| 26 | - * @var RequestInterface $request |
|
| 27 | - */ |
|
| 28 | - protected $request; |
|
| 25 | + /** |
|
| 26 | + * @var RequestInterface $request |
|
| 27 | + */ |
|
| 28 | + protected $request; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @var ResponseInterface $response |
|
| 32 | - */ |
|
| 33 | - protected $response; |
|
| 30 | + /** |
|
| 31 | + * @var ResponseInterface $response |
|
| 32 | + */ |
|
| 33 | + protected $response; |
|
| 34 | 34 | |
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * handle |
|
| 38 | - * sets hooks for running rest of system |
|
| 39 | - * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point |
|
| 40 | - * starting EE Addons from any other point may lead to problems |
|
| 41 | - * |
|
| 42 | - * @param RequestInterface $request |
|
| 43 | - * @param ResponseInterface $response |
|
| 44 | - * @return ResponseInterface |
|
| 45 | - * @throws InvalidClassException |
|
| 46 | - * @throws EE_Error |
|
| 47 | - * @throws InvalidDataTypeException |
|
| 48 | - * @throws InvalidInterfaceException |
|
| 49 | - * @throws InvalidArgumentException |
|
| 50 | - */ |
|
| 51 | - public function handleRequest(RequestInterface $request, ResponseInterface $response) |
|
| 52 | - { |
|
| 53 | - $this->request = $request; |
|
| 54 | - $this->response = $response; |
|
| 55 | - espresso_load_required('EE_Base', EE_CORE . 'EE_Base.core.php'); |
|
| 56 | - espresso_load_required('EE_Deprecated', EE_CORE . 'EE_Deprecated.core.php'); |
|
| 57 | - // workarounds for PHP < 5.3 |
|
| 58 | - espresso_load_required('EEH_Class_Tools', EE_HELPERS . 'EEH_Class_Tools.helper.php'); |
|
| 59 | - do_action( |
|
| 60 | - 'EE_EventEspresso_core_services_request_RequestStackCoreApp__handle_request__initialize_core_loading' |
|
| 61 | - ); |
|
| 62 | - // legacy action for backwards compatibility |
|
| 63 | - do_action('EE_Load_Espresso_Core__handle_request__initialize_core_loading'); |
|
| 64 | - $this->setupFramework(); |
|
| 65 | - $loader = LoaderFactory::getLoader(); |
|
| 66 | - $loader->getShared( |
|
| 67 | - 'EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
| 68 | - ); |
|
| 69 | - // WP cron jobs |
|
| 70 | - $loader->getShared('EE_Cron_Tasks'); |
|
| 71 | - $loader->getShared('EE_System'); |
|
| 72 | - return $this->response; |
|
| 73 | - } |
|
| 36 | + /** |
|
| 37 | + * handle |
|
| 38 | + * sets hooks for running rest of system |
|
| 39 | + * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point |
|
| 40 | + * starting EE Addons from any other point may lead to problems |
|
| 41 | + * |
|
| 42 | + * @param RequestInterface $request |
|
| 43 | + * @param ResponseInterface $response |
|
| 44 | + * @return ResponseInterface |
|
| 45 | + * @throws InvalidClassException |
|
| 46 | + * @throws EE_Error |
|
| 47 | + * @throws InvalidDataTypeException |
|
| 48 | + * @throws InvalidInterfaceException |
|
| 49 | + * @throws InvalidArgumentException |
|
| 50 | + */ |
|
| 51 | + public function handleRequest(RequestInterface $request, ResponseInterface $response) |
|
| 52 | + { |
|
| 53 | + $this->request = $request; |
|
| 54 | + $this->response = $response; |
|
| 55 | + espresso_load_required('EE_Base', EE_CORE . 'EE_Base.core.php'); |
|
| 56 | + espresso_load_required('EE_Deprecated', EE_CORE . 'EE_Deprecated.core.php'); |
|
| 57 | + // workarounds for PHP < 5.3 |
|
| 58 | + espresso_load_required('EEH_Class_Tools', EE_HELPERS . 'EEH_Class_Tools.helper.php'); |
|
| 59 | + do_action( |
|
| 60 | + 'EE_EventEspresso_core_services_request_RequestStackCoreApp__handle_request__initialize_core_loading' |
|
| 61 | + ); |
|
| 62 | + // legacy action for backwards compatibility |
|
| 63 | + do_action('EE_Load_Espresso_Core__handle_request__initialize_core_loading'); |
|
| 64 | + $this->setupFramework(); |
|
| 65 | + $loader = LoaderFactory::getLoader(); |
|
| 66 | + $loader->getShared( |
|
| 67 | + 'EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
| 68 | + ); |
|
| 69 | + // WP cron jobs |
|
| 70 | + $loader->getShared('EE_Cron_Tasks'); |
|
| 71 | + $loader->getShared('EE_System'); |
|
| 72 | + return $this->response; |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | 75 | |
| 76 | - /** |
|
| 77 | - * set framework for the rest of EE to hook into when loading |
|
| 78 | - * |
|
| 79 | - * @throws EE_Error |
|
| 80 | - */ |
|
| 81 | - private function setupFramework() |
|
| 82 | - { |
|
| 83 | - espresso_load_required( |
|
| 84 | - 'EE_Bootstrap', |
|
| 85 | - EE_CORE . 'EE_Bootstrap.core.php' |
|
| 86 | - ); |
|
| 87 | - add_action('plugins_loaded', array('EE_Bootstrap', 'load_espresso_addons'), 1); |
|
| 88 | - add_action('plugins_loaded', array('EE_Bootstrap', 'detect_activations_or_upgrades'), 3); |
|
| 89 | - add_action('plugins_loaded', array('EE_Bootstrap', 'load_core_configuration'), 5); |
|
| 90 | - add_action('plugins_loaded', array('EE_Bootstrap', 'register_shortcodes_modules_and_widgets'), 7); |
|
| 91 | - add_action('plugins_loaded', array('EE_Bootstrap', 'brew_espresso'), 9); |
|
| 92 | - } |
|
| 76 | + /** |
|
| 77 | + * set framework for the rest of EE to hook into when loading |
|
| 78 | + * |
|
| 79 | + * @throws EE_Error |
|
| 80 | + */ |
|
| 81 | + private function setupFramework() |
|
| 82 | + { |
|
| 83 | + espresso_load_required( |
|
| 84 | + 'EE_Bootstrap', |
|
| 85 | + EE_CORE . 'EE_Bootstrap.core.php' |
|
| 86 | + ); |
|
| 87 | + add_action('plugins_loaded', array('EE_Bootstrap', 'load_espresso_addons'), 1); |
|
| 88 | + add_action('plugins_loaded', array('EE_Bootstrap', 'detect_activations_or_upgrades'), 3); |
|
| 89 | + add_action('plugins_loaded', array('EE_Bootstrap', 'load_core_configuration'), 5); |
|
| 90 | + add_action('plugins_loaded', array('EE_Bootstrap', 'register_shortcodes_modules_and_widgets'), 7); |
|
| 91 | + add_action('plugins_loaded', array('EE_Bootstrap', 'brew_espresso'), 9); |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | 94 | |
| 95 | - /** |
|
| 96 | - * called after the request stack has been fully processed |
|
| 97 | - * if any of the middleware apps has requested the plugin be deactivated, then we do that now |
|
| 98 | - * |
|
| 99 | - * @param RequestInterface $request |
|
| 100 | - * @param ResponseInterface $response |
|
| 101 | - */ |
|
| 102 | - public function handleResponse(RequestInterface $request, ResponseInterface $response) |
|
| 103 | - { |
|
| 104 | - if ($response->pluginDeactivated()) { |
|
| 105 | - espresso_deactivate_plugin(EE_PLUGIN_BASENAME); |
|
| 106 | - } |
|
| 107 | - } |
|
| 95 | + /** |
|
| 96 | + * called after the request stack has been fully processed |
|
| 97 | + * if any of the middleware apps has requested the plugin be deactivated, then we do that now |
|
| 98 | + * |
|
| 99 | + * @param RequestInterface $request |
|
| 100 | + * @param ResponseInterface $response |
|
| 101 | + */ |
|
| 102 | + public function handleResponse(RequestInterface $request, ResponseInterface $response) |
|
| 103 | + { |
|
| 104 | + if ($response->pluginDeactivated()) { |
|
| 105 | + espresso_deactivate_plugin(EE_PLUGIN_BASENAME); |
|
| 106 | + } |
|
| 107 | + } |
|
| 108 | 108 | } |