to the URL & repalce with name of the desired GUI. // / If a user attempts a GUI that is not available --Default GUI-- will be used instead. // / Valid options are TRUE or FALSE. // / Default is TRUE. $AllowUserSelectableGui = TRUE; // / --Supported Languages-- // / The list of languages that are supported by this application. // / Before adding a supported language be sure to add the matching folder full of GUI files to /Languages. // / Errors will occur if you add an element to this array without also adding a matching Language folder. // / Default is 'en', 'fr', 'es', 'zh', 'hi', 'ar', 'ru', 'uk', 'bn', 'de', 'ko', 'it', 'pt'. $SupportedLanguages = array('en', 'fr', 'es', 'zh', 'hi', 'ar', 'ru', 'uk', 'bn', 'de', 'ko', 'it', 'pt'); // / --Default Language-- // / The default language to use for GUI elements. // / See README.md for the latest language support information. // / If the specified language is not available 'en' will be used instead. // / ISO 639-1 reference is available here at https://www.andiamo.co.uk/resources/iso-language-codes/ // / Valid options are ISO 639-1 language codes found in the list of --Supported Languages--. // / Default is en. $DefaultLanguage = 'en'; // / --Allow User Selectable Language-- // / Provide users with the option to adjust which language is displayed via appending a parameter to the URL. // / Enable or disable dynamic language selection via the $_GET['language'] variable. // / If set to TRUE a user will be able to select different languages via $_GET['language']. // / If set to FALSE the $DefaultLanguage will always be used. // / To submit a $_GET request append ?language= to the URL & repalce with a 2 digit ISO 639-1 language code. // / If a user attempts a language that is not available --Default Language-- will be used instead. // / Valid options are TRUE or FALSE. // / Default is TRUE. $AllowUserSelectableLanguage = TRUE; // / --User Shareable File Links-- // / Provide users with the option to generate shareable URLs for the files they upload or convert. // / If set to TRUE the user will be provided with buttons to create URLs to files that can be copied & pasted elsewhere. // / If set to FALSE the user will not be provided with the buttons to create URLs to files. // / Files with active links will be removed after the --File Deletion Age Threshold-- is met. // / Active file links will break after the --File Deletion Age Theshold-- is met. // / Valid options are TRUE or FALSE. // / Default is TRUE. $AllowUserShare = TRUE; // / --Allowed Conversion Types-- // / The list of supported conversion types. // / Only conversion types contained in this list will be processed. // / If a conversion type is disabled, options for processing that conversion will not be displayed by the UI. // / Default is 'Document', 'Image', 'Model', 'Drawing', 'Video', 'Audio', 'Archive', 'Stream', 'OCR'. $SupportedConversionTypes = array('Document', 'Image', 'Model', 'Drawing', 'Video', 'Subtitle', 'Audio', 'Archive', 'Stream', 'OCR'); // / --File Deletion Age Theshold-- // / Age in minutes of files to be deleted. // / Set to 0 to keep files forever. // / Default is 60. $DeleteThreshold = 60; // / --Enhanced Logging Verbosity-- // / Enable verbose logging. // / If set to TRUE all core events will be logged. // / If set to FALSE only errors & certain core events will be logged. // / Valid options are TRUE or FALSE. // / Default is TRUE. $Verbose = TRUE; // / --Maximum Log File Size-- // / Set the number of bytes to store in each logfile before splitting to a new one. // / Default is 1048576. $MaxLogSize = 1048576; // / --UI Element Font-- // / Set the default font to use throughout HRConvert2 GUI elements. // / The selected font must be installed on the client's machine. // / If the font is not available the client default will be used. // / Default is Arial. $Font = 'Arial'; // / --Button Color-- // / Set the default color scheme to use for buttons. // / Valid options are 'RED', 'GREEN', 'BLUE' or 'GREY'. // / Default is BLUE. $ButtonStyle = 'BLUE'; // / --Spinner Style-- // / Set the default spinner to use as a loading indicator while operations are being processed. // / Valid options are 0, 1, 2, 3, 4, 5 or 6. // / Default is 6. $SpinnerStyle = 6; // / --Spinner Color-- // / Set the default color to use for the loading spinner. // / If you would like the spinner to automatically match the rest of the color scheme, set this to $ButtonStyle. // / Valid options are 'RED', 'GREEN', 'BLUE', 'GREY' or '$ButtonStyle'. // / Default is $ButtonStyle. $SpinnerColor = $ButtonStyle; // / --Show Full GUI-- // / Set whether or not to display a full GUI by default. // / If this is set to TRUE a full GUI with text will be displayed. // / If this is set to FALSE a minimal GUI with only required elements will be displayed. // / Valid options are TRUE or FALSE. // / Default is TRUE. $ShowGUI = TRUE; // / --Show Fine Print-- // / Set whether or not to display the Terms of Service & Privacy Policy links. // / If set to TRUE links to the --Terms of Service URL-- and --Privacy Policy URL-- will display at the bottom of the page. // / If set to FALSE links to the --Terms of Service URL-- and --Privacy Policy URL-- will be hidden. // / Valid options are TRUE or FALSE. // / Default is TRUE. $ShowFinePrint = TRUE; // / --Terms of Service URL-- // / The URL to use for the Terms of Service link at te bottom of the GUI. // / Only takes effect if --Show Fine Print-- is set to TRUE. $TOSURL = 'https://www.honestrepair.net/index.php/terms-of-service/'; // / --Privacy Policy URL-- // / The URL to use for the Privacy Policy link at te bottom of the GUI. // / Only takes effect if --Show Fine Print-- is set to TRUE. $PPURL = 'https://www.honestrepair.net/index.php/privacy-policy/'; // / ------------------------------