* @link https://www.fireplugins.com * @copyright Copyright © 2024 FirePlugins All Rights Reserved * @license GNU GPLv3 or later */ namespace FireBox\Core\Helpers; if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } class Actions { /** * Runs the actions. * * @return void */ public static function run() { $actions = []; // Initialize Sounds $actions[] = new \FireBox\Core\FB\Actions\Sounds(); // Make actions filterable $actions = apply_filters('firebox/actions/box/edit', $actions); // Run actions new \FireBox\Core\FB\Actions\ActionsBase($actions); } }