File: /home/slyfwmm/foar/wp-content/plugins/admin-menu-editor/customizables/Controls/ChoiceControl.php
<?php
namespace YahnisElsts\AdminMenuEditor\Customizable\Controls;
use YahnisElsts\AdminMenuEditor\Customizable\Settings\EnumSetting;
use YahnisElsts\AdminMenuEditor\Customizable\Settings\Setting;
abstract class ChoiceControl extends ClassicControl {
protected $type = 'choice';
/**
* @var Setting
*/
protected $mainSetting;
/**
* @var ChoiceControlOption[]
*/
protected $options = [];
public function __construct($settings = [], $params = []) {
parent::__construct($settings, $params);
if ( isset($params['choices']) ) {
if ( is_callable($params['choices']) ) {
$choices = call_user_func($params['choices']);
} else {
$choices = $params['choices'];
}
foreach ($choices as $key => $item) {
if ( is_string($item) ) {
//List of [value => label] pairs.
$this->options[] = new ChoiceControlOption($key, $item);
} else if ( is_array($item) ) {
//List of arrays where each item is [value => X, label => Y, ...].
//Alternatively, [value => [label => Y, ...]] pairs.
if ( !array_key_exists('value', $item) ) {
$item['value'] = $key;
}
$this->options[$key] = ChoiceControlOption::fromArray($item);
} else if ( $item instanceof ChoiceControlOption ) {
//List of nicely predefined option objects.
$this->options[] = $item;
} else {
throw new \InvalidArgumentException("Invalid option: $item");
}
}
} else if ( $this->mainSetting instanceof EnumSetting ) {
$this->options = $this->mainSetting->generateChoiceOptions();
}
}
protected function getKoComponentParams() {
$params = parent::getKoComponentParams();
$params['options'] = array_map(
function ($option) {
return $option->serializeForJs();
},
$this->options
);
return $params;
}
}