https://github.com/PressForward/pressforward
Raw File
Tip revision: 1785592411a085a7e2306ee4fc0a185b038744a9 authored by Aram Zucker-Scharff on 23 August 2016, 17:30:45 UTC
Patch user nom-count
Tip revision: 1785592
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