18 lines
322 B
PHP
18 lines
322 B
PHP
<?php
|
|
/**
|
|
* Interface for Settings Integration
|
|
*
|
|
* @package PopupMaker
|
|
* @copyright Copyright (c) 2024, Code Atlantic LLC
|
|
*/
|
|
|
|
interface PUM_Interface_Integration_Settings extends PUM_Interface_Integration {
|
|
|
|
/**
|
|
* @param array $fields
|
|
*
|
|
* @return array
|
|
*/
|
|
public function append_fields( $fields = [] );
|
|
}
|