-
Notifications
You must be signed in to change notification settings - Fork 4
/
timeline-for-beaver-builder.php
82 lines (69 loc) · 2.45 KB
/
timeline-for-beaver-builder.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
<?php
/**
* Plugin Name: Timeline Module for Beaver Builder
* Plugin URI: https://www.brainstormforce.com/
* Description: Timeline for Beaver Builder is a custom modules for Beaver Builder to create the awesome responsive timeline with animation.
* Version: 1.1.4
* Author: Pratik Chaskar
* Author URI: https://pratikchaskar.com/
* Text Domain: bb-timeline
*
* @package BB-Timeline
*/
define( 'TIMELINE_FOR_BEAVER_BUILDER_DIR', plugin_dir_path( __FILE__ ) );
define( 'TIMELINE_FOR_BEAVER_BUILDER_URL', plugins_url( '/', __FILE__ ) );
/**
* Custom modules
*/
// check of BSFBBTimeline class already exist or not.
if ( ! class_exists( 'BSFBBTimeline' ) ) {
/**
* Class to check BB timeline install
*/
class BSFBBTimeline {
/**
* To initializ new object
*/
public function __construct() {
add_action( 'init', array( $this, 'load_timeline' ) );
add_action( 'init', array( $this, 'load_textdomain' ) );
}
/**
* Function to load BB Timeline
*/
public function load_timeline() {
if ( class_exists( 'FLBuilder' ) ) {
// If class exist it loads the module.
require_once 'timeline-for-beaver-builder-module/timeline-for-beaver-builder-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-timeline' );
}
/**
* Function to display admin notice
*/
public 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';
}
// To display notice.
echo '<div class="notice notice-error">';
/* Translators: Timeline Module For Beaver Builder */
echo '<p>' . wp_kses_post( sprintf( __( 'The <strong>Timeline Module For Beaver Builder</strong> plugin requires <strong><a href="%s">Beaver Builder</strong></a> plugin installed & activated.', 'bb-timeline' ) . '</p>', esc_url( $url ) ) );
echo '</div>';
}
}
new BSFBBTimeline();
}