Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic positions #114

Merged
merged 6 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"phpmailer/phpmailer": "^6.1",
"laminas/laminas-diactoros": "^2.2",
"laminas/laminas-httphandlerrunner": "^1.1",
"sabre/vobject": "^4.0"
"sabre/vobject": "^4.0",
"michelf/php-markdown": "^2.0"
},
"suggest": {
"ext-apcu": "Caches LDAP results avoiding continuous lookups"
Expand Down
58 changes: 57 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

322 changes: 320 additions & 2 deletions database/database.sql

Large diffs are not rendered by default.

320 changes: 319 additions & 1 deletion database/update/1.sql

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions public/position.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

use WEEEOpen\WEEEHire\PagePosition;
use Laminas\Diactoros\ServerRequestFactory;
use Laminas\HttpHandlerRunner\Emitter\SapiEmitter;

require_once __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'config.php';

$request = ServerRequestFactory::fromGlobals();
$response = (new PagePosition())->handle($request);
(new SapiEmitter())->emit($response);
4 changes: 4 additions & 0 deletions public/weee.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,7 @@ a.disabled {
.hidden {
display: none !important;
}

.autoresize {
resize: none;
}
Loading
Loading