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

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