'📢 ' . $ch['title'], 'url' => $ch['url'] ]]; } $rows[] = [[ 'text' => '✅ عضو شدم', 'callback_data' => $callback_data ]]; return ['inline_keyboard' => $rows]; } function send_join_prompt($chat_id, $not_joined_channels, $pending_code = null) { $list = ''; foreach ($not_joined_channels as $ch) { $list .= '• ' . $ch['title'] . "\n"; } $text = sprintf(TEXT_NOT_JOINED, rtrim($list, "\n")); $callback_data = $pending_code ? ('check_join:' . $pending_code) : 'check_join'; $keyboard = build_join_keyboard($not_joined_channels, $callback_data); tg_send_message($chat_id, $text, $keyboard); }