https://github.com/PressForward/pressforward
Raw File
Tip revision: e2eb7e5be500bae21216bfc296fb0004eb685b31 authored by dependabot[bot] on 12 May 2021, 00:59:54 UTC
Bump merge from 1.2.0 to 1.2.1 in /assets/stats-app
Tip revision: e2eb7e5
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 );
	public function get_current_user();
	public function get_user_meta($user_id, $meta_key, $single = true);
	public function update_user_meta( $user_id, $meta_key, $meta_value, $prev_value );
}
back to top