Initial import of space_profiles module

This commit is contained in:
Kelin Rescue Hub
2026-04-04 13:11:50 -04:00
commit 87a59e5a0a
35 changed files with 1627 additions and 0 deletions

10
views/public/view.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
/* @var \humhub\modules\space\models\Space $space */
/* @var \humhub\modules\space_profiles\models\SpaceProfile|null $profile */
echo $this->render('@space_profiles/views/profile/view', [
'space' => $space,
'profile' => $profile,
'isPublicRoute' => true,
]);