Files
roi-theme/wp-content/plugins/ajax-search-pro/backend/settings/class/customarrayselect.class.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

74 lines
2.2 KiB
PHP
Executable File

<?php
if (!class_exists("wpdreamsCustomArraySelect")) {
/**
* Class wpdreamsCustomArraySelect
*
* A customisable drop down UI element, supports multiple select boxes chained.
*
* @package WPDreams/OptionsFramework/Classes
* @category Class
* @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
* @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
* @copyright Copyright (c) 2014, Ernest Marcinko
*/
class wpdreamsCustomArraySelect extends wpdreamsType {
private $optionsArr = array();
private $selectedArr = array();
function getType() {
parent::getType();
$this->processData();
echo "<div class='wpdreamsCustomArraySelect'>";
foreach ($this->optionsArr as $k => $options) {
// label for each box
if ( is_array($this->label) && $this->label[$k] != '' )
echo "<label for='" .$k. "wpdreamscustomarrayselect_" . self::$_instancenumber . "'>" . $this->label[$k] . "</label>";
// this is not the parameter, its just a dummy
echo "<select class='wpdreamscustomarrayselect' id='" .$k. "wpdreamscustomarrayselect_" . self::$_instancenumber . "' name='dummy-" . $this->name . "'>";
foreach ($options as $kk => $option) {
if (($option['value'] . "") == ($this->selectedArr[$k] . ""))
echo "<option value='" . $option['value'] . "' selected='selected'>" . $option['option'] . "</option>";
else
echo "<option value='" . $option['value'] . "'>" . $option['option'] . "</option>";
}
echo "</select>";
}
echo "
<input type='hidden' isparam=1 name='" . $this->name . "' value='".$this->data."' />
<input type='hidden' value='wpdreamsCustomArraySelect' name='classname-" . $this->name . "'>
</div>";
}
function processData() {
if ( is_array($this->data) ) {
// invoked on the backend
$this->optionsArr = $this->data['optionsArr'];
$this->selectedArr = explode('||', $this->data['value']);
// change the data to the actual value
$this->data = $this->data['value'];
} else {
// invoked by wpdreams_parse_params(), when saving
$this->selectedArr = explode('||', $this->data);
}
}
final function getData() {
return $this->data;
}
final function getSelected() {
return $this->selectedArr;
}
}
}