started work on pmelo

This commit is contained in:
marko
2024-01-13 11:46:16 +01:00
parent 49c7d958cb
commit 881ea6b059
4 changed files with 33 additions and 9 deletions

View File

@@ -27,7 +27,6 @@ function get()
return $wkSqlResponse;
}
authorize();
$wkSqlResponse = get();

View File

@@ -1,9 +1,13 @@
// What to do when the document is loaded.
document.addEventListener('DOMContentLoaded', function () {
// init materialize elements
initModals();
initSidenav();
});
document.addEventListener(
'DOMContentLoaded'
, function () {
// init materialize elements
initModals();
initSidenav();
initSelects();
}
);
function initSidenav() {
var sidenavElements = document.querySelectorAll('.sidenav');

View File

@@ -1,6 +1,4 @@
<?php
require_once 'index.inc.php';
?>
<?php require_once 'index.inc.php'; ?>
<!DOCTYPE html>
<html>
<head>

View File

@@ -325,4 +325,27 @@ SQL;
}
return User::fromDbArray($response[0]);
}
public static function loadFromDbByAttribute(int $attributeId){
$query =
"SELECT DISTINCT" .
" `wkParticipo_Users`.* " .
" FROM `wkParticipo_Users`" .
" JOIN `wkParticipo_user<=>userAttributes`" .
" ON `wkParticipo_user<=>userAttributes`.`userId` = `wkParticipo_Users`.`id`" .
" WHERE `wkParticipo_user<=>userAttributes`.`attributeId` = 4".
" ORDER BY `wkParticipo_Users`.`id` ASC;";
$response = dbConnector::query($query);
// Postprocessing
// - convert the comma separated list into an array
foreach ($response as &$user) {
$user["eMail"] = explode(",", $user["eMail"]);
foreach ($user["eMail"] as &$email) {
$email = trim($email);
}
}
return $response;
}
}