Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.php
More file actions
Latest commit
83 lines (79 loc) · 2.45 KB
/
Copy pathversion.php
File metadata and controls
83 lines (79 loc) · 2.45 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/**
* Uploads Module
*
* @package modules
* @subpackage uploads module
* @category Third Party Xaraya Module
* @version 2.6.0
* @copyright see the html/credits.html file in this Xaraya release
* @license GPL {@link http://www.gnu.org/licenses/gpl.html}
* @link http://www.xaraya.com/index.php/release/eid/666
* @author Uploads Module Development Team
*/
/**
*
* The "media-types" directory contains a subdirectory for each content
* type and each of those directories contains a file for each content
* subtype.
*
* |-application-
* |-audio-------
* |-image-------
* |-media-types-|-message-----
* |-model-------
* |-multipart---
* |-text--------
* |-video-------
*
* URL = ftp://ftp.isi.edu/in-notes/iana/assignments/media-types
*/
namespaceXaraya\Modules\Uploads;
class Version
{
/**
* Get module version information
*
* @return array<string, mixed>
*/
publicfunction__invoke(): array
{
return [
'name' => 'uploads',
'id' => '666',
'version' => '2.6.0',
'displayname' => 'Uploads',
'description' => 'Upload/Download File Handler',
'credits' => 'docs/credits.txt',
'help' => 'docs/help.txt',
'changelog' => 'docs/changelog.txt',
'license' => 'docs/license.txt',
'official' => 1,
'author' => 'Marie Altobelli (Ladyofdragons); Michael Cortez (mcortez); Carl P. Corliss (rabbitt)',
'contact' => 'ladyofdragons@xaraya.com; mcortez@xaraya.com; rabbitt@xaraya.com',
'admin' => 1,
'user' => 0,
'class' => 'Utility',
'category' => 'Global',
'dependency'
=> [
0 => 999,
],
'namespace' => 'Xaraya\\Modules\\Uploads',
'twigtemplates' => true,
'dependencyinfo'
=> [
0
=> [
'name' => 'Xaraya Core',
'version_ge' => '2.4.1',
],
999
=> [
'name' => 'mime',
'minversion' => '2.6.0',
],
],
];
}
}