-
Notifications
You must be signed in to change notification settings - Fork 18
/
manifest.php
36 lines (33 loc) · 1.13 KB
/
manifest.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
<?php if ( ! defined( 'FW' ) ) {
die( 'Forbidden' );
}
$manifest = array();
$manifest['name'] = __( 'Page Builder', 'fw' );
$manifest['description'] = __(
'Lets you easily build countless pages with the help of the drag and drop visual page builder'
.' that comes with a lot of already created shortcodes.',
'fw'
);
$manifest['github_repo'] = 'https://github.com/ThemeFuse/Unyson-PageBuilder-Extension';
$manifest['uri'] = 'http://manual.unyson.io/en/latest/extension/builder/index.html;';
$manifest['author'] = 'ThemeFuse';
$manifest['author_uri'] = 'http://themefuse.com/';
$manifest['version'] = '1.6.19';
$manifest['display'] = true;
$manifest['standalone'] = true;
$manifest['requirements'] = array(
'framework' => array(
/**
* In that version was solved the bug with children extension requirements when activate an extension
*/
'min_version' => '2.1.18',
),
'extensions' => array(
'builder' => array(),
'forms' => array(),
'shortcodes' => array(
'min_version' => '1.3.21', // was added the get_builder_data() method
),
),
);
$manifest['github_update'] = 'ThemeFuse/Unyson-PageBuilder-Extension';