Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
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.