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 / Admin / Admin.php
wp-parsidate / inc / Admin Last commit date
Admin.php 3 months ago AdminAbout.php 1 month ago AdminAssets.php 1 month ago AdminConvert.php 3 months ago AdminCore.php 1 month ago AdminDashboard.php 1 month ago AdminIntegration.php 1 month ago AdminPages.php 1 month ago AdminSettings.php 1 month ago AdminTools.php 1 month ago
Admin.php
21 lines
1 <?php
2
3 namespace WPParsidate\Admin;
4
5 defined( 'ABSPATH' ) || exit;
6
7 class Admin {
8 public function __construct() {
9 new AdminAssets();
10 new AdminSettings();
11 new AdminPages();
12
13 new AdminDashboard();
14 new AdminCore();
15 new AdminConvert();
16 new AdminTools();
17 new AdminIntegration();
18 new AdminAbout();
19 }
20 }
21