25 lines
542 B
PHP
Executable File
25 lines
542 B
PHP
Executable File
<?php
|
|
|
|
/********************************************************************
|
|
* AUTHOR: Clemens Schwaighofer
|
|
* CREATED: 2018/10/11
|
|
* SHORT DESCRIPTION:
|
|
* configuration file for core path settings
|
|
* CSV target paths, and other download access URLS or paths needed
|
|
* HISTORY:
|
|
*********************************************************************/
|
|
|
|
declare(strict_types=1);
|
|
|
|
// File and Folder paths
|
|
// ID is TARGET (first array element)
|
|
/*$PATHS = [
|
|
'test' => [
|
|
'csv_path' => '',
|
|
'perl_bin' => '',
|
|
'other_url' => '',
|
|
],
|
|
];*/
|
|
|
|
// __END__
|