https://github.com/PressForward/pressforward
Raw File
Tip revision: 08bce500e02a453f6ac94c0e255e7d7b76c87e29 authored by Aram Zucker-Scharff on 19 June 2016, 23:35:02 UTC
Assure an empty query for folders with nothing in it.
Tip revision: 08bce50
SystemUsers.php
<?php
namespace PressForward\Interfaces;
interface SystemUsers
{
	public function did_user_nominate($post_id, $user_id);
	public function get_user_option( $option );
	public function current_user_can( $capacity );
	public function user_level( $option_name, $role );
}
back to top