https://github.com/PressForward/pressforward
Raw File
Tip revision: f87eb54ee570903418f2fa498f2d5240363ccc5b authored by Aram Zucker-Scharff on 12 October 2016, 18:21:46 UTC
Update pressforward.php
Tip revision: f87eb54
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