# tier-pricing-table/6.4.0/src/Addons/TierLabels/Settings/LabelsSettingsSection.php

Tiered Pricing Table for WooCommerce, version 6.4.0. 27 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/6.4.0/code/src/Addons/TierLabels/Settings/LabelsSettingsSection.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/6.4.0/raw/src/Addons/TierLabels/Settings/LabelsSettingsSection.php
- Modified: 2026-06-26T14:29:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tier-pricing-table/6.4.0/code/src/Addons/TierLabels/Settings/LabelsSettingsSection.php#L10-L20`.

```php
<?php namespace TierPricingTable\Addons\TierLabels\Settings;

use TierPricingTable\Settings\Sections\SectionAbstract;

class LabelsSettingsSection extends SectionAbstract {
	
	public function getName(): string {
		return __( 'Badges & Labels', 'tier-pricing-table' );
	}
	
	public function getSlug(): string {
		return 'tier-labels';
	}
	
	public function getSettings(): array {
		return array(
			array(
				'type' => 'tiered-pricing_tier-labels-crud',
			),
		);
	}
	
	public function isIntegration(): bool {
		return false;
	}
}

```
