-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessHelpVideos.info.php
58 lines (43 loc) · 1.7 KB
/
ProcessHelpVideos.info.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
<?php
/**
* ProcessHelpVideos.info.php
*
* Return information about this module.
*
* If preferred, you can use a getModuleInfo() method in your module file,
* or you can use a ModuleName.info.json file (if you prefer JSON definition).
*
*/
$info = array(
// Your module's title
'title' => 'ProcessHelpVideos',
// A 1 sentence description of what your module does
'summary' => 'Installs Help Video section for the ProcessWire backend to make help screencasts available to editors',
// Module version number: use 1 for 0.0.1 or 100 for 1.0.0, and so on
'version' => 1,
// Name of person who created this module (change to your name)
'author' => 'Gerhard Sitzmann (gebeer)',
// Icon to accompany this module (optional), uses font-awesome icon names, minus the "fa-" part
'icon' => 'play-circle',
'requires' => array(
'PHP>=7.1',
'ProcessWire>=3.x'
),
// 'autoload' => true,
// URL to more info: change to your full modules.processwire.com URL (if available), or something else if you prefer
// 'href' => 'http://modules.processwire.com/',
// name of permission required of users to execute this Process (optional)
'permission' => 'process-helpvideos',
// permissions that you want automatically installed/uninstalled with this module (name => description)
'permissions' => array(
'process-helpvideos' => 'Access help video section'
),
// page that you want created to execute this module
'page' => array(
'name' => 'processhelpvideos',
'parent' => $this->wire('config')->urls->admin,
'title' => 'Help Videos'
),
// for more options that you may specify here, see the file: /wire/core/Process.php
// and the file: /wire/core/Module.php
);