PluginProbe
wpForo Forum / 3.1.0
wpForo Forum v3.1.0
3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.2 All 137 releases
wpforo / modules / mentioning / Mentioning.php

Mentioning.php in wpForo Forum 3.1.0, at modules/mentioning/Mentioning.php

21 lines 411 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace wpforo\modules\mentioning;
4
5 use wpforo\modules\mentioning\classes\Template;
6 use wpforo\modules\mentioning\classes\Actions;
7
8 class Mentioning {
9 /* @var Template */ public $Template;
10 /* @var Actions */ public $Actions;
11
12 public function __construct() {
13 $this->init_classes();
14 }
15
16 private function init_classes() {
17 $this->Template = new Template();
18 $this->Actions = new Actions();
19 }
20 }
21