Clockwork\Web\Web::getIframe PHP Метод

getIframe() публичный Метод

Return the html code for embedded Clockwork app
public getIframe ( )
    public function getIframe()
    {
        ob_start();
        $currentRequestId = $this->currentRequestId;
        include __DIR__ . '/public/iframe.html';
        return ob_get_clean();
    }