https://github.com/PressForward/pressforward
Raw File
Tip revision: e52f60fd2273ee15ccd4ea964d14d93c8ad406a7 authored by Aram Zucker-Scharff on 20 June 2016, 06:47:08 UTC
Merge branch '3.9.x' into 3.9.x-recore
Tip revision: e52f60f
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