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

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