Skip to content

Instantly share code, notes, and snippets.

@devfabriciobr
Created November 18, 2025 00:49
Show Gist options
  • Select an option

  • Save devfabriciobr/aa905d7fc67ecd11313a2ffe1515451a to your computer and use it in GitHub Desktop.

Select an option

Save devfabriciobr/aa905d7fc67ecd11313a2ffe1515451a to your computer and use it in GitHub Desktop.
PREVIEW PDF IFRAME
<?php
$element_preview = new BElement('div');
public function onShow($param = null)
{
$iframe = new TElement('iframe');
$iframe->src = 'https://pdfobject.com/pdf/sample.pdf';
$iframe->type = 'application/pdf';
$iframe->style = "width: 100%; height:700px";
$this->element_preview->add($iframe);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment