summaryrefslogtreecommitdiff
path: root/classes/handler/protected.php
blob: 8e9e5ca1dd75d446054a72996d756096bcba302b (plain)
1
2
3
4
5
6
7
<?php
class Handler_Protected extends Handler {

	function before($method) {
		return parent::before($method) && !empty($_SESSION['uid']);
	}
}