https://github.com/PressForward/pressforward
Raw File
Tip revision: 7af7a5a1c2ffc59e2326c0871f460c04a33108ef authored by dependabot[bot] on 07 May 2021, 10:13:21 UTC
Bump handlebars from 4.0.10 to 4.7.7 in /assets/stats-app
Tip revision: 7af7a5a
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