HackmanCMS/lib/project-types/GenericProject.php
2026-05-03 20:56:15 +03:00

9 lines
407 B
PHP

<?php
require_once __DIR__ . '/ProjectTypeBase.php';
class GenericProject extends ProjectTypeBase {
public static function typeSlug(): string { return 'generic'; }
public static function typeName(): string { return 'Generic'; }
public static function typeIcon(): string { return 'bi-folder'; }
public static function description(): string { return 'Generic project directory'; }
}