|
322 | 322 | 'rows' => '', |
323 | 323 | 'cols' => '' |
324 | 324 | ), |
| 325 | + 'default_xmppserver' => array ( |
| 326 | + 'datatype' => 'INTEGER', |
| 327 | + 'formtype' => 'SELECT', |
| 328 | + 'default' => '1', |
| 329 | + 'datasource' => array ( 'type' => 'CUSTOM', |
| 330 | + 'class'=> 'custom_datasource', |
| 331 | + 'function'=> 'client_servers' |
| 332 | + ), |
| 333 | + 'value' => '', |
| 334 | + 'name' => 'default_xmppserver' |
| 335 | + ), |
| 336 | + 'xmpp_servers' => array ( |
| 337 | + 'datatype' => 'VARCHAR', |
| 338 | + 'formtype' => 'MULTIPLE', |
| 339 | + 'separator' => ',', |
| 340 | + 'default' => '1', |
| 341 | + 'datasource' => array ( 'type' => 'CUSTOM', |
| 342 | + 'class'=> 'custom_datasource', |
| 343 | + 'function'=> 'client_servers' |
| 344 | + ), |
| 345 | + 'validators' => array ( |
| 346 | + 0 => array ( 'type' => 'CUSTOM', |
| 347 | + 'class' => 'validate_client', |
| 348 | + 'function' => 'check_used_servers', |
| 349 | + 'errmsg'=> 'xmpp_servers_used'), |
| 350 | + ), |
| 351 | + 'value' => '', |
| 352 | + 'name' => 'xmpp_servers' |
| 353 | + ), |
| 354 | + 'limit_xmpp_domain' => array( |
| 355 | + 'datatype' => 'INTEGER', |
| 356 | + 'formtype' => 'TEXT', |
| 357 | + 'validators' => array ( 0 => array ( 'type' => 'ISINT', |
| 358 | + 'errmsg'=> 'limit_xmpp_domain_error_notint'), |
| 359 | + ), |
| 360 | + 'default' => '-1', |
| 361 | + 'value' => '', |
| 362 | + 'separator' => '', |
| 363 | + 'width' => '10', |
| 364 | + 'maxlength' => '10', |
| 365 | + 'rows' => '', |
| 366 | + 'cols' => '' |
| 367 | + ), |
| 368 | + 'limit_xmpp_user' => array( |
| 369 | + 'datatype' => 'INTEGER', |
| 370 | + 'formtype' => 'TEXT', |
| 371 | + 'validators' => array ( 0 => array ( 'type' => 'ISINT', |
| 372 | + 'errmsg'=> 'limit_xmpp_user_error_notint'), |
| 373 | + ), |
| 374 | + 'default' => '-1', |
| 375 | + 'value' => '', |
| 376 | + 'separator' => '', |
| 377 | + 'width' => '10', |
| 378 | + 'maxlength' => '10', |
| 379 | + 'rows' => '', |
| 380 | + 'cols' => '' |
| 381 | + ), |
| 382 | + 'limit_xmpp_muc' => array( |
| 383 | + 'datatype' => 'VARCHAR', |
| 384 | + 'formtype' => 'CHECKBOX', |
| 385 | + 'default' => 'n', |
| 386 | + 'value' => array(0 => 'n', 1 => 'y') |
| 387 | + ), |
| 388 | + 'limit_xmpp_anon' => array( |
| 389 | + 'datatype' => 'VARCHAR', |
| 390 | + 'formtype' => 'CHECKBOX', |
| 391 | + 'default' => 'n', |
| 392 | + 'value' => array(0 => 'n', 1 => 'y') |
| 393 | + ), |
| 394 | + 'limit_xmpp_vjud' => array( |
| 395 | + 'datatype' => 'VARCHAR', |
| 396 | + 'formtype' => 'CHECKBOX', |
| 397 | + 'default' => 'n', |
| 398 | + 'value' => array(0 => 'n', 1 => 'y') |
| 399 | + ), |
| 400 | + 'limit_xmpp_proxy' => array( |
| 401 | + 'datatype' => 'VARCHAR', |
| 402 | + 'formtype' => 'CHECKBOX', |
| 403 | + 'default' => 'n', |
| 404 | + 'value' => array(0 => 'n', 1 => 'y') |
| 405 | + ), |
| 406 | + 'limit_xmpp_status' => array( |
| 407 | + 'datatype' => 'VARCHAR', |
| 408 | + 'formtype' => 'CHECKBOX', |
| 409 | + 'default' => 'n', |
| 410 | + 'value' => array(0 => 'n', 1 => 'y') |
| 411 | + ), |
| 412 | + 'limit_xmpp_pastebin' => array( |
| 413 | + 'datatype' => 'VARCHAR', |
| 414 | + 'formtype' => 'CHECKBOX', |
| 415 | + 'default' => 'n', |
| 416 | + 'value' => array(0 => 'n', 1 => 'y') |
| 417 | + ), |
| 418 | + 'limit_xmpp_httparchive' => array( |
| 419 | + 'datatype' => 'VARCHAR', |
| 420 | + 'formtype' => 'CHECKBOX', |
| 421 | + 'default' => 'n', |
| 422 | + 'value' => array(0 => 'n', 1 => 'y') |
| 423 | + ), |
325 | 424 | 'default_webserver' => array ( |
326 | 425 | 'datatype' => 'INTEGER', |
327 | 426 | 'formtype' => 'SELECT', |
|
0 commit comments