@@ -80,47 +80,47 @@ |
||
80 | 80 | class LoaderFactory |
81 | 81 | { |
82 | 82 | |
83 | - /** |
|
84 | - * @var LoaderInterface $loader ; |
|
85 | - */ |
|
86 | - private static $loader; |
|
83 | + /** |
|
84 | + * @var LoaderInterface $loader ; |
|
85 | + */ |
|
86 | + private static $loader; |
|
87 | 87 | |
88 | 88 | |
89 | - /** |
|
90 | - * @param EE_Registry|CoffeeShop $generator provided during very first instantiation in |
|
91 | - * BootstrapDependencyInjectionContainer::buildLoader() |
|
92 | - * otherwise can be left null |
|
93 | - * @param ClassInterfaceCache|null $class_cache also provided during first instantiation |
|
94 | - * @param ObjectIdentifier|null $object_identifier |
|
95 | - * @return LoaderInterface |
|
96 | - * @throws InvalidArgumentException |
|
97 | - * @throws InvalidDataTypeException |
|
98 | - * @throws InvalidInterfaceException |
|
99 | - */ |
|
100 | - public static function getLoader( |
|
101 | - $generator = null, |
|
102 | - ClassInterfaceCache $class_cache = null, |
|
103 | - ObjectIdentifier $object_identifier = null |
|
104 | - ) { |
|
105 | - if ( |
|
106 | - ! LoaderFactory::$loader instanceof LoaderInterface |
|
107 | - && ($generator instanceof EE_Registry || $generator instanceof CoffeeShop) |
|
108 | - && $class_cache instanceof ClassInterfaceCache |
|
109 | - && $object_identifier instanceof ObjectIdentifier |
|
110 | - ) { |
|
111 | - $core_loader = new CoreLoader($generator); |
|
112 | - LoaderFactory::$loader = new Loader( |
|
113 | - $core_loader, |
|
114 | - new CachingLoader( |
|
115 | - $core_loader, |
|
116 | - new LooseCollection(''), |
|
117 | - $object_identifier |
|
118 | - ), |
|
119 | - $class_cache |
|
120 | - ); |
|
121 | - } |
|
122 | - return LoaderFactory::$loader; |
|
123 | - } |
|
89 | + /** |
|
90 | + * @param EE_Registry|CoffeeShop $generator provided during very first instantiation in |
|
91 | + * BootstrapDependencyInjectionContainer::buildLoader() |
|
92 | + * otherwise can be left null |
|
93 | + * @param ClassInterfaceCache|null $class_cache also provided during first instantiation |
|
94 | + * @param ObjectIdentifier|null $object_identifier |
|
95 | + * @return LoaderInterface |
|
96 | + * @throws InvalidArgumentException |
|
97 | + * @throws InvalidDataTypeException |
|
98 | + * @throws InvalidInterfaceException |
|
99 | + */ |
|
100 | + public static function getLoader( |
|
101 | + $generator = null, |
|
102 | + ClassInterfaceCache $class_cache = null, |
|
103 | + ObjectIdentifier $object_identifier = null |
|
104 | + ) { |
|
105 | + if ( |
|
106 | + ! LoaderFactory::$loader instanceof LoaderInterface |
|
107 | + && ($generator instanceof EE_Registry || $generator instanceof CoffeeShop) |
|
108 | + && $class_cache instanceof ClassInterfaceCache |
|
109 | + && $object_identifier instanceof ObjectIdentifier |
|
110 | + ) { |
|
111 | + $core_loader = new CoreLoader($generator); |
|
112 | + LoaderFactory::$loader = new Loader( |
|
113 | + $core_loader, |
|
114 | + new CachingLoader( |
|
115 | + $core_loader, |
|
116 | + new LooseCollection(''), |
|
117 | + $object_identifier |
|
118 | + ), |
|
119 | + $class_cache |
|
120 | + ); |
|
121 | + } |
|
122 | + return LoaderFactory::$loader; |
|
123 | + } |
|
124 | 124 | |
125 | 125 | |
126 | 126 | } |
@@ -20,55 +20,55 @@ |
||
20 | 20 | class BlockCollection extends Collection |
21 | 21 | { |
22 | 22 | |
23 | - /** |
|
24 | - * Collection constructor |
|
25 | - * |
|
26 | - * @throws InvalidInterfaceException |
|
27 | - */ |
|
28 | - public function __construct() |
|
29 | - { |
|
30 | - parent::__construct('EventEspresso\core\domain\entities\editor\BlockInterface'); |
|
31 | - } |
|
23 | + /** |
|
24 | + * Collection constructor |
|
25 | + * |
|
26 | + * @throws InvalidInterfaceException |
|
27 | + */ |
|
28 | + public function __construct() |
|
29 | + { |
|
30 | + parent::__construct('EventEspresso\core\domain\entities\editor\BlockInterface'); |
|
31 | + } |
|
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * unRegisterBlock |
|
36 | - * finds block in the Collection based on the identifier that was set using addObject() |
|
37 | - * and calls unRegisterBlock() on it. Returns block if successful and false if block was not found. |
|
38 | - * PLZ NOTE: the pointer is reset to the beginning of the collection afterwards |
|
39 | - * |
|
40 | - * @param mixed $identifier |
|
41 | - * @return boolean |
|
42 | - */ |
|
43 | - public function unRegisterBlock($identifier) |
|
44 | - { |
|
45 | - $this->rewind(); |
|
46 | - while ($this->valid()) { |
|
47 | - if ($identifier === $this->getInfo()) { |
|
48 | - $object = $this->current(); |
|
49 | - $this->rewind(); |
|
50 | - return $object->unRegisterBlock(); |
|
51 | - } |
|
52 | - $this->next(); |
|
53 | - } |
|
54 | - return false; |
|
55 | - } |
|
34 | + /** |
|
35 | + * unRegisterBlock |
|
36 | + * finds block in the Collection based on the identifier that was set using addObject() |
|
37 | + * and calls unRegisterBlock() on it. Returns block if successful and false if block was not found. |
|
38 | + * PLZ NOTE: the pointer is reset to the beginning of the collection afterwards |
|
39 | + * |
|
40 | + * @param mixed $identifier |
|
41 | + * @return boolean |
|
42 | + */ |
|
43 | + public function unRegisterBlock($identifier) |
|
44 | + { |
|
45 | + $this->rewind(); |
|
46 | + while ($this->valid()) { |
|
47 | + if ($identifier === $this->getInfo()) { |
|
48 | + $object = $this->current(); |
|
49 | + $this->rewind(); |
|
50 | + return $object->unRegisterBlock(); |
|
51 | + } |
|
52 | + $this->next(); |
|
53 | + } |
|
54 | + return false; |
|
55 | + } |
|
56 | 56 | |
57 | 57 | |
58 | - /** |
|
59 | - * unRegisterAllBlocks |
|
60 | - * calls unRegisterBlock() on all blocks in Collection. |
|
61 | - * PLZ NOTE: the pointer is reset to the beginning of the collection afterwards |
|
62 | - * |
|
63 | - * @return void |
|
64 | - */ |
|
65 | - public function unRegisterAllBlocks() |
|
66 | - { |
|
67 | - $this->rewind(); |
|
68 | - while ($this->valid()) { |
|
69 | - $this->current()->unRegisterBlock(); |
|
70 | - $this->next(); |
|
71 | - } |
|
72 | - $this->rewind(); |
|
73 | - } |
|
58 | + /** |
|
59 | + * unRegisterAllBlocks |
|
60 | + * calls unRegisterBlock() on all blocks in Collection. |
|
61 | + * PLZ NOTE: the pointer is reset to the beginning of the collection afterwards |
|
62 | + * |
|
63 | + * @return void |
|
64 | + */ |
|
65 | + public function unRegisterAllBlocks() |
|
66 | + { |
|
67 | + $this->rewind(); |
|
68 | + while ($this->valid()) { |
|
69 | + $this->current()->unRegisterBlock(); |
|
70 | + $this->next(); |
|
71 | + } |
|
72 | + $this->rewind(); |
|
73 | + } |
|
74 | 74 | } |
@@ -51,16 +51,16 @@ discard block |
||
51 | 51 | { |
52 | 52 | $fqn = $this->getFqn($fqn); |
53 | 53 | // have we already seen this FQCN ? |
54 | - if (! array_key_exists($fqn, $this->interfaces)) { |
|
55 | - $this->interfaces[ $fqn ] = array(); |
|
54 | + if ( ! array_key_exists($fqn, $this->interfaces)) { |
|
55 | + $this->interfaces[$fqn] = array(); |
|
56 | 56 | if (class_exists($fqn)) { |
57 | - $this->interfaces[ $fqn ] = class_implements($fqn, false); |
|
58 | - $this->interfaces[ $fqn ] = $this->interfaces[ $fqn ] !== false |
|
59 | - ? $this->interfaces[ $fqn ] |
|
57 | + $this->interfaces[$fqn] = class_implements($fqn, false); |
|
58 | + $this->interfaces[$fqn] = $this->interfaces[$fqn] !== false |
|
59 | + ? $this->interfaces[$fqn] |
|
60 | 60 | : array(); |
61 | 61 | } |
62 | 62 | } |
63 | - return $this->interfaces[ $fqn ]; |
|
63 | + return $this->interfaces[$fqn]; |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | |
@@ -91,13 +91,13 @@ discard block |
||
91 | 91 | // are we adding an alias for a specific class? |
92 | 92 | if ($for_class !== '') { |
93 | 93 | // make sure it's set up as an array |
94 | - if (! isset($this->aliases[ $for_class ])) { |
|
95 | - $this->aliases[ $for_class ] = array(); |
|
94 | + if ( ! isset($this->aliases[$for_class])) { |
|
95 | + $this->aliases[$for_class] = array(); |
|
96 | 96 | } |
97 | - $this->aliases[ $for_class ][ $alias ] = $fqn; |
|
97 | + $this->aliases[$for_class][$alias] = $fqn; |
|
98 | 98 | return; |
99 | 99 | } |
100 | - $this->aliases[ $alias ] = $fqn; |
|
100 | + $this->aliases[$alias] = $fqn; |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | */ |
130 | 130 | protected function isDirectAlias($fqn = '') |
131 | 131 | { |
132 | - return isset($this->aliases[ (string) $fqn ]) && ! is_array($this->aliases[ (string) $fqn ]); |
|
132 | + return isset($this->aliases[(string) $fqn]) && ! is_array($this->aliases[(string) $fqn]); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | { |
145 | 145 | return ( |
146 | 146 | $for_class !== '' |
147 | - && isset($this->aliases[ (string) $for_class ][ (string) $fqn ]) |
|
147 | + && isset($this->aliases[(string) $for_class][(string) $fqn]) |
|
148 | 148 | ); |
149 | 149 | } |
150 | 150 | |
@@ -169,10 +169,10 @@ discard block |
||
169 | 169 | { |
170 | 170 | $alias = $this->getFqn($alias); |
171 | 171 | if ($this->isAliasForClass($alias, $for_class)) { |
172 | - return $this->getFqnForAlias($this->aliases[ (string) $for_class ][ (string) $alias ], $for_class); |
|
172 | + return $this->getFqnForAlias($this->aliases[(string) $for_class][(string) $alias], $for_class); |
|
173 | 173 | } |
174 | 174 | if ($this->isDirectAlias($alias)) { |
175 | - return $this->getFqnForAlias($this->aliases[ (string) $alias ], ''); |
|
175 | + return $this->getFqnForAlias($this->aliases[(string) $alias], ''); |
|
176 | 176 | } |
177 | 177 | return $alias; |
178 | 178 | } |
@@ -17,173 +17,173 @@ |
||
17 | 17 | class ClassInterfaceCache |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * array of interfaces indexed by FQCNs where values are arrays of interface FQNs |
|
22 | - * |
|
23 | - * @var string[][] $interfaces |
|
24 | - */ |
|
25 | - private $interfaces = array(); |
|
26 | - |
|
27 | - /** |
|
28 | - * @type string[][] $aliases |
|
29 | - */ |
|
30 | - protected $aliases = array(); |
|
31 | - |
|
32 | - |
|
33 | - /** |
|
34 | - * @return string[][] |
|
35 | - */ |
|
36 | - public function getAliases() |
|
37 | - { |
|
38 | - return $this->aliases; |
|
39 | - } |
|
40 | - |
|
41 | - /** |
|
42 | - * @param string $fqn |
|
43 | - * @return string |
|
44 | - */ |
|
45 | - public function getFqn($fqn) |
|
46 | - { |
|
47 | - $fqn = $fqn instanceof FullyQualifiedName ? $fqn->string() : $fqn; |
|
48 | - return ltrim($fqn, '\\'); |
|
49 | - } |
|
50 | - |
|
51 | - |
|
52 | - /** |
|
53 | - * @param string $fqn |
|
54 | - * @return array |
|
55 | - */ |
|
56 | - public function getInterfaces($fqn) |
|
57 | - { |
|
58 | - $fqn = $this->getFqn($fqn); |
|
59 | - // have we already seen this FQCN ? |
|
60 | - if (! array_key_exists($fqn, $this->interfaces)) { |
|
61 | - $this->interfaces[ $fqn ] = array(); |
|
62 | - if (class_exists($fqn)) { |
|
63 | - $this->interfaces[ $fqn ] = class_implements($fqn, false); |
|
64 | - $this->interfaces[ $fqn ] = $this->interfaces[ $fqn ] !== false |
|
65 | - ? $this->interfaces[ $fqn ] |
|
66 | - : array(); |
|
67 | - } |
|
68 | - } |
|
69 | - return $this->interfaces[ $fqn ]; |
|
70 | - } |
|
71 | - |
|
72 | - |
|
73 | - /** |
|
74 | - * @param string $fqn |
|
75 | - * @param string $interface |
|
76 | - * @return bool |
|
77 | - */ |
|
78 | - public function hasInterface($fqn, $interface) |
|
79 | - { |
|
80 | - $fqn = $this->getFqn($fqn); |
|
81 | - $interfaces = $this->getInterfaces($fqn); |
|
82 | - return in_array($interface, $interfaces, true); |
|
83 | - } |
|
84 | - |
|
85 | - |
|
86 | - /** |
|
87 | - * adds an alias for a classname |
|
88 | - * |
|
89 | - * @param string $fqn the class name that should be used (concrete class to replace interface) |
|
90 | - * @param string $alias the class name that would be type hinted for (abstract parent or interface) |
|
91 | - * @param string $for_class the class that has the dependency (is type hinting for the interface) |
|
92 | - * @throws InvalidAliasException |
|
93 | - */ |
|
94 | - public function addAlias($fqn, $alias, $for_class = '') |
|
95 | - { |
|
96 | - $fqn = $this->getFqn($fqn); |
|
97 | - $alias = $this->getFqn($alias); |
|
98 | - if (strpos($alias, '\\') !== false && ! is_subclass_of($fqn, $alias)) { |
|
99 | - throw new InvalidAliasException($fqn, $alias); |
|
100 | - } |
|
101 | - // are we adding an alias for a specific class? |
|
102 | - if ($for_class !== '') { |
|
103 | - // make sure it's set up as an array |
|
104 | - if (! isset($this->aliases[ $for_class ])) { |
|
105 | - $this->aliases[ $for_class ] = array(); |
|
106 | - } |
|
107 | - $this->aliases[ $for_class ][ $alias ] = $fqn; |
|
108 | - return; |
|
109 | - } |
|
110 | - $this->aliases[ $alias ] = $fqn; |
|
111 | - } |
|
112 | - |
|
113 | - |
|
114 | - /** |
|
115 | - * returns TRUE if the provided FQN is an alias |
|
116 | - * |
|
117 | - * @param string $fqn |
|
118 | - * @param string $for_class |
|
119 | - * @return bool |
|
120 | - */ |
|
121 | - public function isAlias($fqn = '', $for_class = '') |
|
122 | - { |
|
123 | - $fqn = $this->getFqn($fqn); |
|
124 | - if ($this->isAliasForClass($fqn, $for_class)) { |
|
125 | - return true; |
|
126 | - } |
|
127 | - if ($this->isDirectAlias($fqn)) { |
|
128 | - return true; |
|
129 | - } |
|
130 | - return false; |
|
131 | - } |
|
132 | - |
|
133 | - |
|
134 | - /** |
|
135 | - * returns TRUE if the provided FQN is an alias |
|
136 | - * |
|
137 | - * @param string $fqn |
|
138 | - * @return bool |
|
139 | - */ |
|
140 | - protected function isDirectAlias($fqn = '') |
|
141 | - { |
|
142 | - return isset($this->aliases[ (string) $fqn ]) && ! is_array($this->aliases[ (string) $fqn ]); |
|
143 | - } |
|
144 | - |
|
145 | - |
|
146 | - /** |
|
147 | - * returns TRUE if the provided FQN is an alias for the specified class |
|
148 | - * |
|
149 | - * @param string $fqn |
|
150 | - * @param string $for_class |
|
151 | - * @return bool |
|
152 | - */ |
|
153 | - protected function isAliasForClass($fqn = '', $for_class = '') |
|
154 | - { |
|
155 | - return ( |
|
156 | - $for_class !== '' |
|
157 | - && isset($this->aliases[ (string) $for_class ][ (string) $fqn ]) |
|
158 | - ); |
|
159 | - } |
|
160 | - |
|
161 | - |
|
162 | - /** |
|
163 | - * returns FQN for provided alias if one exists, otherwise returns the original FQN |
|
164 | - * functions recursively, so that multiple aliases can be used to drill down to a FQN |
|
165 | - * for example: |
|
166 | - * if the following two entries were added to the aliases array: |
|
167 | - * array( |
|
168 | - * 'interface_alias' => 'some\namespace\interface' |
|
169 | - * 'some\namespace\interface' => 'some\namespace\classname' |
|
170 | - * ) |
|
171 | - * then one could use Loader::getNew( 'interface_alias' ) |
|
172 | - * to load an instance of 'some\namespace\classname' |
|
173 | - * |
|
174 | - * @param string $alias |
|
175 | - * @param string $for_class |
|
176 | - * @return string |
|
177 | - */ |
|
178 | - public function getFqnForAlias($alias = '', $for_class = '') |
|
179 | - { |
|
180 | - $alias = $this->getFqn($alias); |
|
181 | - if ($this->isAliasForClass($alias, $for_class)) { |
|
182 | - return $this->getFqnForAlias($this->aliases[ (string) $for_class ][ (string) $alias ], $for_class); |
|
183 | - } |
|
184 | - if ($this->isDirectAlias($alias)) { |
|
185 | - return $this->getFqnForAlias($this->aliases[ (string) $alias ], ''); |
|
186 | - } |
|
187 | - return $alias; |
|
188 | - } |
|
20 | + /** |
|
21 | + * array of interfaces indexed by FQCNs where values are arrays of interface FQNs |
|
22 | + * |
|
23 | + * @var string[][] $interfaces |
|
24 | + */ |
|
25 | + private $interfaces = array(); |
|
26 | + |
|
27 | + /** |
|
28 | + * @type string[][] $aliases |
|
29 | + */ |
|
30 | + protected $aliases = array(); |
|
31 | + |
|
32 | + |
|
33 | + /** |
|
34 | + * @return string[][] |
|
35 | + */ |
|
36 | + public function getAliases() |
|
37 | + { |
|
38 | + return $this->aliases; |
|
39 | + } |
|
40 | + |
|
41 | + /** |
|
42 | + * @param string $fqn |
|
43 | + * @return string |
|
44 | + */ |
|
45 | + public function getFqn($fqn) |
|
46 | + { |
|
47 | + $fqn = $fqn instanceof FullyQualifiedName ? $fqn->string() : $fqn; |
|
48 | + return ltrim($fqn, '\\'); |
|
49 | + } |
|
50 | + |
|
51 | + |
|
52 | + /** |
|
53 | + * @param string $fqn |
|
54 | + * @return array |
|
55 | + */ |
|
56 | + public function getInterfaces($fqn) |
|
57 | + { |
|
58 | + $fqn = $this->getFqn($fqn); |
|
59 | + // have we already seen this FQCN ? |
|
60 | + if (! array_key_exists($fqn, $this->interfaces)) { |
|
61 | + $this->interfaces[ $fqn ] = array(); |
|
62 | + if (class_exists($fqn)) { |
|
63 | + $this->interfaces[ $fqn ] = class_implements($fqn, false); |
|
64 | + $this->interfaces[ $fqn ] = $this->interfaces[ $fqn ] !== false |
|
65 | + ? $this->interfaces[ $fqn ] |
|
66 | + : array(); |
|
67 | + } |
|
68 | + } |
|
69 | + return $this->interfaces[ $fqn ]; |
|
70 | + } |
|
71 | + |
|
72 | + |
|
73 | + /** |
|
74 | + * @param string $fqn |
|
75 | + * @param string $interface |
|
76 | + * @return bool |
|
77 | + */ |
|
78 | + public function hasInterface($fqn, $interface) |
|
79 | + { |
|
80 | + $fqn = $this->getFqn($fqn); |
|
81 | + $interfaces = $this->getInterfaces($fqn); |
|
82 | + return in_array($interface, $interfaces, true); |
|
83 | + } |
|
84 | + |
|
85 | + |
|
86 | + /** |
|
87 | + * adds an alias for a classname |
|
88 | + * |
|
89 | + * @param string $fqn the class name that should be used (concrete class to replace interface) |
|
90 | + * @param string $alias the class name that would be type hinted for (abstract parent or interface) |
|
91 | + * @param string $for_class the class that has the dependency (is type hinting for the interface) |
|
92 | + * @throws InvalidAliasException |
|
93 | + */ |
|
94 | + public function addAlias($fqn, $alias, $for_class = '') |
|
95 | + { |
|
96 | + $fqn = $this->getFqn($fqn); |
|
97 | + $alias = $this->getFqn($alias); |
|
98 | + if (strpos($alias, '\\') !== false && ! is_subclass_of($fqn, $alias)) { |
|
99 | + throw new InvalidAliasException($fqn, $alias); |
|
100 | + } |
|
101 | + // are we adding an alias for a specific class? |
|
102 | + if ($for_class !== '') { |
|
103 | + // make sure it's set up as an array |
|
104 | + if (! isset($this->aliases[ $for_class ])) { |
|
105 | + $this->aliases[ $for_class ] = array(); |
|
106 | + } |
|
107 | + $this->aliases[ $for_class ][ $alias ] = $fqn; |
|
108 | + return; |
|
109 | + } |
|
110 | + $this->aliases[ $alias ] = $fqn; |
|
111 | + } |
|
112 | + |
|
113 | + |
|
114 | + /** |
|
115 | + * returns TRUE if the provided FQN is an alias |
|
116 | + * |
|
117 | + * @param string $fqn |
|
118 | + * @param string $for_class |
|
119 | + * @return bool |
|
120 | + */ |
|
121 | + public function isAlias($fqn = '', $for_class = '') |
|
122 | + { |
|
123 | + $fqn = $this->getFqn($fqn); |
|
124 | + if ($this->isAliasForClass($fqn, $for_class)) { |
|
125 | + return true; |
|
126 | + } |
|
127 | + if ($this->isDirectAlias($fqn)) { |
|
128 | + return true; |
|
129 | + } |
|
130 | + return false; |
|
131 | + } |
|
132 | + |
|
133 | + |
|
134 | + /** |
|
135 | + * returns TRUE if the provided FQN is an alias |
|
136 | + * |
|
137 | + * @param string $fqn |
|
138 | + * @return bool |
|
139 | + */ |
|
140 | + protected function isDirectAlias($fqn = '') |
|
141 | + { |
|
142 | + return isset($this->aliases[ (string) $fqn ]) && ! is_array($this->aliases[ (string) $fqn ]); |
|
143 | + } |
|
144 | + |
|
145 | + |
|
146 | + /** |
|
147 | + * returns TRUE if the provided FQN is an alias for the specified class |
|
148 | + * |
|
149 | + * @param string $fqn |
|
150 | + * @param string $for_class |
|
151 | + * @return bool |
|
152 | + */ |
|
153 | + protected function isAliasForClass($fqn = '', $for_class = '') |
|
154 | + { |
|
155 | + return ( |
|
156 | + $for_class !== '' |
|
157 | + && isset($this->aliases[ (string) $for_class ][ (string) $fqn ]) |
|
158 | + ); |
|
159 | + } |
|
160 | + |
|
161 | + |
|
162 | + /** |
|
163 | + * returns FQN for provided alias if one exists, otherwise returns the original FQN |
|
164 | + * functions recursively, so that multiple aliases can be used to drill down to a FQN |
|
165 | + * for example: |
|
166 | + * if the following two entries were added to the aliases array: |
|
167 | + * array( |
|
168 | + * 'interface_alias' => 'some\namespace\interface' |
|
169 | + * 'some\namespace\interface' => 'some\namespace\classname' |
|
170 | + * ) |
|
171 | + * then one could use Loader::getNew( 'interface_alias' ) |
|
172 | + * to load an instance of 'some\namespace\classname' |
|
173 | + * |
|
174 | + * @param string $alias |
|
175 | + * @param string $for_class |
|
176 | + * @return string |
|
177 | + */ |
|
178 | + public function getFqnForAlias($alias = '', $for_class = '') |
|
179 | + { |
|
180 | + $alias = $this->getFqn($alias); |
|
181 | + if ($this->isAliasForClass($alias, $for_class)) { |
|
182 | + return $this->getFqnForAlias($this->aliases[ (string) $for_class ][ (string) $alias ], $for_class); |
|
183 | + } |
|
184 | + if ($this->isDirectAlias($alias)) { |
|
185 | + return $this->getFqnForAlias($this->aliases[ (string) $alias ], ''); |
|
186 | + } |
|
187 | + return $alias; |
|
188 | + } |
|
189 | 189 | } |
@@ -61,7 +61,7 @@ |
||
61 | 61 | { |
62 | 62 | $custom_post_types = $this->custom_post_types->getDefinitions(); |
63 | 63 | foreach ($custom_post_types as $custom_post_type => $CPT) { |
64 | - $this->wp_post_types[ $custom_post_type ] = $this->registerCustomPostType( |
|
64 | + $this->wp_post_types[$custom_post_type] = $this->registerCustomPostType( |
|
65 | 65 | $custom_post_type, |
66 | 66 | $CPT['singular_name'], |
67 | 67 | $CPT['plural_name'], |
@@ -18,314 +18,314 @@ |
||
18 | 18 | class RegisterCustomPostTypes |
19 | 19 | { |
20 | 20 | |
21 | - /** |
|
22 | - * @var CustomPostTypeDefinitions $custom_post_types |
|
23 | - */ |
|
24 | - public $custom_post_types; |
|
21 | + /** |
|
22 | + * @var CustomPostTypeDefinitions $custom_post_types |
|
23 | + */ |
|
24 | + public $custom_post_types; |
|
25 | 25 | |
26 | - /** |
|
27 | - * @var WP_Post_Type[] $wp_post_types |
|
28 | - */ |
|
29 | - public $wp_post_types = array(); |
|
26 | + /** |
|
27 | + * @var WP_Post_Type[] $wp_post_types |
|
28 | + */ |
|
29 | + public $wp_post_types = array(); |
|
30 | 30 | |
31 | 31 | |
32 | - /** |
|
33 | - * RegisterCustomPostTypes constructor. |
|
34 | - * |
|
35 | - * @param CustomPostTypeDefinitions $custom_post_types |
|
36 | - */ |
|
37 | - public function __construct(CustomPostTypeDefinitions $custom_post_types) |
|
38 | - { |
|
39 | - $this->custom_post_types = $custom_post_types; |
|
40 | - } |
|
32 | + /** |
|
33 | + * RegisterCustomPostTypes constructor. |
|
34 | + * |
|
35 | + * @param CustomPostTypeDefinitions $custom_post_types |
|
36 | + */ |
|
37 | + public function __construct(CustomPostTypeDefinitions $custom_post_types) |
|
38 | + { |
|
39 | + $this->custom_post_types = $custom_post_types; |
|
40 | + } |
|
41 | 41 | |
42 | 42 | |
43 | - /** |
|
44 | - * @return WP_Post_Type[] |
|
45 | - */ |
|
46 | - public function getRegisteredCustomPostTypes() |
|
47 | - { |
|
48 | - return $this->wp_post_types; |
|
49 | - } |
|
43 | + /** |
|
44 | + * @return WP_Post_Type[] |
|
45 | + */ |
|
46 | + public function getRegisteredCustomPostTypes() |
|
47 | + { |
|
48 | + return $this->wp_post_types; |
|
49 | + } |
|
50 | 50 | |
51 | 51 | |
52 | - /** |
|
53 | - * @return void |
|
54 | - * @throws DomainException |
|
55 | - */ |
|
56 | - public function registerCustomPostTypes() |
|
57 | - { |
|
58 | - $custom_post_types = $this->custom_post_types->getDefinitions(); |
|
59 | - foreach ($custom_post_types as $custom_post_type => $CPT) { |
|
60 | - $this->wp_post_types[ $custom_post_type ] = $this->registerCustomPostType( |
|
61 | - $custom_post_type, |
|
62 | - $CPT['singular_name'], |
|
63 | - $CPT['plural_name'], |
|
64 | - $CPT['singular_slug'], |
|
65 | - $CPT['plural_slug'], |
|
66 | - $CPT['args'] |
|
67 | - ); |
|
68 | - } |
|
69 | - } |
|
52 | + /** |
|
53 | + * @return void |
|
54 | + * @throws DomainException |
|
55 | + */ |
|
56 | + public function registerCustomPostTypes() |
|
57 | + { |
|
58 | + $custom_post_types = $this->custom_post_types->getDefinitions(); |
|
59 | + foreach ($custom_post_types as $custom_post_type => $CPT) { |
|
60 | + $this->wp_post_types[ $custom_post_type ] = $this->registerCustomPostType( |
|
61 | + $custom_post_type, |
|
62 | + $CPT['singular_name'], |
|
63 | + $CPT['plural_name'], |
|
64 | + $CPT['singular_slug'], |
|
65 | + $CPT['plural_slug'], |
|
66 | + $CPT['args'] |
|
67 | + ); |
|
68 | + } |
|
69 | + } |
|
70 | 70 | |
71 | 71 | |
72 | - /** |
|
73 | - * Registers a new custom post type. Sets default settings given only the following params. |
|
74 | - * Returns the registered post type object, or an error object. |
|
75 | - * |
|
76 | - * @param string $post_type the actual post type name |
|
77 | - * IMPORTANT: |
|
78 | - * this must match what the slug is for admin pages related to this CPT |
|
79 | - * Also any models must use this slug as well |
|
80 | - * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
81 | - * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
82 | - * @param string $singular_slug |
|
83 | - * @param string $plural_slug |
|
84 | - * @param array $override_arguments exactly like $args as described in |
|
85 | - * http://codex.wordpress.org/Function_Reference/register_post_type |
|
86 | - * @return WP_Post_Type|WP_Error |
|
87 | - * @throws DomainException |
|
88 | - */ |
|
89 | - public function registerCustomPostType( |
|
90 | - $post_type, |
|
91 | - $singular_name, |
|
92 | - $plural_name, |
|
93 | - $singular_slug = '', |
|
94 | - $plural_slug = '', |
|
95 | - array $override_arguments = array() |
|
96 | - ) { |
|
97 | - $wp_post_type = register_post_type( |
|
98 | - $post_type, |
|
99 | - $this->prepareArguments( |
|
100 | - $post_type, |
|
101 | - $singular_name, |
|
102 | - $plural_name, |
|
103 | - $singular_slug, |
|
104 | - $plural_slug, |
|
105 | - $override_arguments |
|
106 | - ) |
|
107 | - ); |
|
108 | - if ($wp_post_type instanceof WP_Error) { |
|
109 | - throw new DomainException($wp_post_type->get_error_message()); |
|
110 | - } |
|
111 | - return $wp_post_type; |
|
112 | - } |
|
72 | + /** |
|
73 | + * Registers a new custom post type. Sets default settings given only the following params. |
|
74 | + * Returns the registered post type object, or an error object. |
|
75 | + * |
|
76 | + * @param string $post_type the actual post type name |
|
77 | + * IMPORTANT: |
|
78 | + * this must match what the slug is for admin pages related to this CPT |
|
79 | + * Also any models must use this slug as well |
|
80 | + * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
81 | + * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
82 | + * @param string $singular_slug |
|
83 | + * @param string $plural_slug |
|
84 | + * @param array $override_arguments exactly like $args as described in |
|
85 | + * http://codex.wordpress.org/Function_Reference/register_post_type |
|
86 | + * @return WP_Post_Type|WP_Error |
|
87 | + * @throws DomainException |
|
88 | + */ |
|
89 | + public function registerCustomPostType( |
|
90 | + $post_type, |
|
91 | + $singular_name, |
|
92 | + $plural_name, |
|
93 | + $singular_slug = '', |
|
94 | + $plural_slug = '', |
|
95 | + array $override_arguments = array() |
|
96 | + ) { |
|
97 | + $wp_post_type = register_post_type( |
|
98 | + $post_type, |
|
99 | + $this->prepareArguments( |
|
100 | + $post_type, |
|
101 | + $singular_name, |
|
102 | + $plural_name, |
|
103 | + $singular_slug, |
|
104 | + $plural_slug, |
|
105 | + $override_arguments |
|
106 | + ) |
|
107 | + ); |
|
108 | + if ($wp_post_type instanceof WP_Error) { |
|
109 | + throw new DomainException($wp_post_type->get_error_message()); |
|
110 | + } |
|
111 | + return $wp_post_type; |
|
112 | + } |
|
113 | 113 | |
114 | 114 | |
115 | - /** |
|
116 | - * @param string $post_type the actual post type name |
|
117 | - * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
118 | - * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
119 | - * @param string $singular_slug |
|
120 | - * @param string $plural_slug |
|
121 | - * @param array $override_arguments The default values set in this function will be overridden |
|
122 | - * by whatever you set in $override_arguments |
|
123 | - * @return array |
|
124 | - */ |
|
125 | - protected function prepareArguments( |
|
126 | - $post_type, |
|
127 | - $singular_name, |
|
128 | - $plural_name, |
|
129 | - $singular_slug, |
|
130 | - $plural_slug, |
|
131 | - array $override_arguments = array() |
|
132 | - ) { |
|
133 | - // verify plural slug and singular slug, if they aren't we'll use $singular_name and $plural_name |
|
134 | - $singular_slug = ! empty($singular_slug) ? $singular_slug : $singular_name; |
|
135 | - $plural_slug = ! empty($plural_slug) ? $plural_slug : $plural_name; |
|
136 | - $labels = $this->getLabels( |
|
137 | - $singular_name, |
|
138 | - $plural_name, |
|
139 | - $singular_slug, |
|
140 | - $plural_slug |
|
141 | - ); |
|
142 | - // note the page_templates arg in the supports index is something specific to EE. |
|
143 | - // WordPress doesn't actually have that in their register_post_type api. |
|
144 | - $arguments = $this->getDefaultArguments($labels, $post_type, $plural_slug); |
|
145 | - if ($override_arguments) { |
|
146 | - if (isset($override_arguments['labels'])) { |
|
147 | - $labels = array_merge($arguments['labels'], $override_arguments['labels']); |
|
148 | - } |
|
149 | - $arguments = array_merge($arguments, $override_arguments); |
|
150 | - $arguments['labels'] = $labels; |
|
151 | - } |
|
152 | - return $arguments; |
|
153 | - } |
|
115 | + /** |
|
116 | + * @param string $post_type the actual post type name |
|
117 | + * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
118 | + * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
119 | + * @param string $singular_slug |
|
120 | + * @param string $plural_slug |
|
121 | + * @param array $override_arguments The default values set in this function will be overridden |
|
122 | + * by whatever you set in $override_arguments |
|
123 | + * @return array |
|
124 | + */ |
|
125 | + protected function prepareArguments( |
|
126 | + $post_type, |
|
127 | + $singular_name, |
|
128 | + $plural_name, |
|
129 | + $singular_slug, |
|
130 | + $plural_slug, |
|
131 | + array $override_arguments = array() |
|
132 | + ) { |
|
133 | + // verify plural slug and singular slug, if they aren't we'll use $singular_name and $plural_name |
|
134 | + $singular_slug = ! empty($singular_slug) ? $singular_slug : $singular_name; |
|
135 | + $plural_slug = ! empty($plural_slug) ? $plural_slug : $plural_name; |
|
136 | + $labels = $this->getLabels( |
|
137 | + $singular_name, |
|
138 | + $plural_name, |
|
139 | + $singular_slug, |
|
140 | + $plural_slug |
|
141 | + ); |
|
142 | + // note the page_templates arg in the supports index is something specific to EE. |
|
143 | + // WordPress doesn't actually have that in their register_post_type api. |
|
144 | + $arguments = $this->getDefaultArguments($labels, $post_type, $plural_slug); |
|
145 | + if ($override_arguments) { |
|
146 | + if (isset($override_arguments['labels'])) { |
|
147 | + $labels = array_merge($arguments['labels'], $override_arguments['labels']); |
|
148 | + } |
|
149 | + $arguments = array_merge($arguments, $override_arguments); |
|
150 | + $arguments['labels'] = $labels; |
|
151 | + } |
|
152 | + return $arguments; |
|
153 | + } |
|
154 | 154 | |
155 | 155 | |
156 | - /** |
|
157 | - * @param string $singular_name |
|
158 | - * @param string $plural_name |
|
159 | - * @param string $singular_slug |
|
160 | - * @param string $plural_slug |
|
161 | - * @return array |
|
162 | - */ |
|
163 | - private function getLabels($singular_name, $plural_name, $singular_slug, $plural_slug) |
|
164 | - { |
|
165 | - return array( |
|
166 | - 'name' => $plural_name, |
|
167 | - 'singular_name' => $singular_name, |
|
168 | - 'singular_slug' => $singular_slug, |
|
169 | - 'plural_slug' => $plural_slug, |
|
170 | - 'add_new' => sprintf( |
|
171 | - /* Translators: Post Type Label */ |
|
172 | - esc_html_x('Add %s', 'Add Event', 'event_espresso'), |
|
173 | - $singular_name |
|
174 | - ), |
|
175 | - 'add_new_item' => sprintf( |
|
176 | - /* Translators: Post Type Label */ |
|
177 | - esc_html_x('Add New %s', 'Add New Event', 'event_espresso'), |
|
178 | - $singular_name |
|
179 | - ), |
|
180 | - 'edit_item' => sprintf( |
|
181 | - /* Translators: Post Type Label */ |
|
182 | - esc_html_x('Edit %s', 'Edit Event', 'event_espresso'), |
|
183 | - $singular_name |
|
184 | - ), |
|
185 | - 'new_item' => sprintf( |
|
186 | - /* Translators: Post Type Label */ |
|
187 | - esc_html_x('New %s', 'New Event', 'event_espresso'), |
|
188 | - $singular_name |
|
189 | - ), |
|
190 | - 'all_items' => sprintf( |
|
191 | - /* Translators: Post Type Label */ |
|
192 | - esc_html_x('All %s', 'All Events', 'event_espresso'), |
|
193 | - $plural_name |
|
194 | - ), |
|
195 | - 'view_item' => sprintf( |
|
196 | - /* Translators: Post Type Label */ |
|
197 | - esc_html_x('View %s', 'View Event', 'event_espresso'), |
|
198 | - $singular_name |
|
199 | - ), |
|
200 | - 'view_items' => sprintf( |
|
201 | - /* Translators: Post Type Label */ |
|
202 | - esc_html_x('View %s', 'View Events', 'event_espresso'), |
|
203 | - $plural_name |
|
204 | - ), |
|
205 | - 'archives' => sprintf( |
|
206 | - /* Translators: Post Type Label */ |
|
207 | - esc_html_x('%s Archives', 'Event Archives', 'event_espresso'), |
|
208 | - $singular_name |
|
209 | - ), |
|
210 | - 'attributes' => sprintf( |
|
211 | - /* Translators: Post Type Label */ |
|
212 | - esc_html_x('%s Attributes', 'Event Attributes', 'event_espresso'), |
|
213 | - $singular_name |
|
214 | - ), |
|
215 | - 'insert_into_item' => sprintf( |
|
216 | - /* Translators: Post Type Label */ |
|
217 | - esc_html_x('Insert into this %s', 'Insert into this Event', 'event_espresso'), |
|
218 | - $singular_name |
|
219 | - ), |
|
220 | - 'uploaded_to_this_item' => sprintf( |
|
221 | - /* Translators: Post Type Label */ |
|
222 | - esc_html_x('Uploaded to this %s', 'Uploaded to this Event', 'event_espresso'), |
|
223 | - $singular_name |
|
224 | - ), |
|
225 | - 'filter_items_list' => sprintf( |
|
226 | - /* Translators: Post Type Label */ |
|
227 | - esc_html_x('Filter %s list', 'Filter Events list', 'event_espresso'), |
|
228 | - $plural_name |
|
229 | - ), |
|
230 | - 'items_list_navigation' => sprintf( |
|
231 | - /* Translators: Post Type Label */ |
|
232 | - esc_html_x('%s list navigation', 'Events list navigation', 'event_espresso'), |
|
233 | - $plural_name |
|
234 | - ), |
|
235 | - 'items_list' => sprintf( |
|
236 | - /* Translators: Post Type Label */ |
|
237 | - esc_html_x('%s list', 'Events list', 'event_espresso'), |
|
238 | - $plural_name |
|
239 | - ), |
|
240 | - 'item_published' => sprintf( |
|
241 | - /* Translators: Post Type Label */ |
|
242 | - esc_html_x('%s published', 'Event published', 'event_espresso'), |
|
243 | - $singular_name |
|
244 | - ), |
|
245 | - 'item_published_privately' => sprintf( |
|
246 | - /* Translators: Post Type Label */ |
|
247 | - esc_html_x('%s published privately', 'Event published privately', 'event_espresso'), |
|
248 | - $singular_name |
|
249 | - ), |
|
250 | - 'item_reverted_to_draft' => sprintf( |
|
251 | - /* Translators: Post Type Label */ |
|
252 | - esc_html_x('%s reverted to draft', 'Event reverted to draft', 'event_espresso'), |
|
253 | - $singular_name |
|
254 | - ), |
|
255 | - 'item_scheduled' => sprintf( |
|
256 | - /* Translators: Post Type Label */ |
|
257 | - esc_html_x('%s scheduled', 'Event scheduled', 'event_espresso'), |
|
258 | - $singular_name |
|
259 | - ), |
|
260 | - 'item_updated' => sprintf( |
|
261 | - /* Translators: Post Type Label */ |
|
262 | - esc_html_x('%s updated', 'Event updated', 'event_espresso'), |
|
263 | - $singular_name |
|
264 | - ), |
|
265 | - 'search_items' => sprintf( |
|
266 | - /* Translators: Post Type Label */ |
|
267 | - esc_html_x('Search %s', 'Search Events', 'event_espresso'), |
|
268 | - $plural_name |
|
269 | - ), |
|
270 | - 'not_found' => sprintf( |
|
271 | - /* Translators: Post Type Label */ |
|
272 | - esc_html_x('No %s found', 'No Events found', 'event_espresso'), |
|
273 | - $plural_name |
|
274 | - ), |
|
275 | - 'not_found_in_trash' => sprintf( |
|
276 | - /* Translators: Post Type Label */ |
|
277 | - esc_html_x('No %s found in Trash', 'No Events found in Trash', 'event_espresso'), |
|
278 | - $plural_name |
|
279 | - ), |
|
280 | - 'parent_item_colon' => '', |
|
281 | - 'menu_name' => $plural_name, |
|
282 | - ); |
|
283 | - } |
|
156 | + /** |
|
157 | + * @param string $singular_name |
|
158 | + * @param string $plural_name |
|
159 | + * @param string $singular_slug |
|
160 | + * @param string $plural_slug |
|
161 | + * @return array |
|
162 | + */ |
|
163 | + private function getLabels($singular_name, $plural_name, $singular_slug, $plural_slug) |
|
164 | + { |
|
165 | + return array( |
|
166 | + 'name' => $plural_name, |
|
167 | + 'singular_name' => $singular_name, |
|
168 | + 'singular_slug' => $singular_slug, |
|
169 | + 'plural_slug' => $plural_slug, |
|
170 | + 'add_new' => sprintf( |
|
171 | + /* Translators: Post Type Label */ |
|
172 | + esc_html_x('Add %s', 'Add Event', 'event_espresso'), |
|
173 | + $singular_name |
|
174 | + ), |
|
175 | + 'add_new_item' => sprintf( |
|
176 | + /* Translators: Post Type Label */ |
|
177 | + esc_html_x('Add New %s', 'Add New Event', 'event_espresso'), |
|
178 | + $singular_name |
|
179 | + ), |
|
180 | + 'edit_item' => sprintf( |
|
181 | + /* Translators: Post Type Label */ |
|
182 | + esc_html_x('Edit %s', 'Edit Event', 'event_espresso'), |
|
183 | + $singular_name |
|
184 | + ), |
|
185 | + 'new_item' => sprintf( |
|
186 | + /* Translators: Post Type Label */ |
|
187 | + esc_html_x('New %s', 'New Event', 'event_espresso'), |
|
188 | + $singular_name |
|
189 | + ), |
|
190 | + 'all_items' => sprintf( |
|
191 | + /* Translators: Post Type Label */ |
|
192 | + esc_html_x('All %s', 'All Events', 'event_espresso'), |
|
193 | + $plural_name |
|
194 | + ), |
|
195 | + 'view_item' => sprintf( |
|
196 | + /* Translators: Post Type Label */ |
|
197 | + esc_html_x('View %s', 'View Event', 'event_espresso'), |
|
198 | + $singular_name |
|
199 | + ), |
|
200 | + 'view_items' => sprintf( |
|
201 | + /* Translators: Post Type Label */ |
|
202 | + esc_html_x('View %s', 'View Events', 'event_espresso'), |
|
203 | + $plural_name |
|
204 | + ), |
|
205 | + 'archives' => sprintf( |
|
206 | + /* Translators: Post Type Label */ |
|
207 | + esc_html_x('%s Archives', 'Event Archives', 'event_espresso'), |
|
208 | + $singular_name |
|
209 | + ), |
|
210 | + 'attributes' => sprintf( |
|
211 | + /* Translators: Post Type Label */ |
|
212 | + esc_html_x('%s Attributes', 'Event Attributes', 'event_espresso'), |
|
213 | + $singular_name |
|
214 | + ), |
|
215 | + 'insert_into_item' => sprintf( |
|
216 | + /* Translators: Post Type Label */ |
|
217 | + esc_html_x('Insert into this %s', 'Insert into this Event', 'event_espresso'), |
|
218 | + $singular_name |
|
219 | + ), |
|
220 | + 'uploaded_to_this_item' => sprintf( |
|
221 | + /* Translators: Post Type Label */ |
|
222 | + esc_html_x('Uploaded to this %s', 'Uploaded to this Event', 'event_espresso'), |
|
223 | + $singular_name |
|
224 | + ), |
|
225 | + 'filter_items_list' => sprintf( |
|
226 | + /* Translators: Post Type Label */ |
|
227 | + esc_html_x('Filter %s list', 'Filter Events list', 'event_espresso'), |
|
228 | + $plural_name |
|
229 | + ), |
|
230 | + 'items_list_navigation' => sprintf( |
|
231 | + /* Translators: Post Type Label */ |
|
232 | + esc_html_x('%s list navigation', 'Events list navigation', 'event_espresso'), |
|
233 | + $plural_name |
|
234 | + ), |
|
235 | + 'items_list' => sprintf( |
|
236 | + /* Translators: Post Type Label */ |
|
237 | + esc_html_x('%s list', 'Events list', 'event_espresso'), |
|
238 | + $plural_name |
|
239 | + ), |
|
240 | + 'item_published' => sprintf( |
|
241 | + /* Translators: Post Type Label */ |
|
242 | + esc_html_x('%s published', 'Event published', 'event_espresso'), |
|
243 | + $singular_name |
|
244 | + ), |
|
245 | + 'item_published_privately' => sprintf( |
|
246 | + /* Translators: Post Type Label */ |
|
247 | + esc_html_x('%s published privately', 'Event published privately', 'event_espresso'), |
|
248 | + $singular_name |
|
249 | + ), |
|
250 | + 'item_reverted_to_draft' => sprintf( |
|
251 | + /* Translators: Post Type Label */ |
|
252 | + esc_html_x('%s reverted to draft', 'Event reverted to draft', 'event_espresso'), |
|
253 | + $singular_name |
|
254 | + ), |
|
255 | + 'item_scheduled' => sprintf( |
|
256 | + /* Translators: Post Type Label */ |
|
257 | + esc_html_x('%s scheduled', 'Event scheduled', 'event_espresso'), |
|
258 | + $singular_name |
|
259 | + ), |
|
260 | + 'item_updated' => sprintf( |
|
261 | + /* Translators: Post Type Label */ |
|
262 | + esc_html_x('%s updated', 'Event updated', 'event_espresso'), |
|
263 | + $singular_name |
|
264 | + ), |
|
265 | + 'search_items' => sprintf( |
|
266 | + /* Translators: Post Type Label */ |
|
267 | + esc_html_x('Search %s', 'Search Events', 'event_espresso'), |
|
268 | + $plural_name |
|
269 | + ), |
|
270 | + 'not_found' => sprintf( |
|
271 | + /* Translators: Post Type Label */ |
|
272 | + esc_html_x('No %s found', 'No Events found', 'event_espresso'), |
|
273 | + $plural_name |
|
274 | + ), |
|
275 | + 'not_found_in_trash' => sprintf( |
|
276 | + /* Translators: Post Type Label */ |
|
277 | + esc_html_x('No %s found in Trash', 'No Events found in Trash', 'event_espresso'), |
|
278 | + $plural_name |
|
279 | + ), |
|
280 | + 'parent_item_colon' => '', |
|
281 | + 'menu_name' => $plural_name, |
|
282 | + ); |
|
283 | + } |
|
284 | 284 | |
285 | 285 | |
286 | - /** |
|
287 | - * @param array $labels |
|
288 | - * @param string $post_type |
|
289 | - * @param string $plural_slug |
|
290 | - * @return array |
|
291 | - */ |
|
292 | - private function getDefaultArguments(array $labels, $post_type, $plural_slug) |
|
293 | - { |
|
294 | - return array( |
|
295 | - 'labels' => $labels, |
|
296 | - 'public' => true, |
|
297 | - 'publicly_queryable' => true, |
|
298 | - 'show_ui' => false, |
|
299 | - 'show_ee_ui' => true, |
|
300 | - 'show_in_menu' => false, |
|
301 | - 'show_in_nav_menus' => false, |
|
302 | - 'query_var' => true, |
|
303 | - 'rewrite' => apply_filters( |
|
304 | - 'FHEE__EventEspresso_core_domain_entities_custom_post_types_RegisterCustomPostTypes__getDefaultArguments__rewrite', |
|
305 | - // legacy filter applied for now, |
|
306 | - // later on we'll run a has_filter($tag) check and throw a doing_it_wrong() notice |
|
307 | - apply_filters( |
|
308 | - 'FHEE__EE_Register_CPTs__register_CPT__rewrite', |
|
309 | - array('slug' => $plural_slug), |
|
310 | - $post_type |
|
311 | - ), |
|
312 | - $post_type, |
|
313 | - $plural_slug |
|
314 | - ), |
|
315 | - 'capability_type' => 'post', |
|
316 | - 'map_meta_cap' => true, |
|
317 | - 'has_archive' => true, |
|
318 | - 'hierarchical' => false, |
|
319 | - 'menu_position' => null, |
|
320 | - 'supports' => array( |
|
321 | - 'title', |
|
322 | - 'editor', |
|
323 | - 'author', |
|
324 | - 'thumbnail', |
|
325 | - 'excerpt', |
|
326 | - 'custom-fields', |
|
327 | - 'comments', |
|
328 | - ), |
|
329 | - ); |
|
330 | - } |
|
286 | + /** |
|
287 | + * @param array $labels |
|
288 | + * @param string $post_type |
|
289 | + * @param string $plural_slug |
|
290 | + * @return array |
|
291 | + */ |
|
292 | + private function getDefaultArguments(array $labels, $post_type, $plural_slug) |
|
293 | + { |
|
294 | + return array( |
|
295 | + 'labels' => $labels, |
|
296 | + 'public' => true, |
|
297 | + 'publicly_queryable' => true, |
|
298 | + 'show_ui' => false, |
|
299 | + 'show_ee_ui' => true, |
|
300 | + 'show_in_menu' => false, |
|
301 | + 'show_in_nav_menus' => false, |
|
302 | + 'query_var' => true, |
|
303 | + 'rewrite' => apply_filters( |
|
304 | + 'FHEE__EventEspresso_core_domain_entities_custom_post_types_RegisterCustomPostTypes__getDefaultArguments__rewrite', |
|
305 | + // legacy filter applied for now, |
|
306 | + // later on we'll run a has_filter($tag) check and throw a doing_it_wrong() notice |
|
307 | + apply_filters( |
|
308 | + 'FHEE__EE_Register_CPTs__register_CPT__rewrite', |
|
309 | + array('slug' => $plural_slug), |
|
310 | + $post_type |
|
311 | + ), |
|
312 | + $post_type, |
|
313 | + $plural_slug |
|
314 | + ), |
|
315 | + 'capability_type' => 'post', |
|
316 | + 'map_meta_cap' => true, |
|
317 | + 'has_archive' => true, |
|
318 | + 'hierarchical' => false, |
|
319 | + 'menu_position' => null, |
|
320 | + 'supports' => array( |
|
321 | + 'title', |
|
322 | + 'editor', |
|
323 | + 'author', |
|
324 | + 'thumbnail', |
|
325 | + 'excerpt', |
|
326 | + 'custom-fields', |
|
327 | + 'comments', |
|
328 | + ), |
|
329 | + ); |
|
330 | + } |
|
331 | 331 | } |
@@ -16,26 +16,26 @@ |
||
16 | 16 | class InvalidCollectionIdentifierException extends OutOfBoundsException |
17 | 17 | { |
18 | 18 | |
19 | - /** |
|
20 | - * InvalidCollectionIdentifierException constructor. |
|
21 | - * |
|
22 | - * @param $identifier |
|
23 | - * @param string $message |
|
24 | - * @param int $code |
|
25 | - * @param Exception|null $previous |
|
26 | - */ |
|
27 | - public function __construct($identifier, $message = '', $code = 0, Exception $previous = null) |
|
28 | - { |
|
29 | - if (empty($message)) { |
|
30 | - $message = sprintf( |
|
31 | - __( |
|
32 | - 'The supplied identifier "%1$s" does not exist within this collection. |
|
19 | + /** |
|
20 | + * InvalidCollectionIdentifierException constructor. |
|
21 | + * |
|
22 | + * @param $identifier |
|
23 | + * @param string $message |
|
24 | + * @param int $code |
|
25 | + * @param Exception|null $previous |
|
26 | + */ |
|
27 | + public function __construct($identifier, $message = '', $code = 0, Exception $previous = null) |
|
28 | + { |
|
29 | + if (empty($message)) { |
|
30 | + $message = sprintf( |
|
31 | + __( |
|
32 | + 'The supplied identifier "%1$s" does not exist within this collection. |
|
33 | 33 | You may need to delay adding this asset until the required dependency has been added.', |
34 | - 'event_espresso' |
|
35 | - ), |
|
36 | - $identifier |
|
37 | - ); |
|
38 | - } |
|
39 | - parent::__construct($message, $code, $previous); |
|
40 | - } |
|
34 | + 'event_espresso' |
|
35 | + ), |
|
36 | + $identifier |
|
37 | + ); |
|
38 | + } |
|
39 | + parent::__construct($message, $code, $previous); |
|
40 | + } |
|
41 | 41 | } |
@@ -16,25 +16,25 @@ |
||
16 | 16 | class DuplicateCollectionIdentifierException extends OutOfRangeException |
17 | 17 | { |
18 | 18 | |
19 | - /** |
|
20 | - * DuplicateCollectionIdentifierException constructor. |
|
21 | - * |
|
22 | - * @param $identifier |
|
23 | - * @param string $message |
|
24 | - * @param int $code |
|
25 | - * @param Exception|null $previous |
|
26 | - */ |
|
27 | - public function __construct($identifier, $message = '', $code = 0, Exception $previous = null) |
|
28 | - { |
|
29 | - if (empty($message)) { |
|
30 | - $message = sprintf( |
|
31 | - __( |
|
32 | - 'The supplied identifier "%1$s" already exists within this collection.', |
|
33 | - 'event_espresso' |
|
34 | - ), |
|
35 | - $identifier |
|
36 | - ); |
|
37 | - } |
|
38 | - parent::__construct($message, $code, $previous); |
|
39 | - } |
|
19 | + /** |
|
20 | + * DuplicateCollectionIdentifierException constructor. |
|
21 | + * |
|
22 | + * @param $identifier |
|
23 | + * @param string $message |
|
24 | + * @param int $code |
|
25 | + * @param Exception|null $previous |
|
26 | + */ |
|
27 | + public function __construct($identifier, $message = '', $code = 0, Exception $previous = null) |
|
28 | + { |
|
29 | + if (empty($message)) { |
|
30 | + $message = sprintf( |
|
31 | + __( |
|
32 | + 'The supplied identifier "%1$s" already exists within this collection.', |
|
33 | + 'event_espresso' |
|
34 | + ), |
|
35 | + $identifier |
|
36 | + ); |
|
37 | + } |
|
38 | + parent::__construct($message, $code, $previous); |
|
39 | + } |
|
40 | 40 | } |
@@ -16,28 +16,28 @@ |
||
16 | 16 | class InvalidIdentifierException extends InvalidArgumentException |
17 | 17 | { |
18 | 18 | |
19 | - /** |
|
20 | - * InvalidIdentifierException constructor. |
|
21 | - * |
|
22 | - * @param string $actual the identifier that was supplied |
|
23 | - * @param string $expected example of an acceptable identifier |
|
24 | - * @param string $message |
|
25 | - * @param int $code |
|
26 | - * @param Exception $previous |
|
27 | - */ |
|
28 | - public function __construct($actual, $expected, $message = '', $code = 0, Exception $previous = null) |
|
29 | - { |
|
30 | - if (empty($message)) { |
|
31 | - $message = sprintf( |
|
32 | - __( |
|
33 | - 'The supplied identifier "%1$s" is invalid. A value like "%2$s" was expected.', |
|
34 | - 'event_espresso' |
|
35 | - ), |
|
36 | - $actual, |
|
37 | - $expected |
|
38 | - ); |
|
39 | - } |
|
40 | - parent::__construct($message, $code, $previous); |
|
41 | - } |
|
19 | + /** |
|
20 | + * InvalidIdentifierException constructor. |
|
21 | + * |
|
22 | + * @param string $actual the identifier that was supplied |
|
23 | + * @param string $expected example of an acceptable identifier |
|
24 | + * @param string $message |
|
25 | + * @param int $code |
|
26 | + * @param Exception $previous |
|
27 | + */ |
|
28 | + public function __construct($actual, $expected, $message = '', $code = 0, Exception $previous = null) |
|
29 | + { |
|
30 | + if (empty($message)) { |
|
31 | + $message = sprintf( |
|
32 | + __( |
|
33 | + 'The supplied identifier "%1$s" is invalid. A value like "%2$s" was expected.', |
|
34 | + 'event_espresso' |
|
35 | + ), |
|
36 | + $actual, |
|
37 | + $expected |
|
38 | + ); |
|
39 | + } |
|
40 | + parent::__construct($message, $code, $previous); |
|
41 | + } |
|
42 | 42 | } |
43 | 43 | // Location: core/exceptions/InvalidIdentifierException.php |
@@ -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, |
@@ -16,191 +16,191 @@ |
||
16 | 16 | abstract class Asset |
17 | 17 | { |
18 | 18 | |
19 | - /** |
|
20 | - * indicates the file extension for a build distribution CSS file |
|
21 | - */ |
|
22 | - const FILE_EXTENSION_DISTRIBUTION_CSS = '.dist.css'; |
|
23 | - |
|
24 | - /** |
|
25 | - * indicates the file extension for a build distribution JS file |
|
26 | - */ |
|
27 | - const FILE_EXTENSION_DISTRIBUTION_JS = '.dist.js'; |
|
28 | - |
|
29 | - /** |
|
30 | - * Indicates the file extension for a build distribution dependencies json file. |
|
31 | - */ |
|
32 | - const FILE_EXTENSION_DISTRIBUTION_DEPS = '.dist.deps.php'; |
|
33 | - |
|
34 | - /** |
|
35 | - * indicates a Cascading Style Sheet asset |
|
36 | - */ |
|
37 | - const TYPE_CSS = 'css'; |
|
38 | - |
|
39 | - /** |
|
40 | - * indicates a Javascript asset |
|
41 | - */ |
|
42 | - const TYPE_JS = 'js'; |
|
43 | - |
|
44 | - /** |
|
45 | - * indicates a JSON asset |
|
46 | - */ |
|
47 | - CONST TYPE_JSON = 'json'; |
|
48 | - /** |
|
49 | - * indicates a PHP asset |
|
50 | - */ |
|
51 | - CONST TYPE_PHP = 'php'; |
|
52 | - |
|
53 | - /** |
|
54 | - * indicates a Javascript manifest file |
|
55 | - */ |
|
56 | - const TYPE_MANIFEST = 'manifest'; |
|
57 | - |
|
58 | - /** |
|
59 | - * @var DomainInterface $domain |
|
60 | - */ |
|
61 | - protected $domain; |
|
62 | - |
|
63 | - /** |
|
64 | - * @var string $type |
|
65 | - */ |
|
66 | - private $type; |
|
67 | - |
|
68 | - /** |
|
69 | - * @var string $handle |
|
70 | - */ |
|
71 | - private $handle; |
|
72 | - |
|
73 | - /** |
|
74 | - * @var bool $registered |
|
75 | - */ |
|
76 | - private $registered = false; |
|
77 | - |
|
78 | - /** |
|
79 | - * @var bool $enqueue_immediately |
|
80 | - */ |
|
81 | - private $enqueue_immediately = false; |
|
82 | - |
|
83 | - |
|
84 | - /** |
|
85 | - * Asset constructor. |
|
86 | - * |
|
87 | - * @param $type |
|
88 | - * @param string $handle |
|
89 | - * @param DomainInterface $domain |
|
90 | - * @throws InvalidDataTypeException |
|
91 | - */ |
|
92 | - public function __construct($type, $handle, DomainInterface $domain) |
|
93 | - { |
|
94 | - $this->domain = $domain; |
|
95 | - $this->setType($type); |
|
96 | - $this->setHandle($handle); |
|
97 | - } |
|
98 | - |
|
99 | - |
|
100 | - /** |
|
101 | - * @return array |
|
102 | - */ |
|
103 | - public function validAssetTypes() |
|
104 | - { |
|
105 | - return array( |
|
106 | - Asset::TYPE_CSS, |
|
107 | - Asset::TYPE_JS, |
|
108 | - Asset::TYPE_MANIFEST, |
|
109 | - ); |
|
110 | - } |
|
111 | - |
|
112 | - |
|
113 | - /** |
|
114 | - * @param string $type |
|
115 | - * @throws InvalidDataTypeException |
|
116 | - */ |
|
117 | - private function setType($type) |
|
118 | - { |
|
119 | - if (! in_array($type, $this->validAssetTypes(), true)) { |
|
120 | - throw new InvalidDataTypeException( |
|
121 | - 'Asset::$type', |
|
122 | - $type, |
|
123 | - 'one of the TYPE_* class constants on \EventEspresso\core\domain\values\Asset is required' |
|
124 | - ); |
|
125 | - } |
|
126 | - $this->type = $type; |
|
127 | - } |
|
128 | - |
|
129 | - |
|
130 | - /** |
|
131 | - * @param string $handle |
|
132 | - * @throws InvalidDataTypeException |
|
133 | - */ |
|
134 | - private function setHandle($handle) |
|
135 | - { |
|
136 | - if (! is_string($handle)) { |
|
137 | - throw new InvalidDataTypeException( |
|
138 | - '$handle', |
|
139 | - $handle, |
|
140 | - 'string' |
|
141 | - ); |
|
142 | - } |
|
143 | - $this->handle = $handle; |
|
144 | - } |
|
145 | - |
|
146 | - |
|
147 | - /** |
|
148 | - * @return string |
|
149 | - */ |
|
150 | - public function assetNamespace() |
|
151 | - { |
|
152 | - return $this->domain->assetNamespace(); |
|
153 | - } |
|
154 | - |
|
155 | - |
|
156 | - /** |
|
157 | - * @return string |
|
158 | - */ |
|
159 | - public function type() |
|
160 | - { |
|
161 | - return $this->type; |
|
162 | - } |
|
163 | - |
|
164 | - |
|
165 | - /** |
|
166 | - * @return string |
|
167 | - */ |
|
168 | - public function handle() |
|
169 | - { |
|
170 | - return $this->handle; |
|
171 | - } |
|
172 | - |
|
173 | - /** |
|
174 | - * @return bool |
|
175 | - */ |
|
176 | - public function isRegistered() |
|
177 | - { |
|
178 | - return $this->registered; |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * @param bool $registered |
|
183 | - */ |
|
184 | - public function setRegistered($registered = true) |
|
185 | - { |
|
186 | - $this->registered = filter_var($registered, FILTER_VALIDATE_BOOLEAN); |
|
187 | - } |
|
188 | - |
|
189 | - |
|
190 | - /** |
|
191 | - * @return bool |
|
192 | - */ |
|
193 | - public function enqueueImmediately() |
|
194 | - { |
|
195 | - return $this->enqueue_immediately; |
|
196 | - } |
|
197 | - |
|
198 | - |
|
199 | - /** |
|
200 | - * @param bool $enqueue_immediately |
|
201 | - */ |
|
202 | - public function setEnqueueImmediately($enqueue_immediately = true) |
|
203 | - { |
|
204 | - $this->enqueue_immediately = filter_var($enqueue_immediately, FILTER_VALIDATE_BOOLEAN); |
|
205 | - } |
|
19 | + /** |
|
20 | + * indicates the file extension for a build distribution CSS file |
|
21 | + */ |
|
22 | + const FILE_EXTENSION_DISTRIBUTION_CSS = '.dist.css'; |
|
23 | + |
|
24 | + /** |
|
25 | + * indicates the file extension for a build distribution JS file |
|
26 | + */ |
|
27 | + const FILE_EXTENSION_DISTRIBUTION_JS = '.dist.js'; |
|
28 | + |
|
29 | + /** |
|
30 | + * Indicates the file extension for a build distribution dependencies json file. |
|
31 | + */ |
|
32 | + const FILE_EXTENSION_DISTRIBUTION_DEPS = '.dist.deps.php'; |
|
33 | + |
|
34 | + /** |
|
35 | + * indicates a Cascading Style Sheet asset |
|
36 | + */ |
|
37 | + const TYPE_CSS = 'css'; |
|
38 | + |
|
39 | + /** |
|
40 | + * indicates a Javascript asset |
|
41 | + */ |
|
42 | + const TYPE_JS = 'js'; |
|
43 | + |
|
44 | + /** |
|
45 | + * indicates a JSON asset |
|
46 | + */ |
|
47 | + CONST TYPE_JSON = 'json'; |
|
48 | + /** |
|
49 | + * indicates a PHP asset |
|
50 | + */ |
|
51 | + CONST TYPE_PHP = 'php'; |
|
52 | + |
|
53 | + /** |
|
54 | + * indicates a Javascript manifest file |
|
55 | + */ |
|
56 | + const TYPE_MANIFEST = 'manifest'; |
|
57 | + |
|
58 | + /** |
|
59 | + * @var DomainInterface $domain |
|
60 | + */ |
|
61 | + protected $domain; |
|
62 | + |
|
63 | + /** |
|
64 | + * @var string $type |
|
65 | + */ |
|
66 | + private $type; |
|
67 | + |
|
68 | + /** |
|
69 | + * @var string $handle |
|
70 | + */ |
|
71 | + private $handle; |
|
72 | + |
|
73 | + /** |
|
74 | + * @var bool $registered |
|
75 | + */ |
|
76 | + private $registered = false; |
|
77 | + |
|
78 | + /** |
|
79 | + * @var bool $enqueue_immediately |
|
80 | + */ |
|
81 | + private $enqueue_immediately = false; |
|
82 | + |
|
83 | + |
|
84 | + /** |
|
85 | + * Asset constructor. |
|
86 | + * |
|
87 | + * @param $type |
|
88 | + * @param string $handle |
|
89 | + * @param DomainInterface $domain |
|
90 | + * @throws InvalidDataTypeException |
|
91 | + */ |
|
92 | + public function __construct($type, $handle, DomainInterface $domain) |
|
93 | + { |
|
94 | + $this->domain = $domain; |
|
95 | + $this->setType($type); |
|
96 | + $this->setHandle($handle); |
|
97 | + } |
|
98 | + |
|
99 | + |
|
100 | + /** |
|
101 | + * @return array |
|
102 | + */ |
|
103 | + public function validAssetTypes() |
|
104 | + { |
|
105 | + return array( |
|
106 | + Asset::TYPE_CSS, |
|
107 | + Asset::TYPE_JS, |
|
108 | + Asset::TYPE_MANIFEST, |
|
109 | + ); |
|
110 | + } |
|
111 | + |
|
112 | + |
|
113 | + /** |
|
114 | + * @param string $type |
|
115 | + * @throws InvalidDataTypeException |
|
116 | + */ |
|
117 | + private function setType($type) |
|
118 | + { |
|
119 | + if (! in_array($type, $this->validAssetTypes(), true)) { |
|
120 | + throw new InvalidDataTypeException( |
|
121 | + 'Asset::$type', |
|
122 | + $type, |
|
123 | + 'one of the TYPE_* class constants on \EventEspresso\core\domain\values\Asset is required' |
|
124 | + ); |
|
125 | + } |
|
126 | + $this->type = $type; |
|
127 | + } |
|
128 | + |
|
129 | + |
|
130 | + /** |
|
131 | + * @param string $handle |
|
132 | + * @throws InvalidDataTypeException |
|
133 | + */ |
|
134 | + private function setHandle($handle) |
|
135 | + { |
|
136 | + if (! is_string($handle)) { |
|
137 | + throw new InvalidDataTypeException( |
|
138 | + '$handle', |
|
139 | + $handle, |
|
140 | + 'string' |
|
141 | + ); |
|
142 | + } |
|
143 | + $this->handle = $handle; |
|
144 | + } |
|
145 | + |
|
146 | + |
|
147 | + /** |
|
148 | + * @return string |
|
149 | + */ |
|
150 | + public function assetNamespace() |
|
151 | + { |
|
152 | + return $this->domain->assetNamespace(); |
|
153 | + } |
|
154 | + |
|
155 | + |
|
156 | + /** |
|
157 | + * @return string |
|
158 | + */ |
|
159 | + public function type() |
|
160 | + { |
|
161 | + return $this->type; |
|
162 | + } |
|
163 | + |
|
164 | + |
|
165 | + /** |
|
166 | + * @return string |
|
167 | + */ |
|
168 | + public function handle() |
|
169 | + { |
|
170 | + return $this->handle; |
|
171 | + } |
|
172 | + |
|
173 | + /** |
|
174 | + * @return bool |
|
175 | + */ |
|
176 | + public function isRegistered() |
|
177 | + { |
|
178 | + return $this->registered; |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * @param bool $registered |
|
183 | + */ |
|
184 | + public function setRegistered($registered = true) |
|
185 | + { |
|
186 | + $this->registered = filter_var($registered, FILTER_VALIDATE_BOOLEAN); |
|
187 | + } |
|
188 | + |
|
189 | + |
|
190 | + /** |
|
191 | + * @return bool |
|
192 | + */ |
|
193 | + public function enqueueImmediately() |
|
194 | + { |
|
195 | + return $this->enqueue_immediately; |
|
196 | + } |
|
197 | + |
|
198 | + |
|
199 | + /** |
|
200 | + * @param bool $enqueue_immediately |
|
201 | + */ |
|
202 | + public function setEnqueueImmediately($enqueue_immediately = true) |
|
203 | + { |
|
204 | + $this->enqueue_immediately = filter_var($enqueue_immediately, FILTER_VALIDATE_BOOLEAN); |
|
205 | + } |
|
206 | 206 | } |
@@ -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,71 +17,71 @@ |
||
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 | - if ($this->source() === '') { |
|
83 | - return; |
|
84 | - } |
|
85 | - wp_enqueue_style($this->handle()); |
|
86 | - } |
|
77 | + /** |
|
78 | + * @since 4.9.62.p |
|
79 | + */ |
|
80 | + public function enqueueAsset() |
|
81 | + { |
|
82 | + if ($this->source() === '') { |
|
83 | + return; |
|
84 | + } |
|
85 | + wp_enqueue_style($this->handle()); |
|
86 | + } |
|
87 | 87 | } |