コード例 #1
0
/**
 * information about inactive / deleted users
 *
 * @param $user_id
 */
function remark_inactive($user_id)
{
    if ($user_id > 0) {
        if (!user_exists($user_id) || !userprojectapi::check_user_id_is_enabled($user_id)) {
            echo plugin_lang_get('remark_IAUser') . '<br/>' . PHP_EOL;
        }
    }
}