PluginProbe
Flexible Checkout Fields for WooCommerce – WooCommerce Checkout Manager / 4.1.41
Flexible Checkout Fields for WooCommerce – WooCommerce Checkout Manager v4.1.41
4.1.41 4.1.40 4.1.39 4.1.38 trunk 1.2 1.2.1 1.2.2 1.2.3 1.3 1.3.1 1.3.2 1.3.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6 1.6.1 All 180 releases
flexible-checkout-fields / src / Settings / Tab / AppearanceTab.php
AppearanceTab.php
33 lines 478 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace WPDesk\FCF\Free\Settings\Tab;
4
5 /**
6 * {@inheritdoc}
7 */
8 class AppearanceTab extends TabAbstract {
9
10 const TAB_NAME = 'appearance';
11
12 /**
13 * {@inheritdoc}
14 */
15 public function get_tab_name(): string {
16 return self::TAB_NAME;
17 }
18
19 /**
20 * {@inheritdoc}
21 */
22 public function get_tab_label(): string {
23 return __( 'Appearance', 'flexible-checkout-fields' );
24 }
25
26 /**
27 * {@inheritdoc}
28 */
29 public function get_tab_icon(): string {
30 return 'icon-brush';
31 }
32 }
33