https://github.com/PressForward/pressforward
Revision 3b2e0f8c05add8210fde7e4cb800ce2fb1941085 authored by Aram Zucker-Scharff on 22 June 2016, 13:37:47 UTC, committed by GitHub on 22 June 2016, 13:37:47 UTC
1 parent ffce260
Raw File
Tip revision: 3b2e0f8c05add8210fde7e4cb800ce2fb1941085 authored by Aram Zucker-Scharff on 22 June 2016, 13:37:47 UTC
Noting updated compatibility with latest WP ver.
Tip revision: 3b2e0f8
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