20 lines
316 B
PHP
20 lines
316 B
PHP
<?php
|
|
/**
|
|
* Popmake popup fields
|
|
*
|
|
* @package PopupMaker
|
|
* @copyright Copyright (c) 2024, Code Atlantic LLC
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Popmake_Popup_Fields Class
|
|
*/
|
|
class Popmake_Popup_Fields extends Popmake_Fields {
|
|
public $field_prefix = 'popup_';
|
|
}
|