forked from bcombs18/osTicket-Inventory-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.php
More file actions
29 lines (23 loc) · 1.24 KB
/
Copy pathplugin.php
File metadata and controls
29 lines (23 loc) · 1.24 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
<?php
/*********************************************************************
plugin.php
Plugin manifest for the osTicket Inventory Manager.
Modernised for the osTicket 1.17+/1.18 plugin system:
* declares `id` and `ost_version`
* i18n ready via Plugin::translate()
* distributable as a single .phar file
Released under the GNU General Public License WITHOUT ANY WARRANTY.
**********************************************************************/
define('INVENTORY_MANAGER_VERSION', '2.8.13');
// Load translation helpers (safe both as a folder plugin and inside a phar)
list($__, $_N) = Plugin::translate('inventory');
return [
'id' => 'bcombs18:inventory', // notrans - stable identifier
'version' => INVENTORY_MANAGER_VERSION,
'ost_version' => '1.18', // requires osTicket v1.18+
'name' => /* trans */ $__('Inventory Manager'),
'author' => 'bcombs18 (modernised)',
'description' => /* trans */ $__('Inventory & asset management for osTicket — track assets, mobile devices, notes, custom fields, queues and a REST API.'),
'url' => 'https://github.com/bcombs18/osTicket-Inventory-Manager',
'plugin' => 'inventory.php:InventoryPlugin',
];