# texty/0.2/includes/Admin.php

Texty – SMS Notification for WordPress, WooCommerce, Dokan and more, version 0.2. 18 lines.

- Page: https://pluginprobe.com/plugins/texty/0.2/code/includes/Admin.php
- Raw: https://pluginprobe.com/plugins/texty/0.2/raw/includes/Admin.php
- Modified: 2021-01-18T12:25:42+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/texty/0.2/code/includes/Admin.php#L10-L20`.

```php
<?php

namespace Texty;

/**
 * Manager Class
 */
class Admin {

    /**
     * Initialize
     */
    public function __construct() {
        new Admin\Menu();
        new Admin\Profile();
    }
}

```
