PluginProbe ʕ •ᴥ•ʔ
پارسی دیت – Parsi Date / 6.2.1
پارسی دیت – Parsi Date v6.2.1
6.2.1 6.2 6.1 5.1.6 5.1.7 5.1.8 5.1.8.2 6.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.0.0-alpha 2.1 2.1.1 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0.1 2.3.0.2 2.3.1 2.3.2 2.3.3 2.3.4 3.0.1 3.0.2 3.0.3 4.0.0 4.0.1 4.0.2 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5
wp-parsidate / inc / App / App.php
wp-parsidate / inc / App Last commit date
Convert 3 weeks ago Core 3 weeks ago Integration 3 weeks ago Tools 3 weeks ago App.php 3 weeks ago AppAssets.php 3 weeks ago
App.php
28 lines
1 <?php
2
3 namespace WPParsidate\App;
4
5 defined( 'ABSPATH' ) || exit;
6
7 use WPParsidate\App\Convert\Convert;
8 use WPParsidate\App\Core\Core;
9 use WPParsidate\App\Integration\Integration;
10 use WPParsidate\App\Tools\Tools;
11
12 class App {
13 public function __construct() {
14 new AppAssets();
15 new Core();
16 new Convert();
17 new Tools();
18 new Integration();
19
20 add_action( 'init', [ $this, 'init' ], 0 );
21 }
22
23 public function init(): void {
24 do_action( 'wp_parsidate_addons_load' );
25 do_action( 'wp_parsidate_init' );
26 }
27 }
28