# timetics/1.0.16/core/services/hooks.php

Timetics – Appointment Booking Calendar &amp; Scheduling, version 1.0.16. 34 lines.

- Page: https://pluginprobe.com/plugins/timetics/1.0.16/code/core/services/hooks.php
- Raw: https://pluginprobe.com/plugins/timetics/1.0.16/raw/core/services/hooks.php
- Modified: 2024-01-03T04:11:06+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/timetics/1.0.16/code/core/services/hooks.php#L10-L20`.

```php
<?php
/**
 * Service hooks
 *
 * @package Timetics
 */

namespace Timetics\Core\Services;

use Timetics\Utils\Singleton;
use Timetics\Core\Services\Service_Taxonomy;

/**
 * Class Hooks
 */
class Hooks {
    use Singleton;

    /**
     * Store category
     *
     * @var Object
     */
    protected $category;
    /**
     * Initialoze
     *
     * @return void
     */
    public function init() {
        $this->category = new Service_Taxonomy();
    }
}

```
