"Welcome to Fucking Fipamo", "status" => false, ]; $html = $view->fetch($template, $pageOptions); $location = "../content/test.html"; if (!is_file($location)) { file_put_contents($location, $html); } else { ($new = fopen($location, "w")) or die("Unable to open file!"); fwrite($new, $html); fclose($new); } $result = [ "message" => "Site published. GOOD EFFORT", "type" => "TASK_NONE", ]; break; default: $result = [ "message" => "Hm, no task. That's unfortunate", "type" => "TASK_NONE", ]; break; } return $result; } }