Files
2020-09-25 20:30:09 +02:00

30 lines
935 B
PHP

<?php
/*
Author: Riccardo Di Dato
Creation Date: 07/gen/2016
*/
// SMTP
use ASD\Context;
Context::setDefaultMultilanguageLocaleName("en");
Context::setCurrentLocale("gui","en");
Context::setCurrentLocale("system","en");
Context::setCurrentLocale("api","en");
// %% LOGS
$logPath = Context::getEnvironment()->getDirectoryPath("log");
Context::getEnvironment()->addFilePath("log.job", $logPath."/job.log");
// %% FS Exchange Files
Context::getEnvironment()->addDirectoryPath("comunication", "/jobComunication");
Context::getEnvironment()->addFilePath("comunication.shutdown", Context::getEnvironment()->getDirectoryPath("comunication")."/shutdown" );
Context::getEnvironment()->addFilePath("comunication.execution", Context::getEnvironment()->getDirectoryPath("comunication")."/execution" );
Context::getEnvironment()->addFilePath("comunication.idle", Context::getEnvironment()->getDirectoryPath("comunication")."/idle" );
?>