diff --git a/phpstan-bootstrap.php b/phpstan-bootstrap.php
index f6cdf446..c389a409 100755
--- a/phpstan-bootstrap.php
+++ b/phpstan-bootstrap.php
@@ -6,6 +6,7 @@ $_SERVER['HTTP_HOST'] = 'soba.tokyo.tequila.jp';
// so www/includes/edit_base.php works
require_once('www/lib/Smarty/SmartyBC.class.php');
// for whatever reason it does not load that from the confing.master.php
+// for includes/admin_header.php
define('BASE_NAME', '');
// __END__
diff --git a/phpstan.neon b/phpstan.neon
index 6e37ff4f..884b9a15 100644
--- a/phpstan.neon
+++ b/phpstan.neon
@@ -14,10 +14,10 @@ parameters:
scanFiles:
- www/configs/config.php
- www/configs/config.master.php
- - www/lib/autoloader.php
+ # if composer.json autoloader defined, this is not needed
+ # - www/lib/autoloader.php
- www/vendor/autoload.php
- www/lib/Smarty/Autoloader.php
- - www/lib/CoreLibs/Template/SmartyExtend.php
excludes_analyse:
# do not check old qq file uploader tests
- www/admin/qq_file_upload_*.php
@@ -38,13 +38,11 @@ parameters:
- www/log
- www/media
- www/tmp
+ # external libs are not checked
- www/lib/pChart*
- www/lib/Smarty*
- - www/lib/smarty*
# ignore composer
- www/vendor
- # ignore the smartyextend
- - www/lib/CoreLibs/Template/SmartyExtend.php
# ignore errores with
ignoreErrors:
# -
diff --git a/www/admin/class_test.autoloader.php b/www/admin/class_test.autoloader.php
new file mode 100644
index 00000000..cf204d90
--- /dev/null
+++ b/www/admin/class_test.autoloader.php
@@ -0,0 +1,43 @@
+
TEST CLASS: AUTOLOADER";
+print "";
+print '';
+
+$bytes = 10242424;
+$_bytes = Byte::humanReadableByteFormat($bytes);
+print "BYTES: " . $_bytes . "
";
+
+print "";
+
+// __END__
diff --git a/www/admin/class_test.php b/www/admin/class_test.php
index dedb5b71..769f571f 100644
--- a/www/admin/class_test.php
+++ b/www/admin/class_test.php
@@ -63,6 +63,7 @@ print '';
print '';
print '';
print '';
+print '';
print "
";
// print all _ENV vars set
diff --git a/www/composer.json b/www/composer.json
index c1ed185b..25d18b3e 100644
--- a/www/composer.json
+++ b/www/composer.json
@@ -10,7 +10,7 @@
],
"autoload": {
"classmap": [
- "libs/"
+ "lib/"
]
},
"require-dev": {
diff --git a/www/configs/config.master.php b/www/configs/config.master.php
index b9b87b24..bc167465 100644
--- a/www/configs/config.master.php
+++ b/www/configs/config.master.php
@@ -301,9 +301,15 @@ if (defined('DEBUG') && DEBUG == false) {
}
/************* AUTO LOADER *******************/
-// read auto loader
-require BASE . LIB . 'autoloader.php';
-// composer auto loader
-require BASE . 'venoder' . DS . 'autoloader.php';
+// read auto loader for lib only
+// require BASE . LIB . 'autoloader.php';
+// composer auto loader, IF composer.json file includes classmap for lib/:
+// "autoload": {
+// "classmap": [
+// "lib/"
+// ]
+// },
+// NOTE BASE: __DIR__ . DIRECTORY_SEPARATOR . '..' DIRECTORY_SEPARATOR;
+require BASE . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
// __END__
diff --git a/www/lib/CoreLibs/Template/SmartyExtend.php b/www/lib/CoreLibs/Template/SmartyExtend.php
index 531886b3..62083412 100644
--- a/www/lib/CoreLibs/Template/SmartyExtend.php
+++ b/www/lib/CoreLibs/Template/SmartyExtend.php
@@ -20,80 +20,140 @@ declare(strict_types=1);
namespace CoreLibs\Template;
// I need to manually load Smarty BC here (it is not namespaced)
-require_once(BASE . LIB . SMARTY . 'SmartyBC.class.php');
+// require_once(BASE . LIB . SMARTY . 'SmartyBC.class.php');
+// we set this hard coded so it works with all checkers
+// HARD CODED path:
+// __DIR__: lib/CoreLibs/Template/
+// smarty located in lib/Smarty/
+require_once(__DIR__ . '/../../Smarty/SmartyBC.class.php');
// So it doesn't start looking around in the wrong naemspace as smarty doesn't have one
use SmartyBC;
class SmartyExtend extends SmartyBC
{
// internal translation engine
+ /** @var \CoreLibs\Language\L10n */
public $l10n;
// lang & encoding
+ /** @var string */
public $lang_dir = '';
+ /** @var string */
public $lang;
+ /** @var string */
public $lang_short;
+ /** @var string */
public $encoding;
// page name
+ /** @var string */
public $page_name;
// array for data parsing
+ /** @var array */
public $HEADER = [];
+ /** @var array */
public $DATA = [];
+ /** @var array */
public $DEBUG_DATA = [];
+ /** @var array */
private $CONTENT_DATA = [];
// control vars
+ /** @var bool */
public $USE_PROTOTYPE = USE_PROTOTYPE;
+ /** @var bool */
public $USE_JQUERY = USE_JQUERY;
+ /** @var bool */
public $USE_SCRIPTACULOUS = USE_SCRIPTACULOUS;
// sub content input vars
+ /** @var bool */
public $USE_TINY_MCE = false;
+ /** @var bool */
public $JS_DATEPICKR = false;
+ /** @var bool */
public $JS_FLATPICKR = false;
+ /** @var bool */
public $JS_FILE_UPLOADER = false;
+ /** @var bool */
public $DEBUG_TMPL = false;
+ /** @var bool */
public $USE_INCLUDE_TEMPLATE = false;
// cache & compile
+ /** @var string */
public $CACHE_ID = '';
+ /** @var string */
public $COMPILE_ID = '';
// template vars
+ /** @var string */
public $MASTER_TEMPLATE_NAME;
+ /** @var string */
public $PAGE_FILE_NAME;
+ /** @var string */
public $CONTENT_INCLUDE;
+ /** @var string */
public $FORM_NAME;
+ /** @var string */
public $FORM_ACTION;
+ /** @var string */
public $L_TITLE;
+ /** @var string|int */
public $PAGE_WIDTH;
// smarty include/set var
+ /** @var string */
public $TEMPLATE_PATH;
+ /** @var string */
public $TEMPLATE_NAME;
+ /** @var string */
public $INC_TEMPLATE_NAME;
+ /** @var string */
public $JS_TEMPLATE_NAME;
+ /** @var string */
public $CSS_TEMPLATE_NAME;
+ /** @var string|null */
public $TEMPLATE_TRANSLATE;
// core group
+ /** @var string */
public $JS_CORE_TEMPLATE_NAME;
+ /** @var string */
public $CSS_CORE_TEMPLATE_NAME;
+ /** @var string */
public $JS_CORE_INCLUDE;
+ /** @var string */
public $CSS_CORE_INCLUDE;
// local names
+ /** @var string */
public $JS_SPECIAL_TEMPLATE_NAME = '';
+ /** @var string */
public $CSS_SPECIAL_TEMPLATE_NAME = '';
+ /** @var string */
public $JS_INCLUDE;
+ /** @var string */
public $CSS_INCLUDE;
+ /** @var string */
public $JS_SPECIAL_INCLUDE;
+ /** @var string */
public $CSS_SPECIAL_INCLUDE;
+ /** @var string */
public $ADMIN_JAVASCRIPT;
+ /** @var string */
public $ADMIN_STYLESHEET;
+ /** @var string */
public $FRONTEND_JAVASCRIPT;
+ /** @var string */
public $FRONTEND_STYLESHEET;
// other smarty folder vars
+ /** @var string */
public $INCLUDES;
+ /** @var string */
public $JAVASCRIPT;
+ /** @var string */
public $CSS;
+ /** @var string */
public $FONT;
+ /** @var string */
public $PICTURES;
+ /** @var string */
public $CACHE_PICTURES;
+ /** @var string */
public $CACHE_PICTURES_ROOT;
// constructor class, just sets the language stuff
@@ -112,6 +172,7 @@ class SmartyExtend extends SmartyBC
$this->l10n = new \CoreLibs\Language\L10n($this->lang);
// variable variable register
// $this->register_modifier('getvar', [&$this, 'get_template_vars']);
+ /** @phpstan-ignore-next-line */
$this->registerPlugin('modifier', 'getvar', [&$this, 'get_template_vars']);
$this->page_name = pathinfo($_SERVER["PHP_SELF"])['basename'];
@@ -323,6 +384,7 @@ class SmartyExtend extends SmartyBC
*/
private function setSmartyVars($admin_call = false): void
{
+ /** @var \CoreLibs\Admin\Backend This is an assumption */
global $cms;
if (is_object($cms)) {
$this->mergeCmsSmartyVars($cms);
@@ -377,7 +439,7 @@ class SmartyExtend extends SmartyBC
$this->DATA['nav_menu_count'] = is_array($this->DATA['nav_menu']) ? count($this->DATA['nav_menu']) : 0;
// messages = ['msg' =>, 'class' => 'error/warning/...']
$this->DATA['messages'] = $cms->messages ?? [];
- } else {
+ } else { /** @phpstan-ignore-line Because I assume object for phpstan */
$this->DATA['show_ea_extra'] = false;
$this->DATA['ADMIN'] = 0;
$this->DATA['nav_menu'] = [];
diff --git a/www/vendor/composer/autoload_classmap.php b/www/vendor/composer/autoload_classmap.php
index bb30e299..3e91ae06 100644
--- a/www/vendor/composer/autoload_classmap.php
+++ b/www/vendor/composer/autoload_classmap.php
@@ -6,7 +6,51 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
+ 'Autoloader\\Autoload' => $baseDir . '/lib/autoloader.php',
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
+ 'CoreLibs\\ACL\\Login' => $baseDir . '/lib/CoreLibs/ACL/Login.php',
+ 'CoreLibs\\Admin\\Backend' => $baseDir . '/lib/CoreLibs/Admin/Backend.php',
+ 'CoreLibs\\Basic' => $baseDir . '/lib/CoreLibs/Basic.php',
+ 'CoreLibs\\Check\\Email' => $baseDir . '/lib/CoreLibs/Check/Email.php',
+ 'CoreLibs\\Check\\File' => $baseDir . '/lib/CoreLibs/Check/File.php',
+ 'CoreLibs\\Check\\Jason' => $baseDir . '/lib/CoreLibs/Check/Jason.php',
+ 'CoreLibs\\Check\\Password' => $baseDir . '/lib/CoreLibs/Check/Password.php',
+ 'CoreLibs\\Check\\PhpVersion' => $baseDir . '/lib/CoreLibs/Check/PhpVersion.php',
+ 'CoreLibs\\Combined\\ArrayHandler' => $baseDir . '/lib/CoreLibs/Combined/ArrayHandler.php',
+ 'CoreLibs\\Combined\\DateTime' => $baseDir . '/lib/CoreLibs/Combined/DateTime.php',
+ 'CoreLibs\\Convert\\Byte' => $baseDir . '/lib/CoreLibs/Convert/Byte.php',
+ 'CoreLibs\\Convert\\Colors' => $baseDir . '/lib/CoreLibs/Convert/Colors.php',
+ 'CoreLibs\\Convert\\Html' => $baseDir . '/lib/CoreLibs/Convert/Html.php',
+ 'CoreLibs\\Convert\\Math' => $baseDir . '/lib/CoreLibs/Convert/Math.php',
+ 'CoreLibs\\Convert\\MimeAppName' => $baseDir . '/lib/CoreLibs/Convert/MimeAppName.php',
+ 'CoreLibs\\Create\\Hash' => $baseDir . '/lib/CoreLibs/Create/Hash.php',
+ 'CoreLibs\\Create\\RandomKey' => $baseDir . '/lib/CoreLibs/Create/RandomKey.php',
+ 'CoreLibs\\Create\\Uids' => $baseDir . '/lib/CoreLibs/Create/Uids.php',
+ 'CoreLibs\\DB\\Extended\\ArrayIO' => $baseDir . '/lib/CoreLibs/DB/Extended/ArrayIO.php',
+ 'CoreLibs\\DB\\IO' => $baseDir . '/lib/CoreLibs/DB/IO.php',
+ 'CoreLibs\\DB\\SQL\\PgSQL' => $baseDir . '/lib/CoreLibs/DB/SQL/PgSQL.php',
+ 'CoreLibs\\Debug\\FileWriter' => $baseDir . '/lib/CoreLibs/Debug/FileWriter.php',
+ 'CoreLibs\\Debug\\Logging' => $baseDir . '/lib/CoreLibs/Debug/Logging.php',
+ 'CoreLibs\\Debug\\RunningTime' => $baseDir . '/lib/CoreLibs/Debug/RunningTime.php',
+ 'CoreLibs\\Debug\\Support' => $baseDir . '/lib/CoreLibs/Debug/Support.php',
+ 'CoreLibs\\Get\\System' => $baseDir . '/lib/CoreLibs/Get/System.php',
+ 'CoreLibs\\Language\\Core\\CachedFileReader' => $baseDir . '/lib/CoreLibs/Language/Core/CachedFileReader.php',
+ 'CoreLibs\\Language\\Core\\FileReader' => $baseDir . '/lib/CoreLibs/Language/Core/FileReader.php',
+ 'CoreLibs\\Language\\Core\\GetTextReader' => $baseDir . '/lib/CoreLibs/Language/Core/GetTextReader.php',
+ 'CoreLibs\\Language\\Core\\StreamReader' => $baseDir . '/lib/CoreLibs/Language/Core/StreamReader.php',
+ 'CoreLibs\\Language\\Core\\StringReader' => $baseDir . '/lib/CoreLibs/Language/Core/StringReader.php',
+ 'CoreLibs\\Language\\Encoding' => $baseDir . '/lib/CoreLibs/Language/Encoding.php',
+ 'CoreLibs\\Language\\L10n' => $baseDir . '/lib/CoreLibs/Language/L10n.php',
+ 'CoreLibs\\Output\\Form\\Elements' => $baseDir . '/lib/CoreLibs/Output/Form/Elements.php',
+ 'CoreLibs\\Output\\Form\\Generate' => $baseDir . '/lib/CoreLibs/Output/Form/Generate.php',
+ 'CoreLibs\\Output\\Form\\Token' => $baseDir . '/lib/CoreLibs/Output/Form/Token.php',
+ 'CoreLibs\\Output\\Image' => $baseDir . '/lib/CoreLibs/Output/Image.php',
+ 'CoreLibs\\Output\\ProgressBar' => $baseDir . '/lib/CoreLibs/Output/Progressbar.php',
+ 'CoreLibs\\Template\\SmartyExtend' => $baseDir . '/lib/CoreLibs/Template/SmartyExtend.php',
+ 'FileUpload\\Core\\qqUploadedFile' => $baseDir . '/lib/FileUpload/Core/qqUploadedFile.php',
+ 'FileUpload\\Core\\qqUploadedFileForm' => $baseDir . '/lib/FileUpload/Core/qqUploadedFileForm.php',
+ 'FileUpload\\Core\\qqUploadedFileXhr' => $baseDir . '/lib/FileUpload/Core/qqUploadedFileXhr.php',
+ 'FileUpload\\qqFileUploader' => $baseDir . '/lib/FileUpload/qqFileUploader.php',
'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
'PHPUnit\\Framework\\ActualValueIsNotAnObjectException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ActualValueIsNotAnObjectException.php',
'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php',
@@ -624,6 +668,176 @@ return array(
'SebastianBergmann\\Type\\UnknownType' => $vendorDir . '/sebastian/type/src/UnknownType.php',
'SebastianBergmann\\Type\\VoidType' => $vendorDir . '/sebastian/type/src/VoidType.php',
'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php',
+ 'Smarty' => $baseDir . '/lib/Smarty/Smarty.class.php',
+ 'SmartyBC' => $baseDir . '/lib/Smarty/SmartyBC.class.php',
+ 'SmartyCompilerException' => $baseDir . '/lib/Smarty/sysplugins/smartycompilerexception.php',
+ 'SmartyException' => $baseDir . '/lib/Smarty/sysplugins/smartyexception.php',
+ 'Smarty_Autoloader' => $baseDir . '/lib/Smarty/Autoloader.php',
+ 'Smarty_CacheResource' => $baseDir . '/lib/Smarty/sysplugins/smarty_cacheresource.php',
+ 'Smarty_CacheResource_Custom' => $baseDir . '/lib/Smarty/sysplugins/smarty_cacheresource_custom.php',
+ 'Smarty_CacheResource_KeyValueStore' => $baseDir . '/lib/Smarty/sysplugins/smarty_cacheresource_keyvaluestore.php',
+ 'Smarty_Data' => $baseDir . '/lib/Smarty/sysplugins/smarty_data.php',
+ 'Smarty_Internal_Block' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_block.php',
+ 'Smarty_Internal_CacheResource_File' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_cacheresource_file.php',
+ 'Smarty_Internal_CompileBase' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compilebase.php',
+ 'Smarty_Internal_Compile_Append' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_append.php',
+ 'Smarty_Internal_Compile_Assign' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_assign.php',
+ 'Smarty_Internal_Compile_Block' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_block.php',
+ 'Smarty_Internal_Compile_Blockclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_block.php',
+ 'Smarty_Internal_Compile_Break' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_break.php',
+ 'Smarty_Internal_Compile_Call' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_call.php',
+ 'Smarty_Internal_Compile_Capture' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_capture.php',
+ 'Smarty_Internal_Compile_CaptureClose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_capture.php',
+ 'Smarty_Internal_Compile_Config_Load' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_config_load.php',
+ 'Smarty_Internal_Compile_Continue' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_continue.php',
+ 'Smarty_Internal_Compile_Debug' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_debug.php',
+ 'Smarty_Internal_Compile_Else' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Elseif' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Eval' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_eval.php',
+ 'Smarty_Internal_Compile_Extends' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_extends.php',
+ 'Smarty_Internal_Compile_For' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_for.php',
+ 'Smarty_Internal_Compile_Forclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_for.php',
+ 'Smarty_Internal_Compile_Foreach' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php',
+ 'Smarty_Internal_Compile_Foreachclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php',
+ 'Smarty_Internal_Compile_Foreachelse' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php',
+ 'Smarty_Internal_Compile_Forelse' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_for.php',
+ 'Smarty_Internal_Compile_Function' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_function.php',
+ 'Smarty_Internal_Compile_Functionclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_function.php',
+ 'Smarty_Internal_Compile_If' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Ifclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Include' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_include.php',
+ 'Smarty_Internal_Compile_Include_Php' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_include_php.php',
+ 'Smarty_Internal_Compile_Insert' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_insert.php',
+ 'Smarty_Internal_Compile_Ldelim' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_ldelim.php',
+ 'Smarty_Internal_Compile_Make_Nocache' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_make_nocache.php',
+ 'Smarty_Internal_Compile_Nocache' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_nocache.php',
+ 'Smarty_Internal_Compile_Nocacheclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_nocache.php',
+ 'Smarty_Internal_Compile_Private_Block_Plugin' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_block_plugin.php',
+ 'Smarty_Internal_Compile_Private_ForeachSection' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_foreachsection.php',
+ 'Smarty_Internal_Compile_Private_Function_Plugin' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_function_plugin.php',
+ 'Smarty_Internal_Compile_Private_Modifier' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_modifier.php',
+ 'Smarty_Internal_Compile_Private_Object_Block_Function' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_object_block_function.php',
+ 'Smarty_Internal_Compile_Private_Object_Function' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_object_function.php',
+ 'Smarty_Internal_Compile_Private_Php' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_php.php',
+ 'Smarty_Internal_Compile_Private_Print_Expression' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_print_expression.php',
+ 'Smarty_Internal_Compile_Private_Registered_Block' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_block.php',
+ 'Smarty_Internal_Compile_Private_Registered_Function' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_function.php',
+ 'Smarty_Internal_Compile_Private_Special_Variable' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_private_special_variable.php',
+ 'Smarty_Internal_Compile_Rdelim' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_rdelim.php',
+ 'Smarty_Internal_Compile_Section' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_section.php',
+ 'Smarty_Internal_Compile_Sectionclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_section.php',
+ 'Smarty_Internal_Compile_Sectionelse' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_section.php',
+ 'Smarty_Internal_Compile_Setfilter' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_setfilter.php',
+ 'Smarty_Internal_Compile_Setfilterclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_setfilter.php',
+ 'Smarty_Internal_Compile_Shared_Inheritance' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_shared_inheritance.php',
+ 'Smarty_Internal_Compile_While' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_while.php',
+ 'Smarty_Internal_Compile_Whileclose' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_compile_while.php',
+ 'Smarty_Internal_Config_File_Compiler' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_config_file_compiler.php',
+ 'Smarty_Internal_Configfilelexer' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_configfilelexer.php',
+ 'Smarty_Internal_Configfileparser' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_configfileparser.php',
+ 'Smarty_Internal_Data' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_data.php',
+ 'Smarty_Internal_Debug' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_debug.php',
+ 'Smarty_Internal_Extension_Clear' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_extension_clear.php',
+ 'Smarty_Internal_Extension_Handler' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_extension_handler.php',
+ 'Smarty_Internal_Method_AddAutoloadFilters' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_addautoloadfilters.php',
+ 'Smarty_Internal_Method_AddDefaultModifiers' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_adddefaultmodifiers.php',
+ 'Smarty_Internal_Method_Append' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_append.php',
+ 'Smarty_Internal_Method_AppendByRef' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_appendbyref.php',
+ 'Smarty_Internal_Method_AssignByRef' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_assignbyref.php',
+ 'Smarty_Internal_Method_AssignGlobal' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_assignglobal.php',
+ 'Smarty_Internal_Method_ClearAllAssign' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_clearallassign.php',
+ 'Smarty_Internal_Method_ClearAllCache' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_clearallcache.php',
+ 'Smarty_Internal_Method_ClearAssign' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_clearassign.php',
+ 'Smarty_Internal_Method_ClearCache' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_clearcache.php',
+ 'Smarty_Internal_Method_ClearCompiledTemplate' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_clearcompiledtemplate.php',
+ 'Smarty_Internal_Method_ClearConfig' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_clearconfig.php',
+ 'Smarty_Internal_Method_CompileAllConfig' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_compileallconfig.php',
+ 'Smarty_Internal_Method_CompileAllTemplates' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_compilealltemplates.php',
+ 'Smarty_Internal_Method_ConfigLoad' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_configload.php',
+ 'Smarty_Internal_Method_CreateData' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_createdata.php',
+ 'Smarty_Internal_Method_GetAutoloadFilters' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_getautoloadfilters.php',
+ 'Smarty_Internal_Method_GetConfigVars' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_getconfigvars.php',
+ 'Smarty_Internal_Method_GetDebugTemplate' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_getdebugtemplate.php',
+ 'Smarty_Internal_Method_GetDefaultModifiers' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_getdefaultmodifiers.php',
+ 'Smarty_Internal_Method_GetGlobal' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_getglobal.php',
+ 'Smarty_Internal_Method_GetRegisteredObject' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_getregisteredobject.php',
+ 'Smarty_Internal_Method_GetStreamVariable' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_getstreamvariable.php',
+ 'Smarty_Internal_Method_GetTags' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_gettags.php',
+ 'Smarty_Internal_Method_GetTemplateVars' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_gettemplatevars.php',
+ 'Smarty_Internal_Method_LoadFilter' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_loadfilter.php',
+ 'Smarty_Internal_Method_LoadPlugin' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_loadplugin.php',
+ 'Smarty_Internal_Method_MustCompile' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_mustcompile.php',
+ 'Smarty_Internal_Method_RegisterCacheResource' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registercacheresource.php',
+ 'Smarty_Internal_Method_RegisterClass' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerclass.php',
+ 'Smarty_Internal_Method_RegisterDefaultConfigHandler' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerdefaultconfighandler.php',
+ 'Smarty_Internal_Method_RegisterDefaultPluginHandler' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php',
+ 'Smarty_Internal_Method_RegisterDefaultTemplateHandler' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php',
+ 'Smarty_Internal_Method_RegisterFilter' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerfilter.php',
+ 'Smarty_Internal_Method_RegisterObject' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerobject.php',
+ 'Smarty_Internal_Method_RegisterPlugin' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerplugin.php',
+ 'Smarty_Internal_Method_RegisterResource' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_registerresource.php',
+ 'Smarty_Internal_Method_SetAutoloadFilters' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_setautoloadfilters.php',
+ 'Smarty_Internal_Method_SetDebugTemplate' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_setdebugtemplate.php',
+ 'Smarty_Internal_Method_SetDefaultModifiers' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_setdefaultmodifiers.php',
+ 'Smarty_Internal_Method_UnloadFilter' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_unloadfilter.php',
+ 'Smarty_Internal_Method_UnregisterCacheResource' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_unregistercacheresource.php',
+ 'Smarty_Internal_Method_UnregisterFilter' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterfilter.php',
+ 'Smarty_Internal_Method_UnregisterObject' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterobject.php',
+ 'Smarty_Internal_Method_UnregisterPlugin' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterplugin.php',
+ 'Smarty_Internal_Method_UnregisterResource' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterresource.php',
+ 'Smarty_Internal_Nocache_Insert' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_nocache_insert.php',
+ 'Smarty_Internal_ParseTree' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_parsetree.php',
+ 'Smarty_Internal_ParseTree_Code' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_parsetree_code.php',
+ 'Smarty_Internal_ParseTree_Dq' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_parsetree_dq.php',
+ 'Smarty_Internal_ParseTree_DqContent' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_parsetree_dqcontent.php',
+ 'Smarty_Internal_ParseTree_Tag' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_parsetree_tag.php',
+ 'Smarty_Internal_ParseTree_Template' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_parsetree_template.php',
+ 'Smarty_Internal_ParseTree_Text' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_parsetree_text.php',
+ 'Smarty_Internal_Resource_Eval' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_resource_eval.php',
+ 'Smarty_Internal_Resource_Extends' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_resource_extends.php',
+ 'Smarty_Internal_Resource_File' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_resource_file.php',
+ 'Smarty_Internal_Resource_Php' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_resource_php.php',
+ 'Smarty_Internal_Resource_Registered' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_resource_registered.php',
+ 'Smarty_Internal_Resource_Stream' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_resource_stream.php',
+ 'Smarty_Internal_Resource_String' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_resource_string.php',
+ 'Smarty_Internal_Runtime_CacheModify' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_cachemodify.php',
+ 'Smarty_Internal_Runtime_Capture' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_capture.php',
+ 'Smarty_Internal_Runtime_CodeFrame' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_codeframe.php',
+ 'Smarty_Internal_Runtime_FilterHandler' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_filterhandler.php',
+ 'Smarty_Internal_Runtime_Foreach' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_foreach.php',
+ 'Smarty_Internal_Runtime_GetIncludePath' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_getincludepath.php',
+ 'Smarty_Internal_Runtime_Inheritance' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_inheritance.php',
+ 'Smarty_Internal_Runtime_Make_Nocache' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_make_nocache.php',
+ 'Smarty_Internal_Runtime_TplFunction' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_tplfunction.php',
+ 'Smarty_Internal_Runtime_UpdateCache' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_updatecache.php',
+ 'Smarty_Internal_Runtime_UpdateScope' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_updatescope.php',
+ 'Smarty_Internal_Runtime_WriteFile' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_runtime_writefile.php',
+ 'Smarty_Internal_SmartyTemplateCompiler' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_smartytemplatecompiler.php',
+ 'Smarty_Internal_Template' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_template.php',
+ 'Smarty_Internal_TemplateBase' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_templatebase.php',
+ 'Smarty_Internal_TemplateCompilerBase' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_templatecompilerbase.php',
+ 'Smarty_Internal_Templatelexer' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_templatelexer.php',
+ 'Smarty_Internal_Templateparser' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_templateparser.php',
+ 'Smarty_Internal_TestInstall' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_testinstall.php',
+ 'Smarty_Internal_Undefined' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_undefined.php',
+ 'Smarty_Resource' => $baseDir . '/lib/Smarty/sysplugins/smarty_resource.php',
+ 'Smarty_Resource_Custom' => $baseDir . '/lib/Smarty/sysplugins/smarty_resource_custom.php',
+ 'Smarty_Resource_Recompiled' => $baseDir . '/lib/Smarty/sysplugins/smarty_resource_recompiled.php',
+ 'Smarty_Resource_Uncompiled' => $baseDir . '/lib/Smarty/sysplugins/smarty_resource_uncompiled.php',
+ 'Smarty_Security' => $baseDir . '/lib/Smarty/sysplugins/smarty_security.php',
+ 'Smarty_Template_Cached' => $baseDir . '/lib/Smarty/sysplugins/smarty_template_cached.php',
+ 'Smarty_Template_Compiled' => $baseDir . '/lib/Smarty/sysplugins/smarty_template_compiled.php',
+ 'Smarty_Template_Config' => $baseDir . '/lib/Smarty/sysplugins/smarty_template_config.php',
+ 'Smarty_Template_Resource_Base' => $baseDir . '/lib/Smarty/sysplugins/smarty_template_resource_base.php',
+ 'Smarty_Template_Source' => $baseDir . '/lib/Smarty/sysplugins/smarty_template_source.php',
+ 'Smarty_Undefined_Variable' => $baseDir . '/lib/Smarty/sysplugins/smarty_undefined_variable.php',
+ 'Smarty_Variable' => $baseDir . '/lib/Smarty/sysplugins/smarty_variable.php',
+ 'TPC_yyStackEntry' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_configfileparser.php',
+ 'TPC_yyToken' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_configfileparser.php',
+ 'TP_yyStackEntry' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_templateparser.php',
+ 'TP_yyToken' => $baseDir . '/lib/Smarty/sysplugins/smarty_internal_templateparser.php',
+ 'Test\\DB\\TestDB' => $baseDir . '/lib/Test/DB/TestDB.php',
+ 'Test\\Test' => $baseDir . '/lib/Test/Test.php',
'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php',
'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php',
'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php',
@@ -632,4 +846,19 @@ return array(
'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php',
'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php',
'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php',
+ 'pBarcode128' => $baseDir . '/lib/pChart2.1.4/class/pBarcode128.class.php',
+ 'pBarcode39' => $baseDir . '/lib/pChart2.1.4/class/pBarcode39.class.php',
+ 'pBubble' => $baseDir . '/lib/pChart2.1.4/class/pBubble.class.php',
+ 'pCache' => $baseDir . '/lib/pChart2.1.4/class/pCache.class.php',
+ 'pData' => $baseDir . '/lib/pChart2.1.4/class/pData.class.php',
+ 'pDraw' => $baseDir . '/lib/pChart2.1.4/class/pDraw.class.php',
+ 'pImage' => $baseDir . '/lib/pChart2.1.4/class/pImage.class.php',
+ 'pIndicator' => $baseDir . '/lib/pChart2.1.4/class/pIndicator.class.php',
+ 'pPie' => $baseDir . '/lib/pChart2.1.4/class/pPie.class.php',
+ 'pRadar' => $baseDir . '/lib/pChart2.1.4/class/pRadar.class.php',
+ 'pScatter' => $baseDir . '/lib/pChart2.1.4/class/pScatter.class.php',
+ 'pSplit' => $baseDir . '/lib/pChart2.1.4/class/pSplit.class.php',
+ 'pSpring' => $baseDir . '/lib/pChart2.1.4/class/pSpring.class.php',
+ 'pStock' => $baseDir . '/lib/pChart2.1.4/class/pStock.class.php',
+ 'pSurface' => $baseDir . '/lib/pChart2.1.4/class/pSurface.class.php',
);
diff --git a/www/vendor/composer/autoload_files.php b/www/vendor/composer/autoload_files.php
index edd03c73..dff73413 100644
--- a/www/vendor/composer/autoload_files.php
+++ b/www/vendor/composer/autoload_files.php
@@ -6,7 +6,7 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
- '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
'ec07570ca5a812141189b1fa81503674' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert/Functions.php',
+ '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
'6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
);
diff --git a/www/vendor/composer/autoload_psr4.php b/www/vendor/composer/autoload_psr4.php
index 23bde1f9..3c243ed8 100644
--- a/www/vendor/composer/autoload_psr4.php
+++ b/www/vendor/composer/autoload_psr4.php
@@ -6,7 +6,7 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
- 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'),
+ 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/reflection-docblock/src', $vendorDir . '/phpdocumentor/type-resolver/src'),
'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src/Prophecy'),
diff --git a/www/vendor/composer/autoload_static.php b/www/vendor/composer/autoload_static.php
index 33acc76f..7fe2ade1 100644
--- a/www/vendor/composer/autoload_static.php
+++ b/www/vendor/composer/autoload_static.php
@@ -7,8 +7,8 @@ namespace Composer\Autoload;
class ComposerStaticInit10fe8fe2ec4017b8644d2b64bcf398b9
{
public static $files = array (
- '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
'ec07570ca5a812141189b1fa81503674' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert/Functions.php',
+ '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
'6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
);
@@ -41,8 +41,8 @@ class ComposerStaticInit10fe8fe2ec4017b8644d2b64bcf398b9
'phpDocumentor\\Reflection\\' =>
array (
0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src',
- 1 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
- 2 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
+ 1 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
+ 2 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
),
'Webmozart\\Assert\\' =>
array (
@@ -71,7 +71,51 @@ class ComposerStaticInit10fe8fe2ec4017b8644d2b64bcf398b9
);
public static $classMap = array (
+ 'Autoloader\\Autoload' => __DIR__ . '/../..' . '/lib/autoloader.php',
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
+ 'CoreLibs\\ACL\\Login' => __DIR__ . '/../..' . '/lib/CoreLibs/ACL/Login.php',
+ 'CoreLibs\\Admin\\Backend' => __DIR__ . '/../..' . '/lib/CoreLibs/Admin/Backend.php',
+ 'CoreLibs\\Basic' => __DIR__ . '/../..' . '/lib/CoreLibs/Basic.php',
+ 'CoreLibs\\Check\\Email' => __DIR__ . '/../..' . '/lib/CoreLibs/Check/Email.php',
+ 'CoreLibs\\Check\\File' => __DIR__ . '/../..' . '/lib/CoreLibs/Check/File.php',
+ 'CoreLibs\\Check\\Jason' => __DIR__ . '/../..' . '/lib/CoreLibs/Check/Jason.php',
+ 'CoreLibs\\Check\\Password' => __DIR__ . '/../..' . '/lib/CoreLibs/Check/Password.php',
+ 'CoreLibs\\Check\\PhpVersion' => __DIR__ . '/../..' . '/lib/CoreLibs/Check/PhpVersion.php',
+ 'CoreLibs\\Combined\\ArrayHandler' => __DIR__ . '/../..' . '/lib/CoreLibs/Combined/ArrayHandler.php',
+ 'CoreLibs\\Combined\\DateTime' => __DIR__ . '/../..' . '/lib/CoreLibs/Combined/DateTime.php',
+ 'CoreLibs\\Convert\\Byte' => __DIR__ . '/../..' . '/lib/CoreLibs/Convert/Byte.php',
+ 'CoreLibs\\Convert\\Colors' => __DIR__ . '/../..' . '/lib/CoreLibs/Convert/Colors.php',
+ 'CoreLibs\\Convert\\Html' => __DIR__ . '/../..' . '/lib/CoreLibs/Convert/Html.php',
+ 'CoreLibs\\Convert\\Math' => __DIR__ . '/../..' . '/lib/CoreLibs/Convert/Math.php',
+ 'CoreLibs\\Convert\\MimeAppName' => __DIR__ . '/../..' . '/lib/CoreLibs/Convert/MimeAppName.php',
+ 'CoreLibs\\Create\\Hash' => __DIR__ . '/../..' . '/lib/CoreLibs/Create/Hash.php',
+ 'CoreLibs\\Create\\RandomKey' => __DIR__ . '/../..' . '/lib/CoreLibs/Create/RandomKey.php',
+ 'CoreLibs\\Create\\Uids' => __DIR__ . '/../..' . '/lib/CoreLibs/Create/Uids.php',
+ 'CoreLibs\\DB\\Extended\\ArrayIO' => __DIR__ . '/../..' . '/lib/CoreLibs/DB/Extended/ArrayIO.php',
+ 'CoreLibs\\DB\\IO' => __DIR__ . '/../..' . '/lib/CoreLibs/DB/IO.php',
+ 'CoreLibs\\DB\\SQL\\PgSQL' => __DIR__ . '/../..' . '/lib/CoreLibs/DB/SQL/PgSQL.php',
+ 'CoreLibs\\Debug\\FileWriter' => __DIR__ . '/../..' . '/lib/CoreLibs/Debug/FileWriter.php',
+ 'CoreLibs\\Debug\\Logging' => __DIR__ . '/../..' . '/lib/CoreLibs/Debug/Logging.php',
+ 'CoreLibs\\Debug\\RunningTime' => __DIR__ . '/../..' . '/lib/CoreLibs/Debug/RunningTime.php',
+ 'CoreLibs\\Debug\\Support' => __DIR__ . '/../..' . '/lib/CoreLibs/Debug/Support.php',
+ 'CoreLibs\\Get\\System' => __DIR__ . '/../..' . '/lib/CoreLibs/Get/System.php',
+ 'CoreLibs\\Language\\Core\\CachedFileReader' => __DIR__ . '/../..' . '/lib/CoreLibs/Language/Core/CachedFileReader.php',
+ 'CoreLibs\\Language\\Core\\FileReader' => __DIR__ . '/../..' . '/lib/CoreLibs/Language/Core/FileReader.php',
+ 'CoreLibs\\Language\\Core\\GetTextReader' => __DIR__ . '/../..' . '/lib/CoreLibs/Language/Core/GetTextReader.php',
+ 'CoreLibs\\Language\\Core\\StreamReader' => __DIR__ . '/../..' . '/lib/CoreLibs/Language/Core/StreamReader.php',
+ 'CoreLibs\\Language\\Core\\StringReader' => __DIR__ . '/../..' . '/lib/CoreLibs/Language/Core/StringReader.php',
+ 'CoreLibs\\Language\\Encoding' => __DIR__ . '/../..' . '/lib/CoreLibs/Language/Encoding.php',
+ 'CoreLibs\\Language\\L10n' => __DIR__ . '/../..' . '/lib/CoreLibs/Language/L10n.php',
+ 'CoreLibs\\Output\\Form\\Elements' => __DIR__ . '/../..' . '/lib/CoreLibs/Output/Form/Elements.php',
+ 'CoreLibs\\Output\\Form\\Generate' => __DIR__ . '/../..' . '/lib/CoreLibs/Output/Form/Generate.php',
+ 'CoreLibs\\Output\\Form\\Token' => __DIR__ . '/../..' . '/lib/CoreLibs/Output/Form/Token.php',
+ 'CoreLibs\\Output\\Image' => __DIR__ . '/../..' . '/lib/CoreLibs/Output/Image.php',
+ 'CoreLibs\\Output\\ProgressBar' => __DIR__ . '/../..' . '/lib/CoreLibs/Output/Progressbar.php',
+ 'CoreLibs\\Template\\SmartyExtend' => __DIR__ . '/../..' . '/lib/CoreLibs/Template/SmartyExtend.php',
+ 'FileUpload\\Core\\qqUploadedFile' => __DIR__ . '/../..' . '/lib/FileUpload/Core/qqUploadedFile.php',
+ 'FileUpload\\Core\\qqUploadedFileForm' => __DIR__ . '/../..' . '/lib/FileUpload/Core/qqUploadedFileForm.php',
+ 'FileUpload\\Core\\qqUploadedFileXhr' => __DIR__ . '/../..' . '/lib/FileUpload/Core/qqUploadedFileXhr.php',
+ 'FileUpload\\qqFileUploader' => __DIR__ . '/../..' . '/lib/FileUpload/qqFileUploader.php',
'PHPUnit\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php',
'PHPUnit\\Framework\\ActualValueIsNotAnObjectException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ActualValueIsNotAnObjectException.php',
'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php',
@@ -689,6 +733,176 @@ class ComposerStaticInit10fe8fe2ec4017b8644d2b64bcf398b9
'SebastianBergmann\\Type\\UnknownType' => __DIR__ . '/..' . '/sebastian/type/src/UnknownType.php',
'SebastianBergmann\\Type\\VoidType' => __DIR__ . '/..' . '/sebastian/type/src/VoidType.php',
'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php',
+ 'Smarty' => __DIR__ . '/../..' . '/lib/Smarty/Smarty.class.php',
+ 'SmartyBC' => __DIR__ . '/../..' . '/lib/Smarty/SmartyBC.class.php',
+ 'SmartyCompilerException' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smartycompilerexception.php',
+ 'SmartyException' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smartyexception.php',
+ 'Smarty_Autoloader' => __DIR__ . '/../..' . '/lib/Smarty/Autoloader.php',
+ 'Smarty_CacheResource' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_cacheresource.php',
+ 'Smarty_CacheResource_Custom' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_cacheresource_custom.php',
+ 'Smarty_CacheResource_KeyValueStore' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_cacheresource_keyvaluestore.php',
+ 'Smarty_Data' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_data.php',
+ 'Smarty_Internal_Block' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_block.php',
+ 'Smarty_Internal_CacheResource_File' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_cacheresource_file.php',
+ 'Smarty_Internal_CompileBase' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compilebase.php',
+ 'Smarty_Internal_Compile_Append' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_append.php',
+ 'Smarty_Internal_Compile_Assign' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_assign.php',
+ 'Smarty_Internal_Compile_Block' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_block.php',
+ 'Smarty_Internal_Compile_Blockclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_block.php',
+ 'Smarty_Internal_Compile_Break' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_break.php',
+ 'Smarty_Internal_Compile_Call' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_call.php',
+ 'Smarty_Internal_Compile_Capture' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_capture.php',
+ 'Smarty_Internal_Compile_CaptureClose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_capture.php',
+ 'Smarty_Internal_Compile_Config_Load' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_config_load.php',
+ 'Smarty_Internal_Compile_Continue' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_continue.php',
+ 'Smarty_Internal_Compile_Debug' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_debug.php',
+ 'Smarty_Internal_Compile_Else' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Elseif' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Eval' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_eval.php',
+ 'Smarty_Internal_Compile_Extends' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_extends.php',
+ 'Smarty_Internal_Compile_For' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_for.php',
+ 'Smarty_Internal_Compile_Forclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_for.php',
+ 'Smarty_Internal_Compile_Foreach' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php',
+ 'Smarty_Internal_Compile_Foreachclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php',
+ 'Smarty_Internal_Compile_Foreachelse' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php',
+ 'Smarty_Internal_Compile_Forelse' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_for.php',
+ 'Smarty_Internal_Compile_Function' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_function.php',
+ 'Smarty_Internal_Compile_Functionclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_function.php',
+ 'Smarty_Internal_Compile_If' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Ifclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_if.php',
+ 'Smarty_Internal_Compile_Include' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_include.php',
+ 'Smarty_Internal_Compile_Include_Php' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_include_php.php',
+ 'Smarty_Internal_Compile_Insert' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_insert.php',
+ 'Smarty_Internal_Compile_Ldelim' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_ldelim.php',
+ 'Smarty_Internal_Compile_Make_Nocache' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_make_nocache.php',
+ 'Smarty_Internal_Compile_Nocache' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_nocache.php',
+ 'Smarty_Internal_Compile_Nocacheclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_nocache.php',
+ 'Smarty_Internal_Compile_Private_Block_Plugin' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_block_plugin.php',
+ 'Smarty_Internal_Compile_Private_ForeachSection' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_foreachsection.php',
+ 'Smarty_Internal_Compile_Private_Function_Plugin' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_function_plugin.php',
+ 'Smarty_Internal_Compile_Private_Modifier' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_modifier.php',
+ 'Smarty_Internal_Compile_Private_Object_Block_Function' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_object_block_function.php',
+ 'Smarty_Internal_Compile_Private_Object_Function' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_object_function.php',
+ 'Smarty_Internal_Compile_Private_Php' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_php.php',
+ 'Smarty_Internal_Compile_Private_Print_Expression' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_print_expression.php',
+ 'Smarty_Internal_Compile_Private_Registered_Block' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_block.php',
+ 'Smarty_Internal_Compile_Private_Registered_Function' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_function.php',
+ 'Smarty_Internal_Compile_Private_Special_Variable' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_private_special_variable.php',
+ 'Smarty_Internal_Compile_Rdelim' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_rdelim.php',
+ 'Smarty_Internal_Compile_Section' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_section.php',
+ 'Smarty_Internal_Compile_Sectionclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_section.php',
+ 'Smarty_Internal_Compile_Sectionelse' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_section.php',
+ 'Smarty_Internal_Compile_Setfilter' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_setfilter.php',
+ 'Smarty_Internal_Compile_Setfilterclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_setfilter.php',
+ 'Smarty_Internal_Compile_Shared_Inheritance' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_shared_inheritance.php',
+ 'Smarty_Internal_Compile_While' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_while.php',
+ 'Smarty_Internal_Compile_Whileclose' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_compile_while.php',
+ 'Smarty_Internal_Config_File_Compiler' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_config_file_compiler.php',
+ 'Smarty_Internal_Configfilelexer' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_configfilelexer.php',
+ 'Smarty_Internal_Configfileparser' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_configfileparser.php',
+ 'Smarty_Internal_Data' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_data.php',
+ 'Smarty_Internal_Debug' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_debug.php',
+ 'Smarty_Internal_Extension_Clear' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_extension_clear.php',
+ 'Smarty_Internal_Extension_Handler' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_extension_handler.php',
+ 'Smarty_Internal_Method_AddAutoloadFilters' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_addautoloadfilters.php',
+ 'Smarty_Internal_Method_AddDefaultModifiers' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_adddefaultmodifiers.php',
+ 'Smarty_Internal_Method_Append' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_append.php',
+ 'Smarty_Internal_Method_AppendByRef' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_appendbyref.php',
+ 'Smarty_Internal_Method_AssignByRef' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_assignbyref.php',
+ 'Smarty_Internal_Method_AssignGlobal' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_assignglobal.php',
+ 'Smarty_Internal_Method_ClearAllAssign' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_clearallassign.php',
+ 'Smarty_Internal_Method_ClearAllCache' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_clearallcache.php',
+ 'Smarty_Internal_Method_ClearAssign' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_clearassign.php',
+ 'Smarty_Internal_Method_ClearCache' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_clearcache.php',
+ 'Smarty_Internal_Method_ClearCompiledTemplate' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_clearcompiledtemplate.php',
+ 'Smarty_Internal_Method_ClearConfig' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_clearconfig.php',
+ 'Smarty_Internal_Method_CompileAllConfig' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_compileallconfig.php',
+ 'Smarty_Internal_Method_CompileAllTemplates' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_compilealltemplates.php',
+ 'Smarty_Internal_Method_ConfigLoad' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_configload.php',
+ 'Smarty_Internal_Method_CreateData' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_createdata.php',
+ 'Smarty_Internal_Method_GetAutoloadFilters' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_getautoloadfilters.php',
+ 'Smarty_Internal_Method_GetConfigVars' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_getconfigvars.php',
+ 'Smarty_Internal_Method_GetDebugTemplate' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_getdebugtemplate.php',
+ 'Smarty_Internal_Method_GetDefaultModifiers' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_getdefaultmodifiers.php',
+ 'Smarty_Internal_Method_GetGlobal' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_getglobal.php',
+ 'Smarty_Internal_Method_GetRegisteredObject' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_getregisteredobject.php',
+ 'Smarty_Internal_Method_GetStreamVariable' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_getstreamvariable.php',
+ 'Smarty_Internal_Method_GetTags' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_gettags.php',
+ 'Smarty_Internal_Method_GetTemplateVars' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_gettemplatevars.php',
+ 'Smarty_Internal_Method_LoadFilter' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_loadfilter.php',
+ 'Smarty_Internal_Method_LoadPlugin' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_loadplugin.php',
+ 'Smarty_Internal_Method_MustCompile' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_mustcompile.php',
+ 'Smarty_Internal_Method_RegisterCacheResource' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registercacheresource.php',
+ 'Smarty_Internal_Method_RegisterClass' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerclass.php',
+ 'Smarty_Internal_Method_RegisterDefaultConfigHandler' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerdefaultconfighandler.php',
+ 'Smarty_Internal_Method_RegisterDefaultPluginHandler' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php',
+ 'Smarty_Internal_Method_RegisterDefaultTemplateHandler' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php',
+ 'Smarty_Internal_Method_RegisterFilter' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerfilter.php',
+ 'Smarty_Internal_Method_RegisterObject' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerobject.php',
+ 'Smarty_Internal_Method_RegisterPlugin' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerplugin.php',
+ 'Smarty_Internal_Method_RegisterResource' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_registerresource.php',
+ 'Smarty_Internal_Method_SetAutoloadFilters' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_setautoloadfilters.php',
+ 'Smarty_Internal_Method_SetDebugTemplate' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_setdebugtemplate.php',
+ 'Smarty_Internal_Method_SetDefaultModifiers' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_setdefaultmodifiers.php',
+ 'Smarty_Internal_Method_UnloadFilter' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_unloadfilter.php',
+ 'Smarty_Internal_Method_UnregisterCacheResource' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_unregistercacheresource.php',
+ 'Smarty_Internal_Method_UnregisterFilter' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterfilter.php',
+ 'Smarty_Internal_Method_UnregisterObject' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterobject.php',
+ 'Smarty_Internal_Method_UnregisterPlugin' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterplugin.php',
+ 'Smarty_Internal_Method_UnregisterResource' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_method_unregisterresource.php',
+ 'Smarty_Internal_Nocache_Insert' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_nocache_insert.php',
+ 'Smarty_Internal_ParseTree' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_parsetree.php',
+ 'Smarty_Internal_ParseTree_Code' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_parsetree_code.php',
+ 'Smarty_Internal_ParseTree_Dq' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_parsetree_dq.php',
+ 'Smarty_Internal_ParseTree_DqContent' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_parsetree_dqcontent.php',
+ 'Smarty_Internal_ParseTree_Tag' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_parsetree_tag.php',
+ 'Smarty_Internal_ParseTree_Template' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_parsetree_template.php',
+ 'Smarty_Internal_ParseTree_Text' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_parsetree_text.php',
+ 'Smarty_Internal_Resource_Eval' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_resource_eval.php',
+ 'Smarty_Internal_Resource_Extends' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_resource_extends.php',
+ 'Smarty_Internal_Resource_File' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_resource_file.php',
+ 'Smarty_Internal_Resource_Php' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_resource_php.php',
+ 'Smarty_Internal_Resource_Registered' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_resource_registered.php',
+ 'Smarty_Internal_Resource_Stream' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_resource_stream.php',
+ 'Smarty_Internal_Resource_String' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_resource_string.php',
+ 'Smarty_Internal_Runtime_CacheModify' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_cachemodify.php',
+ 'Smarty_Internal_Runtime_Capture' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_capture.php',
+ 'Smarty_Internal_Runtime_CodeFrame' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_codeframe.php',
+ 'Smarty_Internal_Runtime_FilterHandler' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_filterhandler.php',
+ 'Smarty_Internal_Runtime_Foreach' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_foreach.php',
+ 'Smarty_Internal_Runtime_GetIncludePath' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_getincludepath.php',
+ 'Smarty_Internal_Runtime_Inheritance' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_inheritance.php',
+ 'Smarty_Internal_Runtime_Make_Nocache' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_make_nocache.php',
+ 'Smarty_Internal_Runtime_TplFunction' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_tplfunction.php',
+ 'Smarty_Internal_Runtime_UpdateCache' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_updatecache.php',
+ 'Smarty_Internal_Runtime_UpdateScope' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_updatescope.php',
+ 'Smarty_Internal_Runtime_WriteFile' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_runtime_writefile.php',
+ 'Smarty_Internal_SmartyTemplateCompiler' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_smartytemplatecompiler.php',
+ 'Smarty_Internal_Template' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_template.php',
+ 'Smarty_Internal_TemplateBase' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_templatebase.php',
+ 'Smarty_Internal_TemplateCompilerBase' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_templatecompilerbase.php',
+ 'Smarty_Internal_Templatelexer' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_templatelexer.php',
+ 'Smarty_Internal_Templateparser' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_templateparser.php',
+ 'Smarty_Internal_TestInstall' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_testinstall.php',
+ 'Smarty_Internal_Undefined' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_undefined.php',
+ 'Smarty_Resource' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_resource.php',
+ 'Smarty_Resource_Custom' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_resource_custom.php',
+ 'Smarty_Resource_Recompiled' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_resource_recompiled.php',
+ 'Smarty_Resource_Uncompiled' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_resource_uncompiled.php',
+ 'Smarty_Security' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_security.php',
+ 'Smarty_Template_Cached' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_template_cached.php',
+ 'Smarty_Template_Compiled' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_template_compiled.php',
+ 'Smarty_Template_Config' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_template_config.php',
+ 'Smarty_Template_Resource_Base' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_template_resource_base.php',
+ 'Smarty_Template_Source' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_template_source.php',
+ 'Smarty_Undefined_Variable' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_undefined_variable.php',
+ 'Smarty_Variable' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_variable.php',
+ 'TPC_yyStackEntry' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_configfileparser.php',
+ 'TPC_yyToken' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_configfileparser.php',
+ 'TP_yyStackEntry' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_templateparser.php',
+ 'TP_yyToken' => __DIR__ . '/../..' . '/lib/Smarty/sysplugins/smarty_internal_templateparser.php',
+ 'Test\\DB\\TestDB' => __DIR__ . '/../..' . '/lib/Test/DB/TestDB.php',
+ 'Test\\Test' => __DIR__ . '/../..' . '/lib/Test/Test.php',
'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php',
'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php',
'TheSeer\\Tokenizer\\NamespaceUriException' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUriException.php',
@@ -697,6 +911,21 @@ class ComposerStaticInit10fe8fe2ec4017b8644d2b64bcf398b9
'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php',
'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php',
'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php',
+ 'pBarcode128' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pBarcode128.class.php',
+ 'pBarcode39' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pBarcode39.class.php',
+ 'pBubble' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pBubble.class.php',
+ 'pCache' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pCache.class.php',
+ 'pData' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pData.class.php',
+ 'pDraw' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pDraw.class.php',
+ 'pImage' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pImage.class.php',
+ 'pIndicator' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pIndicator.class.php',
+ 'pPie' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pPie.class.php',
+ 'pRadar' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pRadar.class.php',
+ 'pScatter' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pScatter.class.php',
+ 'pSplit' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pSplit.class.php',
+ 'pSpring' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pSpring.class.php',
+ 'pStock' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pStock.class.php',
+ 'pSurface' => __DIR__ . '/../..' . '/lib/pChart2.1.4/class/pSurface.class.php',
);
public static function getInitializer(ClassLoader $loader)