https://github.com/PressForward/pressforward
Raw File
Tip revision: bcf68bf2df30e03a5e0269e0bd72fab344788e29 authored by Aram Zucker-Scharff on 26 February 2018, 16:11:23 UTC
Moving function from #987 into the nominate advancemnet step, triggering it on all nominations. Also switching it to support a comma seperated field for multiple emails.
Tip revision: bcf68bf
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