1
- <?php //phpcs:disable WordPress.NamingConventions.ValidVariableName
1
+ <?php //phpcs:disable WordPress.NamingConventions.ValidVariableName, Squiz.PHP.CommentedOutCode.Found, Squiz.Commenting.InlineComment.InvalidEndChar
2
2
/**
3
3
* Builder class file.
4
4
*
@@ -86,7 +86,7 @@ public function enableCompilation(
86
86
* @return static
87
87
*/
88
88
public function enableDefinitionCache ( string $ cacheNamespace = '' , bool $ enableCache = false ): static {
89
- return $ enableCache
89
+ return $ enableCache && ! \defined ( ' WP_CLI ' )
90
90
? parent ::enableDefinitionCache ( \rtrim ( $ cacheNamespace , '. ' ) . '. ' )
91
91
: $ this ;
92
92
}
@@ -116,30 +116,35 @@ public function enableHookCache( bool $enableCache, string $cacheDirectory ): st
116
116
*/
117
117
public function addBaseDefinition ( array $ config ): App_Builder {
118
118
$ definition = array (
119
- 'xwp. app ' => \DI \get ( 'Module- ' . $ config ['app_module ' ] ),
120
- 'xwp. app.cache ' => \DI \value (
119
+ 'app ' => \DI \get ( 'Module- ' . $ config ['app_module ' ] ),
120
+ 'app.cache ' => \DI \value (
121
121
array (
122
122
'app ' => $ config ['cache_app ' ],
123
123
'defs ' => $ config ['cache_defs ' ],
124
124
'dir ' => $ config ['cache_dir ' ],
125
125
'hooks ' => $ config ['cache_hooks ' ],
126
+ 'ns ' => $ config ['app_id ' ],
126
127
),
127
128
),
128
- 'xwp.app.debug ' => \DI \value ( \defined ( 'WP_DEBUG ' ) && WP_DEBUG ),
129
- 'xwp.app.env ' => \DI \factory ( 'wp_get_environment_type ' ),
130
- 'xwp.app.id ' => \DI \value ( $ config ['app_id ' ] ),
131
- 'xwp.app.module ' => \DI \value ( $ config ['app_module ' ] ),
132
- 'xwp.app.type ' => \DI \value ( $ config ['app_type ' ] ),
133
- 'xwp.app.uuid ' => \DI \factory ( 'wp_generate_uuid4 ' ),
134
- 'xwp.app.ver ' => \DI \value ( $ config ['app_version ' ] ),
129
+ 'app.debug ' => \DI \value ( \defined ( 'WP_DEBUG ' ) && WP_DEBUG ),
130
+ 'app.env ' => \DI \factory ( 'wp_get_environment_type ' ),
131
+ 'app.extend ' => \DI \value ( $ config ['extendable ' ] ),
132
+ 'app.id ' => \DI \value ( $ config ['app_id ' ] ),
133
+ 'app.module ' => \DI \value ( $ config ['app_module ' ] ),
134
+ 'app.type ' => \DI \value ( $ config ['app_type ' ] ),
135
+ 'app.uuid ' => \DI \factory ( 'wp_generate_uuid4 ' ),
136
+ 'app.ver ' => \DI \value ( $ config ['app_version ' ] ),
135
137
);
136
138
137
139
if ( $ config ['app_file ' ] && 'plugin ' === $ config ['app_type ' ] ) {
138
- $ definition ['xwp.app.file ' ] = \DI \value ( $ config ['app_file ' ] );
139
- $ definition ['xwp.app.base ' ] = \DI \factory ( 'plugin_basename ' , )
140
- ->parameter ( 'file ' , \DI \get ( 'xwp.app.file ' ) );
141
- $ definition ['xwp.app.path ' ] = \DI \factory ( 'plugin_dir_path ' )
142
- ->parameter ( 'file ' , \DI \get ( 'xwp.app.file ' ) );
140
+ $ definition ['app.file ' ] = \DI \value ( $ config ['app_file ' ] );
141
+ $ definition ['app.base ' ] = \DI \factory ( 'plugin_basename ' , )
142
+ ->parameter ( 'file ' , \DI \get ( 'app.file ' ) );
143
+ $ definition ['app.path ' ] = \DI \factory ( 'plugin_dir_path ' )
144
+ ->parameter ( 'file ' , \DI \get ( 'app.file ' ) );
145
+ $ definition ['app.url ' ] = \DI \factory ( 'plugin_dir_url ' )
146
+ ->parameter ( 'file ' , \DI \get ( 'app.file ' ) );
147
+
143
148
}
144
149
145
150
return parent ::addDefinitions ( $ definition );
@@ -152,12 +157,18 @@ public function addBaseDefinition( array $config ): App_Builder {
152
157
* @return App_Builder
153
158
*/
154
159
public function addModuleDefinition ( array $ config ): App_Builder {
155
- $ parser = new Parser ( $ config ['app_module ' ] );
160
+ $ parser = ( new Parser ( $ config ['app_module ' ], $ config ['app_id ' ] ) )
161
+ ->set_extendable ( $ config ['extendable ' ] );
156
162
157
163
$ defns = $ this ->isHookCacheEnabled ()
158
164
? ( new Compiler ( $ parser ) )->compile ( $ config ['cache_dir ' ] )
159
165
: $ parser ->make ()->get_parsed ();
160
166
167
+ // if ( 'woosync' === $config['app_id'] ) {
168
+ // \dump( $defns );
169
+ // die;
170
+ // }
171
+
161
172
return $ this ->addDefinitions ( $ defns );
162
173
}
163
174
0 commit comments