| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/public_html/wp-content/plugins/wp-popups-lite/src/includes/templates/ |
Upload File : |
<?php
/**
* Blank form template.
*
* @package WPPopups
* @author WPPopups
* @since 2.0.0
* @license GPL-2.0+
* @copyright Copyright (c) 2016, WP Popups LLC
*/
class WPPopups_Template_Blank extends WPPopups_Template {
/**
* Primary class constructor.
*
* @since 2.0.0
*/
public function init() {
$this->name = esc_html__( 'Blank Popup', 'wp-popups-lite' );
$this->slug = 'blank';
$this->description = esc_html__( 'The blank popup allows you to create any style you want from scratch.', 'wp-popups-lite' );
$this->includes = '';
$this->icon = '';
$this->modal = '';
$this->core = true;
$this->data = [
'colors' => [
'overlay_color' => 'rgba(0,0,0,0.5)',
'bg_color' => 'rgb(255, 255, 255)',
],
];
}
}
new WPPopups_Template_Blank();