Compare commits

...

14 commits

Author SHA1 Message Date
bd47dda496 Merge pull request 'Add_Git_Notification' (#23) from Add_Git_Notification into develop
Reviewed-on: #23
2024-11-12 19:05:05 +00:00
0b3eae20a6 FEAT: Adds git messages on the bottom of the website 2024-11-12 20:04:10 +01:00
ab4ebe93a3 Merge pull request 'Improves game importer' (#16) from develop into master
All checks were successful
/ build (push) Successful in 36s
Reviewed-on: #16
2024-11-08 13:49:56 +00:00
5e77ba32c1 Merge pull request 'Made fromWhere nullable' (#15) from develop into master
All checks were successful
/ build (push) Successful in 35s
Reviewed-on: #15
2024-11-08 12:50:59 +00:00
07315422d3 Merge pull request 'Specify php version for proxy gen' (#14) from develop into master
All checks were successful
/ build (push) Successful in 34s
Reviewed-on: #14
2024-11-07 21:52:34 +00:00
296dd9730d Merge pull request 'Adds proxy generation as own container' (#13) from develop into master
Some checks failed
/ build (push) Failing after 36s
Reviewed-on: #13
2024-11-07 21:50:54 +00:00
4648507cdd Merge pull request 'Removed final from entity classes' (#12) from develop into master
All checks were successful
/ build (push) Successful in 34s
Reviewed-on: #12
2024-11-07 21:45:56 +00:00
e5b60e410d Merge pull request 'Fixes entrypoint for PHP' (#11) from develop into master
All checks were successful
/ build (push) Successful in 34s
Reviewed-on: #11
2024-11-07 21:44:04 +00:00
08142c5796 Merge pull request 'Adds proxies for doctrine on run' (#10) from develop into master
All checks were successful
/ build (push) Successful in 34s
Reviewed-on: #10
2024-11-07 21:38:01 +00:00
6c9c51d66d Merge pull request 'Removes writing to the ob if not expected' (#9) from develop into master
All checks were successful
/ build (push) Successful in 37s
Reviewed-on: #9
2024-11-07 21:25:56 +00:00
8a24f5b1cc Merge pull request 'Remove blocking exception' (#8) from develop into master
All checks were successful
/ build (push) Successful in 35s
Reviewed-on: #8
2024-11-07 21:19:38 +00:00
9e12deca4a Merge pull request 'Adds when error gets called' (#7) from develop into master
All checks were successful
/ build (push) Successful in 35s
Reviewed-on: #7
2024-11-07 21:16:02 +00:00
22d87b773d Merge pull request 'Adds loggin' (#6) from develop into master
All checks were successful
/ build (push) Successful in 35s
Reviewed-on: #6
2024-11-07 21:05:42 +00:00
aec0aa19d1 Merge pull request 'develop' (#5) from develop into master
All checks were successful
/ build (push) Successful in 37s
Reviewed-on: #5
2024-11-07 20:42:57 +00:00
2 changed files with 22 additions and 12 deletions

View file

@ -45,5 +45,16 @@ $resource = $resources->getResource($resourceEntry);
<span class="h1">PROTOTYPE / POC</span>
</div>
<div class="position-fixed bottom-0 start-0 m-3 fs-6">
<a href="https://git.php.fail/neintonine/gamesshop/issues/new" class="nav-link text-muted mb-3">
<i class="fa-solid fa-bug fa-xl me-3"></i>
You found a bug? Please report it.
</a>
<a href="https://git.php.fail/neintonine/gamesshop" class="nav-link text-muted">
<i class="fa-brands fa-git-alt me-3 fa-xl"></i>
Interested to help? Checkout the git repository.
</a>
</div>
</body>
</html>

View file

@ -29,17 +29,13 @@ $currentPermission = $activeUser === null ? UserPermission::NONE : $activeUser->
}
?>
<li class="nav-link">
<a href="<?= $header->link ?>" class="nav-link"><?= $header->title ?></a>
</li>
<?php endforeach; ?>
</ul>
<?= $this->insert('layout/accountDisplay'); ?>
</div>
</div>
<div class="d-flex mode-switch me-3">
<div class="d-flex mode-switch me-4">
<button title="Use dark mode" id="dark" class="btn btn-sm btn-default text-secondary">
<i class="fa-regular fa-moon"></i>
</button>
@ -50,4 +46,7 @@ $currentPermission = $activeUser === null ? UserPermission::NONE : $activeUser->
<i class="fa-solid fa-display"></i>
</button>
</div>
<?= $this->insert('layout/accountDisplay'); ?>
</div>
</div>
</nav>