-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.php
26 lines (23 loc) · 911 Bytes
/
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
<?php if ( ! defined( 'FW' ) ) {
die( 'Forbidden' );
}
$manifest = array();
$manifest['name'] = __( 'Sidebars', 'fw' );
$manifest['description'] = __(
'Brings a new layer of customization freedom to your website by letting you add more than one sidebar to a page,'
.' or different sidebars on different pages.',
'fw'
);
$manifest['version'] = '1.0.20';
$manifest['display'] = true;
$manifest['standalone'] = true;
$manifest['requirements'] = array(
'framework' => array(
'min_version' => '2.2.2', // in this version was added option handler
)
);
$manifest['github_repo'] = 'https://github.com/ThemeFuse/Unyson-Sidebars-Extension';
$manifest['uri'] = 'http://manual.unyson.io/en/latest/extension/sidebars/index.html#content';
$manifest['author'] = 'ThemeFuse';
$manifest['author_uri'] = 'http://themefuse.com/';
$manifest['github_update'] = 'ThemeFuse/Unyson-Sidebars-Extension';