2011-12-13 10:15:42 +00:00
|
|
|
<?php
|
2012-08-17 10:20:55 +00:00
|
|
|
class Handler_Protected extends Handler {
|
2011-12-13 10:15:42 +00:00
|
|
|
|
2021-11-13 14:05:43 +00:00
|
|
|
function before(string $method): bool {
|
2021-02-12 18:24:49 +00:00
|
|
|
return parent::before($method) && !empty($_SESSION['uid']);
|
2011-12-13 10:15:42 +00:00
|
|
|
}
|
|
|
|
}
|