| @@ -294,8 +294,56 @@ | ||
| 294 | 294 | return Merchant_Select2_Choices::get_user_roles_select2_choices(); |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | /** |
| 298 | + * Get weekday choices, Monday first, keyed by day name. | |
| 299 | + * | |
| 300 | + * @since 2.3.2 | |
| 301 | + * @see Merchant_Select2_Choices::get_weekday_choices() | |
| 302 | + * | |
| 303 | + * @return array Day name => translated label. | |
| 304 | + */ | |
| 305 | + public static function get_weekday_choices() { | |
| 306 | + return Merchant_Select2_Choices::get_weekday_choices(); | |
| 307 | + } | |
| 308 | + | |
| 309 | + /** | |
| 310 | + * Get shipping zone choices for Select2. | |
| 311 | + * | |
| 312 | + * @since 2.3.2 | |
| 313 | + * @see Merchant_Select2_Choices::get_shipping_zone_select2_choices() | |
| 314 | + * | |
| 315 | + * @return array Formatted zone choices. | |
| 316 | + */ | |
| 317 | + public static function get_shipping_zone_select2_choices() { | |
| 318 | + return Merchant_Select2_Choices::get_shipping_zone_select2_choices(); | |
| 319 | + } | |
| 320 | + | |
| 321 | + /** | |
| 322 | + * Get registered shipping method choices for Select2. | |
| 323 | + * | |
| 324 | + * @since 2.3.2 | |
| 325 | + * @see Merchant_Select2_Choices::get_shipping_method_select2_choices() | |
| 326 | + * | |
| 327 | + * @return array Formatted method choices. | |
| 328 | + */ | |
| 329 | + public static function get_shipping_method_select2_choices() { | |
| 330 | + return Merchant_Select2_Choices::get_shipping_method_select2_choices(); | |
| 331 | + } | |
| 332 | + | |
| 333 | + /** | |
| 334 | + * Get enabled payment gateway choices for Select2. | |
| 335 | + * | |
| 336 | + * @since 2.3.2 | |
| 337 | + * @see Merchant_Select2_Choices::get_payment_gateway_select2_choices() | |
| 338 | + * | |
| 339 | + * @return array Formatted gateway choices. | |
| 340 | + */ | |
| 341 | + public static function get_payment_gateway_select2_choices() { | |
| 342 | + return Merchant_Select2_Choices::get_payment_gateway_select2_choices(); | |
| 343 | + } | |
| 344 | + | |
| 345 | + /** | |
| 298 | 346 | * Get customer user choices for Select2. |
| 299 | 347 | * |
| 300 | 348 | * @since 1.9.3 |
| 301 | 349 | * @see Merchant_Select2_Choices::get_customers_select2_choices() |