8 lines
136 B
PHP
8 lines
136 B
PHP
|
<?php
|
||
|
class Handler_Protected extends Handler {
|
||
|
|
||
|
function before($method) {
|
||
|
return parent::before($method) && $_SESSION['uid'];
|
||
|
}
|
||
|
}
|