Example #1
0
        $newtable->_attributs[$i]->nature_form_extjs = 'radio';
        $newtable->_attributs[$i]->liste_pour_radio = explode(',', $_POST['radio_'.$newtable->_attributs[$i]->nom]);
        $newtable->_attributs[$i]->valeur_pour_radio = explode(',', $_POST['radio_val_'.$newtable->_attributs[$i]->nom]);
    }
    $newtable->_attributs[$i]->taille=$_POST['size_'.$newtable->_attributs[$i]->nom];
    $newtable->_attributs[$i]->label=$_POST['label_'.$newtable->_attributs[$i]->nom];
    if ($_POST['afficher_'.$newtable->_attributs[$i]->nom]=='') $newtable->_attributs[$i]->afficher_sur_liste=false;
    if ($_POST['relations_'.$newtable->_attributs[$i]->nom]!='') {
        $table = new table(array('nom'=>$_POST['table_'.$newtable->_attributs[$i]->nom], 'nom_cle'=>'', 'base'=>$base));
        $table->recuperation_auto();
        $newtable->_attributs[$i]->etrangere_table=$table;
    }
}

$base->ajouter_table($newtable);

if ($option == 'aucun') {
    $base->aucun_generer();
    archiver($base->nom, dirname(__FILE__)."/../../sortie/aucun", false, $_POST['d_host'], $_POST['d_driver'],null ,$newtable->nom);
}
if ($option == 'dojo') {
    $base->dojo_generer();
    archiver($base->nom, dirname(__FILE__)."/../../sortie/dojo", false, $_POST['d_host'], $_POST['d_driver'],null ,$newtable->nom);
}
if ($option == 'extjs') {
    $base->extjs_generer();
    archiver($base->nom, dirname(__FILE__)."/../../sortie/extjs", false, $_POST['d_host'], $_POST['d_driver'],null ,$newtable->nom);
}

header("Location: ../../archives.php");
?>
Example #2
0
require_once '../fonctions.php';
require_once '../classes/attribut.php';
require_once '../classes/table.php';
require_once '../classes/base.php';

$prefixe_table = $_POST['d_prefixe_table'];
$id_tables = $_POST['d_id_tables'];
$id_externe = $_POST['d_id_externe'];
$position_id_externe = $_POST['d_id_externe_position'];
$option = $_POST['option'];

$infos_id_externe = array('position'=>$position_id_externe ,'chaine'=>$id_externe);

$base = new base(array('nom'=>$_POST['d_name'],'prefixe_tables'=>$prefixe_table));
$base->infos_cle_etrangere = $infos_id_externe;
$base->nom_cle_tables = $id_tables;
$base->recuperation_auto();

if ($option == 'aucun') {
    $base->aucun_generer();
    archiver($base->nom, dirname(__FILE__)."/../../sortie/aucun", true, $_POST['d_host'], $_POST['d_driver'], $nbre_table=count($base->tables));
}
if ($option == 'dojo') {
    $base->dojo_generer();
    archiver($base->nom, dirname(__FILE__)."/../../sortie/dojo", true, $_POST['d_host'], $_POST['d_driver'], $nbre_table=count($base->tables));
}
if ($option == 'extjs') {
    $base->extjs_generer();
    archiver($base->nom, dirname(__FILE__)."/../../sortie/extjs", true, $_POST['d_host'], $_POST['d_driver'], $nbre_table=count($base->tables));
}
?>