PluginProbe
Paid Membership Plugin, Ecommerce, User Registration Form, Login Form, User Profile & Restrict Content – ProfilePress / 4.17.3
Paid Membership Plugin, Ecommerce, User Registration Form, Login Form, User Profile & Restrict Content – ProfilePress v4.17.3
4.17.3 4.17.2 4.17.1 4.17.0 4.16.19 4.16.18 4.16.17 4.16.16 trunk 1.0 1.0.1 1.0.2 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5a 1.1.6 1.1.7 1.2 1.2.1 1.2.2 1.2.3 All 220 releases
wp-user-avatar / src / Membership / Models / Order / OrderMode.php
OrderMode.php
22 lines 463 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ProfilePress\Core\Membership\Models\Order;
4
5 class OrderMode
6 {
7 const LIVE = 'live';
8 const TEST = 'test';
9
10 public static function get_all()
11 {
12 return apply_filters('ppress_order_modes', [
13 self::LIVE => __('Live', 'wp-user-avatar'),
14 self::TEST => __('Test', 'wp-user-avatar'),
15 ]);
16 }
17
18 public static function get_label($status)
19 {
20 return self::get_all()[$status] ?? '';
21 }
22 }