|
411 | 411 | ) |
412 | 412 | ); |
413 | 413 |
|
| 414 | +$form["tabs"]['dns'] = array ( |
| 415 | + 'title' => "DNS", |
| 416 | + 'width' => 60, |
| 417 | + 'template' => "templates/server_config_dns_edit.htm", |
| 418 | + 'fields' => array ( |
| 419 | + ################################## |
| 420 | + # Begin Datatable fields |
| 421 | + ################################## |
| 422 | + 'bind_user' => array ( |
| 423 | + 'datatype' => 'VARCHAR', |
| 424 | + 'formtype' => 'TEXT', |
| 425 | + 'default' => '', |
| 426 | + 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| 427 | + 'errmsg'=> 'bind_user_error_empty'), |
| 428 | + ), |
| 429 | + 'value' => '', |
| 430 | + 'width' => '40', |
| 431 | + 'maxlength' => '255' |
| 432 | + ), |
| 433 | + 'bind_group' => array ( |
| 434 | + 'datatype' => 'VARCHAR', |
| 435 | + 'formtype' => 'TEXT', |
| 436 | + 'default' => '', |
| 437 | + 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| 438 | + 'errmsg'=> 'bind_group_error_empty'), |
| 439 | + ), |
| 440 | + 'value' => '', |
| 441 | + 'width' => '40', |
| 442 | + 'maxlength' => '255' |
| 443 | + ), |
| 444 | + 'bind_zonefiles_dir' => array ( |
| 445 | + 'datatype' => 'VARCHAR', |
| 446 | + 'formtype' => 'TEXT', |
| 447 | + 'default' => '', |
| 448 | + 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| 449 | + 'errmsg'=> 'bind_zonefiles_dir_error_empty'), |
| 450 | + ), |
| 451 | + 'value' => '', |
| 452 | + 'width' => '40', |
| 453 | + 'maxlength' => '255' |
| 454 | + ), |
| 455 | + 'named_conf_path' => array ( |
| 456 | + 'datatype' => 'VARCHAR', |
| 457 | + 'formtype' => 'TEXT', |
| 458 | + 'default' => '', |
| 459 | + 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| 460 | + 'errmsg'=> 'named_conf_path_error_empty'), |
| 461 | + ), |
| 462 | + 'value' => '', |
| 463 | + 'width' => '40', |
| 464 | + 'maxlength' => '255' |
| 465 | + ), |
| 466 | + 'named_conf_local_path' => array ( |
| 467 | + 'datatype' => 'VARCHAR', |
| 468 | + 'formtype' => 'TEXT', |
| 469 | + 'default' => '', |
| 470 | + 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| 471 | + 'errmsg'=> 'named_conf_local_path_error_empty'), |
| 472 | + ), |
| 473 | + 'value' => '', |
| 474 | + 'width' => '40', |
| 475 | + 'maxlength' => '255' |
| 476 | + ), |
| 477 | + ################################## |
| 478 | + # ENDE Datatable fields |
| 479 | + ################################## |
| 480 | + ) |
| 481 | +); |
| 482 | + |
414 | 483 | $form["tabs"]['fastcgi'] = array ( |
415 | 484 | 'title' => "FastCGI", |
416 | 485 | 'width' => 80, |
|
0 commit comments