Changing to sqlite and resetting,

This commit is contained in:
calcu1on
2025-08-29 22:07:59 -04:00
parent 2309e31256
commit 63bbb46715
16 changed files with 1617 additions and 1118 deletions

View File

@@ -20,7 +20,6 @@ final class CopyrightBlock extends BlockBase {
*/
public function build(): array {
$year = date('Y');
"<p>&#169; Dan Chadwick {$year}</p>";
$build = [
'#markup' => "<p>&#169; Dan Chadwick {$year}</p>",
];

View File

@@ -30,6 +30,7 @@ class KernelRequestNodePathCheck implements EventSubscriberInterface {
* React to a config object being saved.
*/
public function onRequest(RequestEvent $event): void {
return;
$user = \Drupal::currentUser();
$user_roles = $user->getRoles();
if (!in_array('anonymous', $user_roles)) {