https://github.com/PressForward/pressforward
Raw File
Tip revision: 0ebba77a5a54f546b188695b852394197f89d7cc authored by Aram Zucker-Scharff on 21 June 2016, 01:25:55 UTC
Merge pull request #790 from PressForward/3.9.x-recore
Tip revision: 0ebba77
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