2003-06-12 00:59:14 +02:00
|
|
|
<?php
|
2003-06-13 00:48:52 +02:00
|
|
|
require_once('../wp-config.php');
|
2003-06-12 00:59:14 +02:00
|
|
|
/**
|
|
|
|
** get_option_widget()
|
|
|
|
** parameters:
|
|
|
|
** option_result - result set containing option_id, option_name, option_type,
|
|
|
|
** option_value, option_description, option_admin_level
|
|
|
|
** editable - flag to determine whether the returned widget will be editable
|
|
|
|
**/
|
|
|
|
function get_option_widget($option_result, $editable, $between)
|
|
|
|
{
|
|
|
|
global $wpdb, $tableoptionvalues;
|
2003-06-12 01:19:21 +02:00
|
|
|
$disabled = $editable ? '' : 'disabled';
|
|
|
|
|
2003-06-13 00:48:52 +02:00
|
|
|
switch ($option_result->option_type) {
|
2003-06-12 00:59:14 +02:00
|
|
|
case 1: // integer
|
|
|
|
case 3: // string
|
2003-08-06 00:44:38 +02:00
|
|
|
case 8: // float
|
2003-06-13 00:48:52 +02:00
|
|
|
case 6: // range -- treat same as integer for now!
|
|
|
|
if (($option_result->option_type == 1) || ($option_result->option_type == 1)) {
|
2003-06-12 00:59:14 +02:00
|
|
|
$width = 6;
|
2003-06-13 00:48:52 +02:00
|
|
|
} else {
|
2003-06-12 00:59:14 +02:00
|
|
|
$width = $option_result->option_width;
|
2003-06-13 00:48:52 +02:00
|
|
|
}
|
2003-06-12 00:59:14 +02:00
|
|
|
return <<<TEXTINPUT
|
|
|
|
<label for="$option_result->option_name">$option_result->option_name</label>$between
|
2003-06-12 01:19:21 +02:00
|
|
|
<input type="text" name="$option_result->option_name" size="$width" value="$option_result->option_value" $disabled/>
|
2003-06-12 00:59:14 +02:00
|
|
|
TEXTINPUT;
|
|
|
|
//break;
|
2003-06-13 00:48:52 +02:00
|
|
|
|
2003-06-12 00:59:14 +02:00
|
|
|
case 2: // boolean
|
2003-06-13 00:48:52 +02:00
|
|
|
$true_selected = ($option_result->option_value == '1') ? 'selected' : '';
|
|
|
|
$false_selected = ($option_result->option_value == '0') ? 'selected' : '';
|
2003-06-12 00:59:14 +02:00
|
|
|
return <<<BOOLSELECT
|
|
|
|
<label for="$option_result->option_name">$option_result->option_name</label>$between
|
2003-06-12 01:19:21 +02:00
|
|
|
<select name="$option_result->option_name" $disabled>
|
2003-06-13 00:48:52 +02:00
|
|
|
<option value="1" $true_selected>true</option>
|
|
|
|
<option value="0" $false_selected>false</option>
|
2003-06-12 00:59:14 +02:00
|
|
|
</select>
|
|
|
|
BOOLSELECT;
|
|
|
|
//break;
|
2003-06-13 00:48:52 +02:00
|
|
|
|
2003-06-12 00:59:14 +02:00
|
|
|
case 5: // select
|
|
|
|
$ret = <<<SELECT
|
|
|
|
<label for="$option_result->option_name">$option_result->option_name</label>$between
|
2004-01-03 04:19:56 +01:00
|
|
|
<select name="$option_result->option_name" id="$option_result->option_name" $disabled>
|
2003-06-12 00:59:14 +02:00
|
|
|
SELECT;
|
|
|
|
|
2003-06-13 00:48:52 +02:00
|
|
|
$select = $wpdb->get_results("SELECT optionvalue, optionvalue_desc "
|
2003-06-12 00:59:14 +02:00
|
|
|
."FROM $tableoptionvalues "
|
|
|
|
."WHERE option_id = $option_result->option_id "
|
|
|
|
."ORDER BY optionvalue_seq");
|
2003-06-13 00:48:52 +02:00
|
|
|
if ($select) {
|
|
|
|
foreach($select as $option) {
|
2003-06-12 00:59:14 +02:00
|
|
|
$ret .= '<option value="'.$option->optionvalue.'"';
|
|
|
|
//error_log("comparing [$option_result->option_value] == [$option->optionvalue]");
|
2003-06-13 00:48:52 +02:00
|
|
|
if ($option_result->option_value == $option->optionvalue) {
|
2003-06-12 00:59:14 +02:00
|
|
|
$ret .=' selected';
|
|
|
|
}
|
|
|
|
$ret .= ">$option->optionvalue_desc</option>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$ret .= '</select>';
|
|
|
|
return $ret;
|
|
|
|
//break;
|
2003-06-13 00:48:52 +02:00
|
|
|
|
|
|
|
case 7: // SQL select
|
|
|
|
// first get the sql to run
|
|
|
|
$sql = $wpdb->get_var("SELECT optionvalue FROM $tableoptionvalues WHERE option_id = $option_result->option_id");
|
|
|
|
if (!$sql) {
|
|
|
|
return $option_result->option_name . $editable;
|
|
|
|
}
|
|
|
|
|
|
|
|
// now we may need to do table name substitution
|
2004-01-03 04:19:56 +01:00
|
|
|
eval("include('../wp-config.php');\$sql = \"$sql\";");
|
2003-06-13 00:48:52 +02:00
|
|
|
|
|
|
|
$ret = <<<SELECT
|
|
|
|
<label for="$option_result->option_name">$option_result->option_name</label>$between
|
|
|
|
<select name="$option_result->option_name" $disabled>
|
|
|
|
SELECT;
|
2004-01-03 04:19:56 +01:00
|
|
|
|
2003-06-13 00:48:52 +02:00
|
|
|
$select = $wpdb->get_results("$sql");
|
|
|
|
if ($select) {
|
|
|
|
foreach($select as $option) {
|
|
|
|
$ret .= '<option value="'.$option->value.'"';
|
|
|
|
//error_log("comparing [$option_result->option_value] == [$option->optionvalue]");
|
|
|
|
if ($option_result->option_value == $option->value) {
|
|
|
|
$ret .=' selected';
|
|
|
|
}
|
|
|
|
$ret .= ">$option->label</option>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$ret .= '</select>';
|
|
|
|
return $ret;
|
|
|
|
//break;
|
2003-06-12 00:59:14 +02:00
|
|
|
|
|
|
|
} // end switch
|
|
|
|
return $option_result->option_name . $editable;
|
|
|
|
} // end function get_option_widget
|
2003-06-13 00:48:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
function validate_option($option, $name, $val) {
|
|
|
|
global $wpdb, $tableoptionvalues;
|
|
|
|
$msg = '';
|
|
|
|
switch ($option->option_type) {
|
|
|
|
case 6: // range
|
|
|
|
// get range
|
|
|
|
$range = $wpdb->get_row("SELECT optionvalue_max, optionvalue_min FROM $tableoptionvalues WHERE option_id = $option->option_id");
|
|
|
|
if ($range) {
|
|
|
|
if (($val < $range->optionvalue_min) || ($val > $range->optionvalue_max)) {
|
|
|
|
$msg = "$name is outside the valid range ($range->optionvalue_min - $range->optionvalue_max). ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end switch
|
|
|
|
return $msg;
|
|
|
|
} // end validate_option
|
|
|
|
|
2003-06-12 00:59:14 +02:00
|
|
|
?>
|