PHP code example of norman-huth / nova-iframe-popup

1. Go to this page and download the library: Download norman-huth/nova-iframe-popup library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

norman-huth / nova-iframe-popup example snippets



IframePopup::make(__('Url'), 'url'),

IframePopup::make('', 'url', function () {
    return 'https://huth.it';
})->icon('eye')->sufText('Help'),

IframePopup::make(__('Url'), 'url')->icon('eye'),

IframePopup::make(__('Url'), 'url')->faIcon('fa-solid fa-arrow-up-right-from-square'),

IframePopup::make(__('Url'), 'url')
    ->icon('')
    ->preText(__('Show me')),

IframePopup::make(__('Url'), 'url')->preText(__('Click me')),

IframePopup::make(__('Url'), 'url')->sufText(__('Help')),

IframePopup::make(__('Url'), 'url')->btnClass('btn-primary'),

IframePopup::make(__('Url'), 'url')->containerClass('text-center'),

IframePopup::make(__('Url'), 'url')->containerClassIndex('text-center'),

IframePopup::make(__('Url'), 'url')->containerClassDetail('text-center'),

IframePopup::make(__('Url'), 'url')->containerClassForm('text-center'),