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 / Integration / Integration.php
wp-parsidate / inc / App / Integration Last commit date
ACF 1 month ago WooCommerce 1 month ago ACF.php 1 month ago BulkyBulkEditProductsWooCommerce.php 1 month ago EDD.php 1 month ago Elementor.php 1 month ago Formello.php 1 month ago Integration.php 1 month ago JetEngine.php 1 month ago LimitLoginAttempts.php 1 month ago MonsterInsights.php 1 month ago RankMath.php 1 month ago SchemaPro.php 1 month ago UltimateMember.php 1 month ago WooCommerce.php 4 weeks ago
Integration.php
36 lines
1 <?php
2
3 namespace WPParsidate\App\Integration;
4
5 class Integration {
6 public function __construct() {
7 // E-commerce
8 new WooCommerce();
9 new EDD();
10 new BulkyBulkEditProductsWooCommerce();
11
12 // Tools
13
14 // Marketing
15
16 // Customizations
17 new ACF();
18 new JetEngine();
19 new UltimateMember();
20
21 // SEO
22 new RankMath();
23 new SchemaPro();
24 new MonsterInsights();
25
26 // Utility
27
28 // Page Builder
29 new Elementor();
30 new Formello();
31
32 // Security
33 new LimitLoginAttempts();
34 }
35 }
36