12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- function writeContent ($filetype1, $pathbase, $outputFile, $msgToRegister) {
- global $GROUP, $WRITEMSG, $OVERWRITE;
- $pathbase = "/var/www/html/saw/mod/iassign/ilm_debug/";
- $outputFile = $pathbase . $outputFile;
- if (!is_writable($pathbase)) {
-
-
- print "Erro! Problema de acesso ao servidor! Por favor, avise ao administrador (<tt>$pathbase</tt> nao acessivel para escrita).<br/>";
- exit(0);
- }
-
-
-
-
- if (is_file($outputFile)) {
-
- }
- if (1==1) {
- $fpointer = fopen($outputFile, "w");
- if (!$fpointer) {
- $file_debug .= "Erro: nao foi possivel abrir o roteiro ($outputFile)!<br/>\n";
-
- print "<br/>" . $file_debug . "<br/>\n";
-
- return 0;
- }
- fwrite($fpointer, $msgToRegister . "\n");
-
- fclose($fpointer);
- }
- else {
-
- }
- return 1;
- }
- ?>
|