_htmlName = $key;
$this->_key = $key;
$this->_type = $type;
$this->_label = $label;
$this->_minVal = $min;
$this->_maxVal = $max;
$this->_inputType = $inputType;
$this->_inputAttr = $inputAttr;
$this->_allowNull = $allowNull;
$this->_multiInd = $multiInd;
$this->_helpKey = ($helpKey == NULL)? $key:$helpKey;
}
public function dup($key, $label, $helpkey)
{
$cname = get_class($this);
$d = new $cname($this->_key, $this->_type, $this->_label, $this->_inputType, $this->_allowNull,
$this->_minVal, $this->_maxVal, $this->_inputAttr, $this->_multiInd, $this->_helpKey);
$d->_htmlName = $this->_htmlName;
$d->_glue = $this->_glue;
$d->_href = $this->_href;
$d->_hrefLink = $this->_hrefLink;
$d->_FDE = $this->_FDE;
$d->_note = $this->_note;
$d->_icon = $this->_icon;
$d->_linkedkeys = $this->_linkedkeys;
if ( $key != NULL )
{
$d->_htmlName = $key;
$d->_key = $key;
}
if ($label != NULL)
$d->_label = $label;
if ($helpkey != NULL)
$d->_helpKey = $helpkey;
return $d;
}
protected function extractCheckBoxOr()
{
$value = 0;
$novalue = 1;
foreach ($this->_maxVal as $val => $disp) {
$name = $this->_key . $val;
if (isset($_POST[$name]) && ($val !== '')) {
$novalue = 0;
$value = $value | $val;
}
}
return ( $novalue ? '' : $value );
}
protected function extractSplitMultiple(&$value)
{
if ( $this->_glue == ' ' )
$vals = preg_split("/[,; ]+/", $value, -1, PREG_SPLIT_NO_EMPTY);
else
$vals = preg_split("/[,;]+/", $value, -1, PREG_SPLIT_NO_EMPTY);
$vals1 = array();
foreach( $vals as $val )
{
$val1 = trim($val);
if ( strlen($val1) > 0 && !in_array($val1,$vals1)) {
$vals1[] = $val1;
}
}
if ( $this->_glue == ' ')
$value = implode(' ', $vals1);
else
$value = implode(', ', $vals1);
}
protected function toHtmlContent($cval, $refUrl=NULL)
{
$o = '';
if ( $cval == NULL || !$cval->HasVal()) {
$o .= 'Not Set';
return $o;
}
$value = $cval->GetVal();
$err = $cval->GetErr();
if ( $this->_type == 'sel1' && $value != NULL && !array_key_exists($value, $this->_maxVal) ) {
$err = 'Invalid value - ' . htmlspecialchars($value,ENT_QUOTES);
}
else if ( $err != NULL ) {
$type3 = substr($this->_type, 0, 3);
if ( $type3 == 'fil' || $type3 == 'pat' ) {
$validator = new ConfValidation();
$validator->chkAttr_file_val($this, $value, $err);
//error_log('revalidate path ' . $value);
}
}
if ( $err ) {
$cval->SetErr($err);
$o .= '*' . $err . '
';
}
if ( $this->_href ) {
$link = $this->_hrefLink;
if ( strpos($link, '$V') ) {
$link = str_replace('$V', urlencode($value), $link);
}
$o .= '';
} elseif ( $refUrl != NULL ) {
$o .= '';
}
if ( $this->_type === 'bool' ) {
if ( $value === '1' ) {
$o .= 'Yes';
}
elseif ( $value === '0' ) {
$o .= 'No';
}
else {
$o .= 'Not Set';
}
}
else if($this->_key == "note") {
$o .= '';
}
elseif ( $this->_type === 'sel' || $this->_type === 'sel1' ) {
if ( $this->_maxVal != NULL && array_key_exists($value, $this->_maxVal) ) {
$o .= $this->_maxVal[$value];
}
else {
$o .= htmlspecialchars($value,ENT_QUOTES);
}
}
elseif ( $this->_type === 'checkboxOr' ) {
if ($this->_minVal !== NULL && ($value === '' || $value === NULL) ) {
// has default value, for "Not set", set default val
$value = $this->_minVal;
}
foreach( $this->_maxVal as $val=>$name ) {
if ( ($value === $val) || ($value === '0' && $val === 0)
|| ($value !== '' && $val !== '' && (intval($value) & intval($val)) > 0) ) {
$gif = 'checked.gif';
}
else {
$gif = 'unchecked.gif';
}
$o .= '
';
$o .= $name . ' ';
}
}
elseif ( $this->_inputType === 'textarea1' ) {
$o .= '';
}
elseif ( $this->_inputType === 'text' ) {
$o .= '' . htmlspecialchars($value, ENT_QUOTES) . '';
}
elseif ( $this->_type == 'ctxseq' ) {
$o = $value . ' + ' ;
$o .= '/ - ' ;
}
elseif ( $this->_type == 'action' ) {
$o .= $value;
}
else {
$o .= htmlspecialchars($value);
}
if ( $this->_href || $refUrl != NULL) {
$o .= '';
}
return $o;
}
protected function getNote()
{
if ( $this->_note != NULL )
return $this->_note;
if ( $this->_type == 'uint' )
{
if ( $this->_maxVal )
return 'number valid range: '. $this->_minVal . ' - ' . $this->_maxVal;
elseif ( $this->_minVal !== NULL )
return 'number >= '. $this->_minVal ;
}
else if ($this->_type == 'parse' && $this->_maxVal) {
return 'Syntax: ' . $this->_maxVal; // parsehelp
}
return null;
}
protected function genOptions($options, $selValue)
{
$o = '';
if ( $options )
{
foreach ( $options as $key => $value )
{
if ($key === 'forcesel') {
$o .= '
';
}
$style = 'xtbl_value';
if ( $this->_inputType === 'text' )
{
$input .= '';
return $input;
}
if ( $this->_inputType === 'password' )
{
$input .= '';
return $input;
}
if ( $this->_inputType === 'textarea' || $this->_inputType === 'textarea1' )
{
$input .= '';
return $input;
}
if ( $this->_inputType === 'radio' && $this->_type === 'bool')
{
$input .= ' Yes ';
$input .= ' No ';
if ( $this->_allowNull )
{
$input .= ' Not Set ';
}
return $input;
}
if ( $this->_inputType === 'checkbox' )
{
$id = $name . $value['val'];
$input .= ' ' . $value['val'] . ' ';
return $input;
}
if ( $this->_inputType === 'checkboxgroup' )
{
if ($this->_minVal !== NULL && ($value === '' || $value === NULL) ) {
// has default value, for "Not set", set default val
$value = $this->_minVal;
}
$js0 = $js1 = '';
if (array_key_exists('0', $this->_maxVal) || array_key_exists('', $this->_maxVal)) {
$chval = array_keys($this->_maxVal);
foreach ($chval as $chv) {
if ($chv == '0' || $chv === '')
$js1 = "document.confform.$name$chv.checked=false;";
else
$js0 .= "document.confform.$name$chv.checked=false;";
}
$js1 = " onclick=\"$js1\"";
$js0 = " onclick=\"$js0\"";
}
foreach ($this->_maxVal as $val => $disp) {
$id = $name . $val;
$input .= ' 0))) {
$input .= ' checked';
}
$input .= ($val === '0' || $val === 0 || $val === '') ? $js0 : $js1;
$input .= '> ';
}
return $input;
}
if ( $this->_inputType === 'select' )
{
$input .= '';
return $input;
}
}
public function populate_sel1_options($info, &$data)
{
$options = array();
if ( $this->_allowNull ) {
$options[''] = '';
} else {
$options['forcesel'] = '-- Please select --';
}
foreach( $this->_minVal as $loc )
{
$d = $info;
$locs = explode(':', $loc);
foreach ( $locs as $l )
{
if ( substr($l, 0, 2) == '$$' )
{ //$$type!fcgi
$t = strpos($l, '!');
$tag = substr($l, 2, $t-2);
$tag0 = substr($l, $t+1); // default
if (isset($data[$tag]) && $data[$tag]->HasVal()) {
$l = $data[$tag]->GetVal();
}
else {
$l = $tag0;
}
}
if (!empty($d[$l])) {
$d = $d[$l];
}
else {
$d = NULL;
break;
}
}
if ( $d != NULL ) {
$options = $options + $d; // this is array add
}
}
$this->_maxVal = $options;
}
}