first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace FSVendor;
require_once __DIR__ . '/vendor/autoload.php';
if (!\class_exists('FSVendor\\WPDesk\\Notice\\AjaxHandler')) {
require_once __DIR__ . '/src/WPDesk/Notice/AjaxHandler.php';
}
if (!\class_exists('FSVendor\\WPDesk\\Notice\\Notice')) {
require_once __DIR__ . 'src/WPDesk/Notice/Notice.php';
}
if (!\class_exists('FSVendor\\WPDesk\\Notice\\PermanentDismissibleNotice')) {
require_once __DIR__ . '/src/WPDesk/Notice/PermanentDismissibleNotice.php';
}
if (!\class_exists('FSVendor\\WPDesk\\Notice\\Factory')) {
require_once __DIR__ . '/src/WPDesk/Notice/Factory.php';
}
require_once __DIR__ . '/src/WPDesk/notice-functions.php';