In master config if there is no site config for this page, bail out. In the other config pages the strict declare header was missing. Progress bar inits the progress array with all set to null to avoid calls on not set index
22 lines
548 B
PHP
Executable File
22 lines
548 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
/********************************************************************
|
|
* 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:
|
|
*********************************************************************/
|
|
|
|
// File and Folder paths
|
|
// ID is TARGET (first array element)
|
|
/*$PATHS = array(
|
|
'test' => array(
|
|
'csv_path' => '',
|
|
'perl_bin' => '',
|
|
'other_url' => '',
|
|
)
|
|
)*/
|
|
|
|
// __END__
|