-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbb-custom-attributes.php
43 lines (37 loc) · 1.29 KB
/
bb-custom-attributes.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
<?php
/**
* Plugin Name: Beaver Builder Custom Attributes
* Plugin URI: https://github.com/JasonTheAdams/BBCustomAttributes
* Description: Adds the ability to set custom attributes for modules, columns, and rows
* Version: 1.3
* Author: Jason Adams
* Author URI: https://github.com/jasontheadams
* Requires PHP: 5.6
* License: MIT
* License URI: https://opensource.org/licenses/MIT
*/
namespace JasonTheAdams\BBCustomAttributes;
// Define plugin version
define( 'BBCUSTOMATTRIBUTES_VERSION', '1.3' );
// Include core plugin functionality
include_once plugin_dir_path( __FILE__ ) . 'includes/BBCustomAttributes.php';
// Include GitHub updater functionality
include_once plugin_dir_path( __FILE__ ) . 'includes/GithubUpdater.php';
// Initialize the plugin
(new BBCustomAttributes())->load();
// Initialize GitHub updater
function init_updater() {
$updater = new GithubUpdater( __FILE__ );
$updater->set_username( 'JasonTheAdams' );
$updater->set_repository( 'BBCustomAttributes' );
$updater->set_settings( array(
'requires' => '5.6',
'tested' => '6.6.1',
'rating' => '100.0',
'num_ratings' => '10',
'downloaded' => '10',
'added' => '2024-08-22',
) );
$updater->initialize();
}
init_updater();