- Created DDHH_JM_Scheduler class with static setup_hooks() method - Added schedule_mentor_notification_batch() method with 50-user batching - Uses as_enqueue_async_action() with unique flag and email-notifications group - Initialized in main plugin file and job manager class - Ready for Phase 06-03 to register async action callbacks
139 lines
3.4 KiB
PHP
139 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* User preferences management
|
|
*
|
|
* @package DDHH_Job_Manager
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* User Preferences Class
|
|
*
|
|
* Manages user preferences including notification opt-in.
|
|
*/
|
|
class DDHH_JM_User_Preferences {
|
|
|
|
/**
|
|
* User meta key for notification preference
|
|
*/
|
|
const META_KEY_NOTIFY = 'ddhh_jm_notify_new_jobs';
|
|
|
|
/**
|
|
* Nonce action for preference saving
|
|
*/
|
|
const NONCE_ACTION = 'ddhh_jm_save_user_preferences';
|
|
|
|
/**
|
|
* Setup hooks
|
|
*/
|
|
public static function setup_hooks() {
|
|
// Display notification toggle on user profile
|
|
add_action( 'show_user_profile', array( __CLASS__, 'show_notification_toggle' ) );
|
|
add_action( 'edit_user_profile', array( __CLASS__, 'show_notification_toggle' ) );
|
|
|
|
// Save notification preference
|
|
add_action( 'personal_options_update', array( __CLASS__, 'save_notification_preference' ) );
|
|
add_action( 'edit_user_profile_update', array( __CLASS__, 'save_notification_preference' ) );
|
|
}
|
|
|
|
/**
|
|
* Display notification toggle on user profile
|
|
*
|
|
* @param WP_User $user User object.
|
|
*/
|
|
public static function show_notification_toggle( $user ) {
|
|
// Only show for subscribers (mentors)
|
|
if ( ! in_array( 'subscriber', $user->roles, true ) ) {
|
|
return;
|
|
}
|
|
|
|
// Get current preference
|
|
$notify_enabled = get_user_meta( $user->ID, self::META_KEY_NOTIFY, true );
|
|
|
|
// Create nonce for security
|
|
wp_nonce_field( self::NONCE_ACTION, 'ddhh_jm_user_preferences_nonce' );
|
|
|
|
?>
|
|
<h2>Benachrichtigungen</h2>
|
|
<table class="form-table">
|
|
<tr>
|
|
<th scope="row">Stellenangebote</th>
|
|
<td>
|
|
<label>
|
|
<input
|
|
type="checkbox"
|
|
name="ddhh_jm_notify_new_jobs"
|
|
value="1"
|
|
<?php checked( $notify_enabled, '1' ); ?>
|
|
/>
|
|
Benachrichtigungen über neue Stellenangebote erhalten
|
|
</label>
|
|
<p class="description">
|
|
Sie erhalten eine E-Mail, wenn ein neues Stellenangebot veröffentlicht wird.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Save notification preference
|
|
*
|
|
* @param int $user_id User ID.
|
|
*/
|
|
public static function save_notification_preference( $user_id ) {
|
|
// Verify nonce
|
|
if ( ! isset( $_POST['ddhh_jm_user_preferences_nonce'] ) ||
|
|
! wp_verify_nonce( $_POST['ddhh_jm_user_preferences_nonce'], self::NONCE_ACTION ) ) {
|
|
return;
|
|
}
|
|
|
|
// Check user capabilities
|
|
if ( ! current_user_can( 'edit_user', $user_id ) ) {
|
|
return;
|
|
}
|
|
|
|
// Get user to verify they're a subscriber
|
|
$user = get_userdata( $user_id );
|
|
if ( ! $user || ! in_array( 'subscriber', $user->roles, true ) ) {
|
|
return;
|
|
}
|
|
|
|
// Save preference (checkbox pattern: isset = '1', not set = '0')
|
|
$notify_value = isset( $_POST['ddhh_jm_notify_new_jobs'] ) ? '1' : '0';
|
|
update_user_meta( $user_id, self::META_KEY_NOTIFY, $notify_value );
|
|
}
|
|
|
|
/**
|
|
* Get array of user IDs who have opted in to notifications
|
|
*
|
|
* @return array Array of user IDs.
|
|
*/
|
|
public static function get_opted_in_mentors() {
|
|
$args = array(
|
|
'role' => 'subscriber',
|
|
'meta_query' => array(
|
|
array(
|
|
'key' => self::META_KEY_NOTIFY,
|
|
'value' => '1',
|
|
),
|
|
),
|
|
'fields' => 'ID',
|
|
);
|
|
|
|
$user_query = new WP_User_Query( $args );
|
|
$user_ids = $user_query->get_results();
|
|
|
|
// Log if query fails
|
|
if ( empty( $user_ids ) && ! is_array( $user_ids ) ) {
|
|
error_log( 'DDHH Job Manager: Failed to query opted-in mentors' );
|
|
return array();
|
|
}
|
|
|
|
return is_array( $user_ids ) ? $user_ids : array();
|
|
}
|
|
}
|