adasd
All checks were successful
Deploy / deploy-staging (push) Successful in 25s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-25 01:08:50 +02:00
parent bd5cb9364c
commit 52879ede31
11 changed files with 103 additions and 35 deletions

View File

@@ -35,4 +35,14 @@ final class AppPaths
{
return self::systemShellRoot($projectRoot) . '/' . trim($shellName, '/');
}
public static function systemAddonsRoot(string $projectRoot): string
{
return rtrim($projectRoot, '/') . '/system/addons';
}
public static function systemAddonPath(string $projectRoot, string $addonName): string
{
return self::systemAddonsRoot($projectRoot) . '/' . trim($addonName, '/');
}
}