# tier-pricing-table/6.1.0/src/Admin/ProductManagers/ProductManagerAbstract.php

Tiered Pricing Table for WooCommerce, version 6.1.0. 28 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/6.1.0/code/src/Admin/ProductManagers/ProductManagerAbstract.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/6.1.0/raw/src/Admin/ProductManagers/ProductManagerAbstract.php
- Modified: 2022-12-28T23:00:20+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.1.0/code/src/Admin/ProductManagers/ProductManagerAbstract.php#L10-L20`.

```php
<?php namespace TierPricingTable\Admin\ProductManagers;

use TierPricingTable\Core\ServiceContainerTrait;

/**
 * Class ProductManagerAbstract
 *
 * @package TierPricingTable\Admin\ProductManagers
 */
abstract class ProductManagerAbstract {

	use ServiceContainerTrait;

	/**
	 * Product Manager constructor.
	 *
	 * Register menu items and handlers
	 */
	public function __construct() {
		$this->hooks();
	}

	/**
	 * Register manager hooks
	 */
	abstract protected function hooks();
}

```
