Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
use Stimulsoft\Designer\StiDesigner;
use Stimulsoft\Report\StiReport;
$designer = new StiDesigner();
// Redirect component events to the handler controller
$designer->handler->url = "/handler";
$designer->onSaveReport = true;
$report = new StiReport();
$report->loadFile("reports/SimpleList.mrt");
$designer->report = $report;
$designer->printHtml();Setting onSaveReport = true makes the designer send the edited template to the /handler route, where the controller can persist it. As with the viewer, printHtml() renders the designer interface as a prepared HTML page.