| 1 |
<?php |
| 2 |
/** |
| 3 |
* @package FireBox |
| 4 |
* @version 3.1.11 Free |
| 5 |
* |
| 6 |
* @author FirePlugins <info@fireplugins.com> |
| 7 |
* @link https://www.fireplugins.com |
| 8 |
* @copyright Copyright © 2026 FirePlugins All Rights Reserved |
| 9 |
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later |
| 10 |
*/ |
| 11 |
|
| 12 |
if (!defined('ABSPATH')) |
| 13 |
{ |
| 14 |
exit; // Exit if accessed directly. |
| 15 |
} |
| 16 |
|
| 17 |
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped -- renders a trusted internal template. |
| 18 |
echo firebox()->renderer->admin->render('pages/settings/integrations', [ |
| 19 |
'integrations' => $this->data->get('integrations', []) |
| 20 |
], true); |
| 21 |
// phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 22 |
|
| 23 |
|