size=25; $iclocale=new ISelect('clocale'); $iclocale->value=array( array("value"=>1,"label"=>"Activé"), array("value"=>0,"label"=>"Désactivé") ); $iclocale->selected=1; $icpath=new IText("cpath",$cpath); $icpath->size=30; $icuser=new IText('cuser',$cuser); $icpasswd=new IText('cpasswd',$cpasswd); $icport=new IText("cport",$cport); /* * For version MONO */ $smulti=new ICheckBox('multi'); $smulti->javascript=' onchange="show_dbname(this)" '; $icdbname=new IText('cdbname'); require 'template_config_form.php'; } /*!\brief create the config file */ function config_file_create($p_array,$from_setup=1,$p_os=1) { extract ($p_array); $add=($from_setup==1)?'..'.DIRECTORY_SEPARATOR:''; $hFile= fopen($add.'..'.DIRECTORY_SEPARATOR.'include'.DIRECTORY_SEPARATOR.'config.inc.php','w'); fputs($hFile,''); fclose($hFile); }