PluginProbe ʕ •ᴥ•ʔ
پارسی دیت – Parsi Date / trunk
پارسی دیت – Parsi Date vtrunk
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 1 month ago Core 4 weeks ago Integration 4 weeks ago Tools 1 month ago App.php 3 months ago AppAssets.php 4 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