https://github.com/PressForward/pressforward
Raw File
Tip revision: 64a1f927823f8d6ff72e73f38714007ba4941a44 authored by Aram Zucker-Scharff on 10 August 2016, 03:48:12 UTC
uptick
Tip revision: 64a1f92
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