https://github.com/PressForward/pressforward
Raw File
Tip revision: e95035b9e70687c8652595f173be68ac5b0d87a6 authored by Aram Zucker-Scharff on 11 December 2017, 21:50:19 UTC
Uptick version info to 5.0.0
Tip revision: e95035b
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