<?php
namespace carabi_cms;

/**
 * Description of class
 *
 * @author sasha
 */
class pagehandler_homepage extends \SimplePagehandler {
	public function process() {
		if (\lib_cms::hasPermission($this->user(), \lib_cms::PERMISSION_ANY)) {
			header("Location: " . \lib_cms::CMS_ROOT() . "/desktop");
		} else {
			$this->renderDefault();
		}
	}
	
}
?>
