-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinfo.php
More file actions
34 lines (32 loc) · 1.34 KB
/
info.php
File metadata and controls
34 lines (32 loc) · 1.34 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
<?php
/**
* SyncData
*
* @author Team phpManufaktur <team@phpmanufaktur.de>
* @link https://addons.phpmanufaktur.de/SyncData
* @copyright 2013 Ralf Hertsch <ralf.hertsch@phpmanufaktur.de>
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT
*
* ATTENTION: This is not a installable WebsiteBaker or LEPTON CMS Add-on!
*
* The files info.php and precheck.php exists only to give the user
* a hint for the setup if he try to install SyncData as a Add-on.
*/
if (file_exists(dirname(__FILE__).'/config/syncdata.json')) {
// if the config file exists SyncData is installed regular, just ignore this file!
include dirname(__FILE__).'/bootstrap.php';
}
else {
// assume: user try to install SyncData as a add-on, so give the CMS some information
$module_directory = 'sync_data';
$module_name = 'SyncData';
$module_function = 'tool';
$module_version = '2.0.34';
$module_status = 'Stable';
$module_platform = '2.8';
$module_author = 'Team phpManufaktur <team@phpmanufaktur.de>';
$module_license = 'MIT License (MIT)';
$module_description = 'Save, restore and synchronize WebsiteBaker and LEPTON CMS installations';
$module_home = 'https://addons.phpmanufaktur.de/syncdata2';
$module_guid = '88188907-B927-432A-AF7C-311FDD91F749';
}