loadFromArray($_POST['stripe']); if (!empty($s->getState())) { file_put_contents($last_json, $s->getJson()); } $s->setClass('simple'); $html_content = $twig->render('templates/overlay-base.twig', ['stripe' => $s]); file_put_contents(OVERLAY_DIR . 'simple.html', $html_content); $s->setClass('team'); $html_content = $twig->render('templates/overlay-base.twig', ['stripe' => $s]); file_put_contents(OVERLAY_DIR . 'team.html', $html_content); $s->setClass('team-ban'); $html_content = $twig->render('templates/overlay-base.twig', ['stripe' => $s]); file_put_contents(OVERLAY_DIR . 'team-ban.html', $html_content); } else { if (file_exists($last_json)) { $raw_json = file_get_contents($last_json); $stateArray = json_decode($raw_json, true); if (is_array($stateArray)) { $s->loadFromArray($stateArray); } } } $var = [ 'stripe' => $s, 'operators' => $s->getOperators(), 'post' => !empty($_POST['stripe']) ]; echo $twig->render('templates/admin/form.twig', $var);