-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMarkupPwpswpGalleryFlex.module
44 lines (40 loc) · 1.05 KB
/
MarkupPwpswpGalleryFlex.module
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
<?php namespace ProcessWire;
/**
* MarkupPwpswpGalleryFlex
*
* Example gallery: Uses flexbox.
* legacy plain theme
*
*/
class MarkupPwpswpGalleryFlex extends MarkupPwpswpGallery implements Module {
public static function getModuleInfo() {
return array(
'title' => 'Pwpswp Gallery: Flex',
'author' => 'Steffen Henschel',
'version' => '0.0.1',
'summary' => __('Example gallery: Uses flexbox. Alias: "flex"'),
'permission' => [],
'autoload' => false,
'singular' => false,
'permanent' => false,
'requires' => [
'ProcessWire>=3.0.0',
'PHP>=5.6',
'MarkupPwpswpGallery'
],
'installs' => []
);
}
/**
* alias
*
* return a short unique name for this module here
* legacy theme name
* it will be used for css classes, etc.
*
* @return string
*/
static public function alias() {
return 'flex';
}
}