@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | * |
39 | 39 | * @return AliasLoader |
40 | 40 | */ |
41 | - public static function getInstance( array $aliases = [] ) |
|
41 | + public static function getInstance( array $aliases = [ ] ) |
|
42 | 42 | { |
43 | - if( is_null( static::$instance )) { |
|
43 | + if( is_null( static::$instance ) ) { |
|
44 | 44 | return static::$instance = new static( $aliases ); |
45 | 45 | } |
46 | 46 | |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function load( $alias ) |
62 | 62 | { |
63 | - if( isset( $this->aliases[$alias] )) { |
|
64 | - return class_alias( $this->aliases[$alias], $alias ); |
|
63 | + if( isset( $this->aliases[ $alias ] ) ) { |
|
64 | + return class_alias( $this->aliases[ $alias ], $alias ); |
|
65 | 65 | } |
66 | 66 | } |
67 | 67 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | public function register() |
74 | 74 | { |
75 | 75 | if( !$this->registered ) { |
76 | - spl_autoload_register( [$this, 'load'], true, true ); |
|
76 | + spl_autoload_register( [ $this, 'load' ], true, true ); |
|
77 | 77 | $this->registered = true; |
78 | 78 | } |
79 | 79 | } |
@@ -21,14 +21,14 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @var array |
23 | 23 | */ |
24 | - protected $services = []; |
|
24 | + protected $services = [ ]; |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * The container's bucket items |
28 | 28 | * |
29 | 29 | * @var array |
30 | 30 | */ |
31 | - protected $bucket = []; |
|
31 | + protected $bucket = [ ]; |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Set the globally available instance of the container. |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function getInstance() |
39 | 39 | { |
40 | - if( is_null( static::$instance )) { |
|
40 | + if( is_null( static::$instance ) ) { |
|
41 | 41 | static::$instance = new static; |
42 | 42 | } |
43 | 43 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function bind( $alias, $concrete ) |
56 | 56 | { |
57 | - $this->services[$alias] = $concrete; |
|
57 | + $this->services[ $alias ] = $concrete; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
@@ -68,14 +68,14 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function make( $abstract ) |
70 | 70 | { |
71 | - $service = isset( $this->services[$abstract] ) |
|
72 | - ? $this->services[$abstract] |
|
71 | + $service = isset( $this->services[ $abstract ] ) |
|
72 | + ? $this->services[ $abstract ] |
|
73 | 73 | : $this->addNamespace( $abstract ); |
74 | 74 | |
75 | - if( is_callable( $service )) { |
|
76 | - return call_user_func_array( $service, [$this] ); |
|
75 | + if( is_callable( $service ) ) { |
|
76 | + return call_user_func_array( $service, [ $this ] ); |
|
77 | 77 | } |
78 | - if( is_object( $service )) { |
|
78 | + if( is_object( $service ) ) { |
|
79 | 79 | return $service; |
80 | 80 | } |
81 | 81 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function singleton( $abstract, $concrete ) |
94 | 94 | { |
95 | - $this->bind( $abstract, $this->make( $concrete )); |
|
95 | + $this->bind( $abstract, $this->make( $concrete ) ); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -104,8 +104,8 @@ discard block |
||
104 | 104 | */ |
105 | 105 | public function __get( $item ) |
106 | 106 | { |
107 | - return isset( $this->bucket[$item] ) |
|
108 | - ? $this->bucket[$item] |
|
107 | + return isset( $this->bucket[ $item ] ) |
|
108 | + ? $this->bucket[ $item ] |
|
109 | 109 | : null; |
110 | 110 | } |
111 | 111 | |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | */ |
120 | 120 | public function __set( $item, $value ) |
121 | 121 | { |
122 | - $this->bucket[$item] = $value; |
|
122 | + $this->bucket[ $item ] = $value; |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | */ |
142 | 142 | protected function addNamespace( $abstract ) |
143 | 143 | { |
144 | - if( strpos( $abstract, __NAMESPACE__ ) === false && !class_exists( $abstract )) { |
|
144 | + if( strpos( $abstract, __NAMESPACE__ ) === false && !class_exists( $abstract ) ) { |
|
145 | 145 | $abstract = __NAMESPACE__ . "\\$abstract"; |
146 | 146 | } |
147 | 147 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | return $this->notInstantiable( $concrete ); |
184 | 184 | } |
185 | 185 | |
186 | - if( is_null(( $constructor = $reflector->getConstructor() ))) { |
|
186 | + if( is_null( ( $constructor = $reflector->getConstructor() ) ) ) { |
|
187 | 187 | return new $concrete; |
188 | 188 | } |
189 | 189 | |
@@ -218,11 +218,11 @@ discard block |
||
218 | 218 | */ |
219 | 219 | protected function resolveDependencies( array $dependencies ) |
220 | 220 | { |
221 | - $results = []; |
|
221 | + $results = [ ]; |
|
222 | 222 | |
223 | 223 | foreach( $dependencies as $dependency ) { |
224 | 224 | // If the class is null, the dependency is a string or some other primitive type |
225 | - $results[] = !is_null( $class = $dependency->getClass() ) |
|
225 | + $results[ ] = !is_null( $class = $dependency->getClass() ) |
|
226 | 226 | ? $this->resolveClass( $dependency ) |
227 | 227 | : null; |
228 | 228 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public static function clearResolvedInstances() |
50 | 50 | { |
51 | - static::$resolvedInstance = []; |
|
51 | + static::$resolvedInstance = [ ]; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -102,14 +102,14 @@ discard block |
||
102 | 102 | */ |
103 | 103 | protected static function resolveFacadeInstance( $name ) |
104 | 104 | { |
105 | - if( is_object( $name )) { |
|
105 | + if( is_object( $name ) ) { |
|
106 | 106 | return $name; |
107 | 107 | } |
108 | 108 | |
109 | - if( isset( static::$resolvedInstance[$name] )) { |
|
110 | - return static::$resolvedInstance[$name]; |
|
109 | + if( isset( static::$resolvedInstance[ $name ] ) ) { |
|
110 | + return static::$resolvedInstance[ $name ]; |
|
111 | 111 | } |
112 | 112 | |
113 | - return static::$resolvedInstance[$name] = static::$app->make( $name ); |
|
113 | + return static::$resolvedInstance[ $name ] = static::$app->make( $name ); |
|
114 | 114 | } |
115 | 115 | } |
@@ -16,19 +16,19 @@ discard block |
||
16 | 16 | * @param string $metaKey |
17 | 17 | * @return mixed |
18 | 18 | */ |
19 | - public function get( $metaKey, array $args = [] ) |
|
19 | + public function get( $metaKey, array $args = [ ] ) |
|
20 | 20 | { |
21 | - if( empty( $metaKey ))return; |
|
21 | + if( empty( $metaKey ) )return; |
|
22 | 22 | |
23 | 23 | $args = $this->normalize( $args ); |
24 | - $metaKey = $this->buildMetaKey( $metaKey, $args['prefix'] ); |
|
25 | - $metaValue = get_post_meta( $args['id'], $metaKey, $args['single'] ); |
|
24 | + $metaKey = $this->buildMetaKey( $metaKey, $args[ 'prefix' ] ); |
|
25 | + $metaValue = get_post_meta( $args[ 'id' ], $metaKey, $args[ 'single' ] ); |
|
26 | 26 | |
27 | - if( is_string( $metaValue )) { |
|
27 | + if( is_string( $metaValue ) ) { |
|
28 | 28 | $metaValue = trim( $metaValue ); |
29 | 29 | } |
30 | 30 | return empty( $metaValue ) |
31 | - ? $args['fallback'] |
|
31 | + ? $args[ 'fallback' ] |
|
32 | 32 | : $metaValue; |
33 | 33 | } |
34 | 34 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | protected function buildMetaKey( $metaKey, $prefix ) |
41 | 41 | { |
42 | - return ( substr( $metaKey, 0, 1 ) == '_' && !empty( $prefix )) |
|
42 | + return ( substr( $metaKey, 0, 1 ) == '_' && !empty( $prefix ) ) |
|
43 | 43 | ? sprintf( '_%s%s', rtrim( $prefix, '_' ), $metaKey ) |
44 | 44 | : $prefix . $metaKey; |
45 | 45 | } |
@@ -55,6 +55,6 @@ discard block |
||
55 | 55 | 'single' => true, |
56 | 56 | 'prefix' => Application::prefix(), |
57 | 57 | ]; |
58 | - return shortcode_atts( $defaults, array_change_key_case( $args )); |
|
58 | + return shortcode_atts( $defaults, array_change_key_case( $args ) ); |
|
59 | 59 | } |
60 | 60 | } |
@@ -16,7 +16,7 @@ |
||
16 | 16 | { |
17 | 17 | public function __construct() |
18 | 18 | { |
19 | - $this->options = get_option( Archive::id(), [] ); |
|
19 | + $this->options = get_option( Archive::id(), [ ] ); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -36,8 +36,8 @@ |
||
36 | 36 | $data = wp_parse_args( $data, $defaults ); |
37 | 37 | foreach( $defaults as $key => $value ) { |
38 | 38 | $method = ( new Helper )->buildMethodName( $key, 'normalize' ); |
39 | - if( method_exists( $this, $method )) { |
|
40 | - $data[$key] = $this->$method( $data[$key], $data, $id ); |
|
39 | + if( method_exists( $this, $method ) ) { |
|
40 | + $data[ $key ] = $this->$method( $data[ $key ], $data, $id ); |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 | return $data; |
@@ -14,10 +14,10 @@ discard block |
||
14 | 14 | |
15 | 15 | const TAXONOMY_DEFAULTS = [ |
16 | 16 | 'hierarchical' => true, |
17 | - 'labels' => [], |
|
17 | + 'labels' => [ ], |
|
18 | 18 | 'menu_name' => '', |
19 | 19 | 'plural' => '', |
20 | - 'post_types' => [], |
|
20 | + 'post_types' => [ ], |
|
21 | 21 | 'public' => true, |
22 | 22 | 'rewrite' => true, |
23 | 23 | 'show_admin_column' => true, |
@@ -28,20 +28,20 @@ discard block |
||
28 | 28 | /** |
29 | 29 | * @var array |
30 | 30 | */ |
31 | - public $taxonomies = []; |
|
31 | + public $taxonomies = [ ]; |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * {@inheritdoc} |
35 | 35 | */ |
36 | 36 | public function init() |
37 | 37 | { |
38 | - if( empty( $this->app->config->taxonomies ))return; |
|
38 | + if( empty( $this->app->config->taxonomies ) )return; |
|
39 | 39 | |
40 | 40 | $this->normalize(); |
41 | 41 | |
42 | - add_action( 'restrict_manage_posts', [ $this, 'printFilters'] ); |
|
43 | - add_action( 'init', [ $this, 'register'] ); |
|
44 | - add_filter( 'parse_query', [ $this, 'filterByTaxonomy'] ); |
|
42 | + add_action( 'restrict_manage_posts', [ $this, 'printFilters' ] ); |
|
43 | + add_action( 'init', [ $this, 'register' ] ); |
|
44 | + add_filter( 'parse_query', [ $this, 'filterByTaxonomy' ] ); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | if( !is_admin() || ( new Helper )->getCurrentScreen()->base != 'edit' )return; |
54 | 54 | $vars = &$query->query_vars; |
55 | 55 | foreach( array_keys( $this->taxonomies ) as $taxonomy ) { |
56 | - if( !isset( $vars[$taxonomy] ))return; |
|
57 | - if( $term = get_term_by( 'id', $vars[$taxonomy], $taxonomy )) { |
|
58 | - $vars[$taxonomy] = $term->slug; |
|
56 | + if( !isset( $vars[ $taxonomy ] ) )return; |
|
57 | + if( $term = get_term_by( 'id', $vars[ $taxonomy ], $taxonomy ) ) { |
|
58 | + $vars[ $taxonomy ] = $term->slug; |
|
59 | 59 | } |
60 | 60 | } |
61 | 61 | return $query; |
@@ -69,18 +69,18 @@ discard block |
||
69 | 69 | { |
70 | 70 | global $wp_query; |
71 | 71 | foreach( $this->taxonomies as $taxonomy => $args ) { |
72 | - if( !in_array( get_current_screen()->post_type, $args['post_types'] ))continue; |
|
73 | - $selected = isset( $wp_query->query[$taxonomy] ) |
|
74 | - ? $wp_query->query[$taxonomy] |
|
72 | + if( !in_array( get_current_screen()->post_type, $args[ 'post_types' ] ) )continue; |
|
73 | + $selected = isset( $wp_query->query[ $taxonomy ] ) |
|
74 | + ? $wp_query->query[ $taxonomy ] |
|
75 | 75 | : false; |
76 | - wp_dropdown_categories([ |
|
76 | + wp_dropdown_categories( [ |
|
77 | 77 | 'hide_if_empty' => true, |
78 | 78 | 'name' => $taxonomy, |
79 | 79 | 'orderby' => 'name', |
80 | 80 | 'selected' => $selected, |
81 | - 'show_option_all' => $args['labels']['all_items'], |
|
81 | + 'show_option_all' => $args[ 'labels' ][ 'all_items' ], |
|
82 | 82 | 'taxonomy' => $taxonomy, |
83 | - ]); |
|
83 | + ] ); |
|
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
@@ -91,8 +91,8 @@ discard block |
||
91 | 91 | public function register() |
92 | 92 | { |
93 | 93 | array_walk( $this->taxonomies, function( $args, $taxonomy ) { |
94 | - register_taxonomy( $taxonomy, $args['post_types'], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
|
95 | - foreach( $args['post_types'] as $type ) { |
|
94 | + register_taxonomy( $taxonomy, $args[ 'post_types' ], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ) ) ); |
|
95 | + foreach( $args[ 'post_types' ] as $type ) { |
|
96 | 96 | register_taxonomy_for_object_type( $taxonomy, $type ); |
97 | 97 | } |
98 | 98 | }); |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | protected function normalize() |
105 | 105 | { |
106 | 106 | foreach( $this->app->config->taxonomies as $taxonomy => $args ) { |
107 | - $this->taxonomies[$taxonomy] = apply_filters( 'pollux/taxonomy/args', |
|
107 | + $this->taxonomies[ $taxonomy ] = apply_filters( 'pollux/taxonomy/args', |
|
108 | 108 | $this->normalizeThis( $args, static::TAXONOMY_DEFAULTS, $taxonomy ) |
109 | 109 | ); |
110 | 110 | } |
111 | 111 | $this->taxonomies = array_diff_key( |
112 | 112 | $this->taxonomies, |
113 | - get_taxonomies( ['_builtin' => true] ) |
|
113 | + get_taxonomies( [ '_builtin' => true ] ) |
|
114 | 114 | ); |
115 | 115 | } |
116 | 116 | |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | protected function normalizeLabels( $labels, array $args ) |
122 | 122 | { |
123 | - return wp_parse_args( $labels, $this->setLabels( $args )); |
|
123 | + return wp_parse_args( $labels, $this->setLabels( $args ) ); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | protected function normalizeMenuName( $menuname, array $args ) |
131 | 131 | { |
132 | 132 | return empty( $menuname ) |
133 | - ? $args['plural'] |
|
133 | + ? $args[ 'plural' ] |
|
134 | 134 | : $menuname; |
135 | 135 | } |
136 | 136 | |
@@ -149,17 +149,17 @@ discard block |
||
149 | 149 | protected function setLabels( array $args ) |
150 | 150 | { |
151 | 151 | return apply_filters( 'pollux/taxonomy/labels', [ |
152 | - 'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args['single'] ), |
|
153 | - 'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args['plural'] ), |
|
154 | - 'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args['single'] ), |
|
155 | - 'menu_name' => $this->normalizeMenuName( $args['menu_name'], $args ), |
|
156 | - 'name' => $args['plural'], |
|
157 | - 'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args['single'] ), |
|
158 | - 'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args['plural'] ), |
|
159 | - 'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args['plural'] ), |
|
160 | - 'singular_name' => $args['single'], |
|
161 | - 'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args['single'] ), |
|
162 | - 'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args['single'] ), |
|
152 | + 'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
153 | + 'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args[ 'plural' ] ), |
|
154 | + 'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
155 | + 'menu_name' => $this->normalizeMenuName( $args[ 'menu_name' ], $args ), |
|
156 | + 'name' => $args[ 'plural' ], |
|
157 | + 'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args[ 'single' ] ), |
|
158 | + 'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args[ 'plural' ] ), |
|
159 | + 'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args[ 'plural' ] ), |
|
160 | + 'singular_name' => $args[ 'single' ], |
|
161 | + 'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
162 | + 'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
163 | 163 | ], $args ); |
164 | 164 | } |
165 | 165 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if( !function_exists( 'pollux_app' )) { |
|
3 | +if( !function_exists( 'pollux_app' ) ) { |
|
4 | 4 | function pollux_app() { |
5 | 5 | return GeminiLabs\Pollux\Application::getInstance(); |
6 | 6 | } |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | { |
30 | 30 | $method = strtolower( $name ); |
31 | 31 | $status = substr( $method, 3 ); |
32 | - if( 'add' == substr( $method, 0, 3 ) && in_array( $status, ['error', 'info', 'success', 'warning'] )) { |
|
33 | - return call_user_func_array( [$this, 'addNotice'], array_merge( [$status], $args )); |
|
32 | + if( 'add' == substr( $method, 0, 3 ) && in_array( $status, [ 'error', 'info', 'success', 'warning' ] ) ) { |
|
33 | + return call_user_func_array( [ $this, 'addNotice' ], array_merge( [ $status ], $args ) ); |
|
34 | 34 | } |
35 | - throw new BadMethodCallException( sprintf( 'Not a valid method: %s', $name )); |
|
35 | + throw new BadMethodCallException( sprintf( 'Not a valid method: %s', $name ) ); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | public function __get( $property ) |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | if( $property == 'all' ) { |
41 | 41 | return $this->app->notices; |
42 | 42 | } |
43 | - throw new Exception( sprintf( 'Not a valid property: %s', $property )); |
|
43 | + throw new Exception( sprintf( 'Not a valid property: %s', $property ) ); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
@@ -48,28 +48,28 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function activateButton( array $plugin ) |
50 | 50 | { |
51 | - $actionUrl = self_admin_url( sprintf( 'options-general.php?page=%s&action=activate&plugin=%s', $this->app->id, $plugin['plugin'] )); |
|
52 | - return $this->button( sprintf( '%s %s', __( 'Activate', 'pollux' ), $plugin['name'] ), [ |
|
53 | - 'data-name' => $plugin['name'], |
|
54 | - 'data-plugin' => $plugin['plugin'], |
|
55 | - 'data-slug' => $plugin['slug'], |
|
56 | - 'href' => wp_nonce_url( $actionUrl, sprintf( 'activate-plugin_%s', $plugin['plugin'] )), |
|
57 | - ]); |
|
51 | + $actionUrl = self_admin_url( sprintf( 'options-general.php?page=%s&action=activate&plugin=%s', $this->app->id, $plugin[ 'plugin' ] ) ); |
|
52 | + return $this->button( sprintf( '%s %s', __( 'Activate', 'pollux' ), $plugin[ 'name' ] ), [ |
|
53 | + 'data-name' => $plugin[ 'name' ], |
|
54 | + 'data-plugin' => $plugin[ 'plugin' ], |
|
55 | + 'data-slug' => $plugin[ 'slug' ], |
|
56 | + 'href' => wp_nonce_url( $actionUrl, sprintf( 'activate-plugin_%s', $plugin[ 'plugin' ] ) ), |
|
57 | + ] ); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
61 | 61 | * @param string $title |
62 | 62 | * @return string |
63 | 63 | */ |
64 | - public function button( $title, array $atts = [] ) |
|
64 | + public function button( $title, array $atts = [ ] ) |
|
65 | 65 | { |
66 | 66 | $atts = wp_parse_args( $atts, [ |
67 | 67 | 'class' => '', |
68 | 68 | 'href' => '', |
69 | - ]); |
|
70 | - $atts['class'] = trim( $atts['class'] . ' button button-small' ); |
|
69 | + ] ); |
|
70 | + $atts[ 'class' ] = trim( $atts[ 'class' ] . ' button button-small' ); |
|
71 | 71 | $attributes = array_reduce( array_keys( $atts ), function( $carry, $key ) use( $atts ) { |
72 | - return $carry . sprintf( ' %s="%s"', $key, $atts[$key] ); |
|
72 | + return $carry . sprintf( ' %s="%s"', $key, $atts[ $key ] ); |
|
73 | 73 | }); |
74 | 74 | return sprintf( '<a%s>%s</a>', $attributes, $title ); |
75 | 75 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | if( $unset ) { |
83 | 83 | $index = array_search( $notice, $this->app->notices ); |
84 | 84 | if( $index !== false ) { |
85 | - unset( $this->app->notices[$index] ); |
|
85 | + unset( $this->app->notices[ $index ] ); |
|
86 | 86 | } |
87 | 87 | } |
88 | 88 | return $this->buildNotice( $notice ); |
@@ -93,13 +93,13 @@ discard block |
||
93 | 93 | */ |
94 | 94 | public function installButton( array $plugin ) |
95 | 95 | { |
96 | - $actionUrl = self_admin_url( sprintf( 'update.php?action=install-plugin&plugin=%s', $plugin['slug'] )); |
|
97 | - return $this->button( sprintf( '%s %s', __( 'Install', 'pollux' ), $plugin['name'] ), [ |
|
98 | - 'data-name' => $plugin['name'], |
|
99 | - 'data-plugin' => $plugin['plugin'], |
|
100 | - 'data-slug' => $plugin['slug'], |
|
101 | - 'href' => wp_nonce_url( $actionUrl, sprintf( 'install-plugin_%s', $plugin['slug'] )), |
|
102 | - ]); |
|
96 | + $actionUrl = self_admin_url( sprintf( 'update.php?action=install-plugin&plugin=%s', $plugin[ 'slug' ] ) ); |
|
97 | + return $this->button( sprintf( '%s %s', __( 'Install', 'pollux' ), $plugin[ 'name' ] ), [ |
|
98 | + 'data-name' => $plugin[ 'name' ], |
|
99 | + 'data-plugin' => $plugin[ 'plugin' ], |
|
100 | + 'data-slug' => $plugin[ 'slug' ], |
|
101 | + 'href' => wp_nonce_url( $actionUrl, sprintf( 'install-plugin_%s', $plugin[ 'slug' ] ) ), |
|
102 | + ] ); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | /** |
@@ -107,13 +107,13 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public function updateButton( array $plugin ) |
109 | 109 | { |
110 | - $actionUrl = self_admin_url( sprintf( 'update.php?action=upgrade-plugin&plugin=%s', $plugin['plugin'] )); |
|
111 | - return $this->button( sprintf( '%s %s', __( 'Update', 'pollux' ), $plugin['name'] ), [ |
|
112 | - 'data-name' => $plugin['name'], |
|
113 | - 'data-plugin' => $plugin['plugin'], |
|
114 | - 'data-slug' => $plugin['slug'], |
|
115 | - 'href' => wp_nonce_url( $actionUrl, sprintf( 'upgrade-plugin_%s', $plugin['plugin'] )), |
|
116 | - ]); |
|
110 | + $actionUrl = self_admin_url( sprintf( 'update.php?action=upgrade-plugin&plugin=%s', $plugin[ 'plugin' ] ) ); |
|
111 | + return $this->button( sprintf( '%s %s', __( 'Update', 'pollux' ), $plugin[ 'name' ] ), [ |
|
112 | + 'data-name' => $plugin[ 'name' ], |
|
113 | + 'data-plugin' => $plugin[ 'plugin' ], |
|
114 | + 'data-slug' => $plugin[ 'slug' ], |
|
115 | + 'href' => wp_nonce_url( $actionUrl, sprintf( 'upgrade-plugin_%s', $plugin[ 'plugin' ] ) ), |
|
116 | + ] ); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -133,9 +133,9 @@ discard block |
||
133 | 133 | */ |
134 | 134 | protected function addNotice( $type, $messages, $dismissible = true ) |
135 | 135 | { |
136 | - $this->app->notices[] = [ |
|
136 | + $this->app->notices[ ] = [ |
|
137 | 137 | 'dismissible' => $dismissible, |
138 | - 'message' => $this->buildMessage( array_filter( (array) $messages )), |
|
138 | + 'message' => $this->buildMessage( array_filter( (array) $messages ) ), |
|
139 | 139 | 'type' => $type, |
140 | 140 | ]; |
141 | 141 | $this->app->notices = array_unique( $this->app->notices, SORT_REGULAR ); |
@@ -147,10 +147,10 @@ discard block |
||
147 | 147 | protected function buildMessage( array $messages ) |
148 | 148 | { |
149 | 149 | foreach( $messages as $key => &$message ) { |
150 | - if( !is_wp_error( $message ))continue; |
|
150 | + if( !is_wp_error( $message ) )continue; |
|
151 | 151 | $message = $message->get_error_message(); |
152 | 152 | } |
153 | - return wpautop( implode( PHP_EOL . PHP_EOL, $messages )); |
|
153 | + return wpautop( implode( PHP_EOL . PHP_EOL, $messages ) ); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
@@ -158,10 +158,10 @@ discard block |
||
158 | 158 | */ |
159 | 159 | protected function buildNotice( array $notice ) |
160 | 160 | { |
161 | - $class = sprintf( 'notice notice-%s', $notice['type'] ); |
|
162 | - if( $notice['dismissible'] ) { |
|
161 | + $class = sprintf( 'notice notice-%s', $notice[ 'type' ] ); |
|
162 | + if( $notice[ 'dismissible' ] ) { |
|
163 | 163 | $class .= ' is-dismissible'; |
164 | 164 | } |
165 | - return sprintf( '<div class="pollux-notice %s">%s</div>', $class, $notice['message'] ); |
|
165 | + return sprintf( '<div class="pollux-notice %s">%s</div>', $class, $notice[ 'message' ] ); |
|
166 | 166 | } |
167 | 167 | } |