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 / Integration / Integration.php
wp-parsidate / inc / App / Integration Last commit date
ACF 3 weeks ago WooCommerce 3 weeks ago ACF.php 3 weeks ago BulkyBulkEditProductsWooCommerce.php 3 weeks ago EDD.php 3 weeks ago Elementor.php 3 weeks ago Formello.php 3 weeks ago Integration.php 3 weeks ago JetEngine.php 3 weeks ago LimitLoginAttempts.php 3 weeks ago MonsterInsights.php 3 weeks ago RankMath.php 3 weeks ago SchemaPro.php 3 weeks ago UltimateMember.php 3 weeks ago WooCommerce.php 3 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