nur-sery/wip/schema/input/GetInput.php

36 lines
872 B
PHP
Raw Normal View History

2023-11-09 10:03:35 +04:00
<?php
2024-05-23 08:15:28 +04:00
namespace nur\sery\wip\schema\input;
2023-11-09 10:34:36 +04:00
2023-11-09 10:03:35 +04:00
/**
* Class GetInput: accès à des paramètres de formulaire de type GET uniquement
*
* cette implémentation lit depuis les paramètres de formulaire et écrit dans
* une référence
*/
2023-11-27 18:57:07 +04:00
class GetInput extends FormInput {
2023-12-03 22:44:29 +04:00
function isPresent($key=null): bool {
2023-11-09 10:03:35 +04:00
if ($key === null) return false;
return array_key_exists($key, $_GET);
}
2023-12-03 22:44:29 +04:00
function isAvailable($key=null): bool {
2023-11-28 08:20:33 +04:00
if ($key === null) return false;
if (array_key_exists($key, $_GET)) {
return $this->allowEmpty || $_GET[$key] !== "";
} else {
return false;
}
}
2023-11-09 10:03:35 +04:00
function get($key=null) {
if ($key === null) return null;
2023-11-28 08:20:33 +04:00
if (array_key_exists($key, $_GET)) {
$value = $_GET[$key];
if ($value === "" && !$this->allowEmpty) return null;
return $value;
} else {
return null;
}
2023-11-09 10:03:35 +04:00
}
}