load($AMDAINTERNALDIR."/ParamTemplateList.xml"); $paramTemplates = $templateXml->getElementsByTagName('paramTemplate'); if (!is_dir($PARAMTEMPLATEDIR)) mkdir("$PARAMTEMPLATEDIR"); foreach ($paramTemplates as $template) { $paramId = $template->getAttribute('paramId'); $fileName = $template->getAttribute('fileName'); // for spase-list params if (file_exists("$NEWMETA/final/$paramId.xml")) { echo "Template ".$paramId.PHP_EOL; $from = "$NEWMETA/final/$paramId.xml"; $to = "$PARAMTEMPLATEDIR/$fileName.xml"; copy($from, $to); unlink("$NEWMETA/final/$paramId.xml"); } // for internal params if (file_exists("$AMDAINTERNALDIR/INTERNAL_PARAM_DEF/$paramId.xml")) { echo "Template ".$paramId.PHP_EOL; $from = "$AMDAINTERNALDIR/INTERNAL_PARAM_DEF/$paramId.xml"; $to = "$PARAMTEMPLATEDIR/$fileName.xml"; copy($from,$to); } } ?>