golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/oxygen/plugin/wpwidgets
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
base.php
173 B
Del
OK
helpers.php
1 KB
Del
OK
stock
-
Del
OK
widgets-controller.php
2 KB
Del
OK
Edit: helpers.php
<?php namespace Breakdance\WPWidgets; use function Breakdance\Elements\controlSection; /** * @param WPWidget[] $widgets * @return array{text:string,value:string}[] */ function getWidgetsAsDropdownItems($widgets) { return array_map( function($widget) { return [ 'text' => $widget['name'], 'value' => $widget['slug'] ]; }, array_values($widgets) ); } /** * @param WPWidget[] $widgets * @return Control[] */ function getWidgetControlSections($widgets) { return array_map( function($widget) { return controlSection( $widget['slug'], $widget['name'].' Options', $widget['controls'], [ 'condition' => [ 'path' => '%%CURRENTPATH%%.widget', 'operand' => 'equals', 'value' => $widget['slug']] ], 'popout' ); }, array_values($widgets) ); }
Save