# storeengine/2.2.0/includes/post.php

StoreEngine — Complete eCommerce Solution with Memberships, Licensing, Affiliates &amp; More, version 2.2.0. 23 lines.

- Page: https://pluginprobe.com/plugins/storeengine/2.2.0/code/includes/post.php
- Raw: https://pluginprobe.com/plugins/storeengine/2.2.0/raw/includes/post.php
- Modified: 2026-05-15T04:16:54+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/storeengine/2.2.0/code/includes/post.php#L10-L20`.

```php
<?php
namespace StoreEngine;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use StoreEngine\Post\Dashboard;
use StoreEngine\Post\ForgotPassword;
use StoreEngine\Post\Register;

class Post {
	public static function init() {
		$self = new self();
		$self->dispatch_hooks();
	}
	public function dispatch_hooks() {
		( new Dashboard() )->dispatch_actions();
		( new ForgotPassword() )->dispatch_actions();
		( new Register() )->dispatch_actions();
	}
}

```
