Implemented Dynamic Items for data to be sent to polled systems based on data in db, like stats/nodelists

This commit is contained in:
2023-12-03 18:18:05 +11:00
parent 8f3d77b04d
commit 1890b66dc7
10 changed files with 366 additions and 4 deletions

12
app/Classes/Dynamic.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App\Classes;
/**
* Dynamic files that are sent to systems during a mailer session
*/
abstract class Dynamic
{
abstract public function __toString(): string;
abstract public function getName(): string;
}