Ciao vales, in attesa della tua nuova versione, avrei piacere di risolvere il problema anche con l'attuale.
Ho notato che in chrono_contact > allegati_10_modifica > autogenerated c'è questa parte di codice
<?php
$MyForm =& CFChronoForm::getInstance("allegati_10_modifica");
if($MyForm->formparams("dbconnection") == "Yes"){
$user = JFactory::getUser();
$row =& JTable::getInstance("chronoforms_allegati_10", "Table");
srand((double)microtime()*10000);
$inum = "I" . substr(base64_encode(md5(rand())), 0, 16).md5(uniqid(mt_rand(), true));
JRequest::setVar( "recordtime", JRequest::getVar( "recordtime", date("Y-m-d")." - ".date("H:i:s"), "post", "string", "" ));
JRequest::setVar( "ipaddress", JRequest::getVar( "ipaddress", $_SERVER["REMOTE_ADDR"], "post", "string", "" ));
JRequest::setVar( "uid", JRequest::getVar( "uid", $inum, "post", "string", "" ));
JRequest::setVar( "cf_user_id", JRequest::getVar( "cf_user_id", $user->id, "post", "int", "" ));
$post = JRequest::get( "post" , JREQUEST_ALLOWRAW );
if (!$row->bind( $post )) {
JError::raiseWarning(100, $row->getError());
}
if (!$row->store()) {
JError::raiseWarning(100, $row->getError());
}
$MyForm->tablerow["sito_chronoforms_allegati_10"] = $row;
}
?>
se provo ad aggiungere la riga JRequest::setVar( "cod_atto", JRequest::getVar( "atto", "78", "post", "string", "" ));
riesco ad allegare un nuovo documento ma in maniera predefinita all'atto 78 perché specificato da me nella riga di codice, ti chiedo, al posto di quel "78" che parametro va messo per recuperare il cod_atto? Bisogna guardare anche da qualche altra parte?
Grazie in anticipo.