-
Notifications
You must be signed in to change notification settings - Fork 4
/
bb-bootstrap-cards.php.php
95 lines (74 loc) · 2.4 KB
/
bb-bootstrap-cards.php.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* Plugin Name: Cards for Beaver Builder
* Plugin URI: https://www.brainstormforce.com/
* Description: This is a plugin for creating Awesome Bootstrap Card.
* Author: Pratik Chaskar
* Author URI: https://pratikchaskar.com
* Text Domain: bb-bootstrap-cards
* Version: 1.1.6
*
* @package BB-Bootstrap-Cards
*/
define( 'BB_BOOTSTRAPCARDS_DIR', plugin_dir_path( __FILE__ ) );
define( 'BB_BOOTSTRAPCARDS_URL', plugins_url( '/', __FILE__ ) );
/**
* Custom modules
*/
// check of BSFBBBootstrapCards class already exist or not.
if ( ! class_exists( 'BSFBBBootstrapCards' ) ) {
/**
* Class to check BB cards install
*/
class BSFBBBootstrapCards {
/**
* Constructor
*/
function __construct() {
add_action( 'init', array( $this, 'load_bootstrap_card' ) );
add_action( 'init', array( $this, 'load_textdomain' ) );
}
/**
* Function to load BB Bootstrap Cards
*/
function load_bootstrap_card() {
if ( class_exists( 'FLBuilder' ) ) {
/**
* If class exist it loads the module
*/
require_once 'bb-bootstrap-cards-module/bb-bootstrap-cards-module.php';
} else {
/**
* Display admin notice for activating beaver builder
*/
add_action( 'admin_notices', array( $this, 'admin_notices_function' ) );
add_action( 'network_admin_notices', array( $this, 'admin_notices_function' ) );
}
}
/**
* Function to load text domain
*/
public function load_textdomain() {
load_plugin_textdomain( 'bb-bootstrap-cards' );
}
/**
* Function to display admin notice
*/
function admin_notices_function() {
/**
* Check for Beaver Builder Installed / Activated or not
*/
if ( file_exists( plugin_dir_path( 'bb-plugin-agency/fl-builder.php' ) )
|| file_exists( plugin_dir_path( 'beaver-builder-lite-version/fl-builder.php' ) ) ) {
$url = network_admin_url() . 'plugins.php?s=Beaver+Builder+Plugin';
} else {
$url = network_admin_url() . 'plugin-install.php?s=billyyoung&tab=search&type=author';
}
echo '<div class="notice notice-error">';
/* Translators: Beaver Builder */
echo '<p>' . sprintf( __( '<strong>Bootstrap Cards For Beaver Builder</strong> plugin requires <strong><a href="%s">Beaver Builder</strong></a> plugin installed & activated.', 'bb-bootstrap-cards' ), $url ) . '</p>';
echo '</div>';
}
}
new BSFBBBootstrapCards();
} // end if.