This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/components/Users.php

19 lines
269 B
PHP
Raw Normal View History

2015-03-29 15:54:27 +00:00
<?php
/*
* User Management
*/
namespace Sakura;
class Users {
2015-03-29 17:33:06 +00:00
// Check if a user is logged in
public static function loggedIn() {
// Just return false for now since we don't have a user system yet
return false;
}
2015-03-29 15:54:27 +00:00
}