@@ -66,6 +66,9 @@ |
||
66 | 66 | self::addFilters('feature', $name, $filePath); |
67 | 67 | } |
68 | 68 | |
69 | + /** |
|
70 | + * @param string $category |
|
71 | + */ |
|
69 | 72 | public static function addFilters($category, $name, $filePath) |
70 | 73 | { |
71 | 74 | if (false === $filePath || !file_exists($filePath)) { |
@@ -240,6 +240,9 @@ discard block |
||
240 | 240 | }); |
241 | 241 | } |
242 | 242 | |
243 | + /** |
|
244 | + * @param string $type |
|
245 | + */ |
|
243 | 246 | protected static function createSubPage($type, $name) |
244 | 247 | { |
245 | 248 | $namespace = self::FILTER_NAMESPACES[$type]; |
@@ -257,6 +260,9 @@ discard block |
||
257 | 260 | } |
258 | 261 | } |
259 | 262 | |
263 | + /** |
|
264 | + * @param string $subPageName |
|
265 | + */ |
|
260 | 266 | protected static function addOptionSubPage($optionCategoryName, $subPageName, $optionType, $fields) |
261 | 267 | { |
262 | 268 | $prettySubPageName = StringHelpers::splitCamelCase($subPageName); |
@@ -285,6 +291,9 @@ discard block |
||
285 | 291 | ); |
286 | 292 | } |
287 | 293 | |
294 | + /** |
|
295 | + * @param string $menuSlug |
|
296 | + */ |
|
288 | 297 | protected static function addFieldGroupToSubPage($parentMenuSlug, $menuSlug, $prettySubPageName, $fields) |
289 | 298 | { |
290 | 299 | $fieldGroup = ACFComposer\ResolveConfig::forFieldGroup( |
@@ -308,6 +317,10 @@ discard block |
||
308 | 317 | acf_add_local_field_group($fieldGroup); |
309 | 318 | } |
310 | 319 | |
320 | + /** |
|
321 | + * @param string $optionCategory |
|
322 | + * @param string $feature |
|
323 | + */ |
|
311 | 324 | protected static function checkFeature($optionCategory, $feature) |
312 | 325 | { |
313 | 326 | if (array_key_exists($optionCategory, self::$optionCategories) && !Feature::isRegistered($feature)) { |
@@ -334,6 +347,12 @@ discard block |
||
334 | 347 | }, $fields); |
335 | 348 | } |
336 | 349 | |
350 | + /** |
|
351 | + * @param string $optionType |
|
352 | + * @param string $optionCategory |
|
353 | + * @param string $subPageName |
|
354 | + * @param string|null $fieldName |
|
355 | + */ |
|
337 | 356 | protected static function checkRequiredHooks($optionType, $optionCategory, $subPageName, $fieldName) |
338 | 357 | { |
339 | 358 | if (did_action('acf/init') < 1) { |
@@ -389,6 +408,10 @@ discard block |
||
389 | 408 | } |
390 | 409 | |
391 | 410 | // find and replace relevant keys, then return an array of all options for this Sub-Page |
411 | + |
|
412 | + /** |
|
413 | + * @param string $prefix |
|
414 | + */ |
|
392 | 415 | protected static function collectOptionsWithPrefix($options, $prefix) |
393 | 416 | { |
394 | 417 | $optionKeys = is_array($options) ? array_keys($options) : []; |