A) احمد ندیم قاسمی
B) رشید امجد
C) غلام عباس
D) انتظار حسین
function mcq_record_mode_controller() { // Capability check if (!current_user_can('manage_options')) { wp_die(__('You do not have permission to access this page.', 'mcq-test-creator')); } // Nonce and test ID $test_id = isset($_GET['test_id']) ? intval($_GET['test_id']) : 0; $nonce = isset($_GET['nonce']) ? $_GET['nonce'] : ''; if (!$test_id || !wp_verify_nonce($nonce, 'mcq_record_mode_' . $test_id)) { wp_die(__('Invalid security token.', 'mcq-test-creator')); } // Build presentation data $presentation = mcq_build_presentation($test_id); if (!$presentation) { wp_die(__('No questions found in this test.', 'mcq-test-creator')); } // Render the view, capture output, and exit cleanly (no admin chrome) ob_start(); require_once MCQ_PLUGIN_DIR . 'views/record-mode.php'; $html = ob_get_clean(); wp_die($html); }
A) احمد ندیم قاسمی
B) رشید امجد
C) غلام عباس
D) انتظار حسین