'input',// type de saisie 'options' => array( 'nom' => 'attendee', 'label' => _T('seminaire:attendee'), 'sql' => "varchar(256) NOT NULL DEFAULT ''", // declaration sql 'rechercher'=>true, 'defaut' => '', )); $champs['spip_evenements']['origin'] = array( 'saisie' => 'input', 'options' => array( 'nom' => 'origin', // nom sql 'label' => _T('seminaire:origin'), 'sql' => "varchar(256) NOT NULL DEFAULT ''", // declaration sql 'rechercher'=>true, 'defaut' => '', )); $champs['spip_evenements']['notes'] = array( 'saisie' => 'textarea', 'options' => array( 'nom' => 'notes', // nom sql 'label' => _T('seminaire:notes'), 'sql' => "text NOT NULL DEFAULT ''", // declaration sql 'rechercher'=>true, 'defaut' => '', 'rows' => 4, 'traitements' => '_TRAITEMENT_RACCOURCIS', 'class' =>'inserer_barre_edition', )); return $champs; } ?>