34 return "File Object Settings have been updated.";
56 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
57 $client_ini = $environment->
getResource(Environment::RESOURCE_CLIENT_INI);
59 $use_ascii_characters_only = $client_ini->readVariable(
65 "INSERT IGNORE settings (module, keyword, value) VALUES (%s, %s, %s)",
66 [
'text',
'text',
'text'],
67 [
'file_access',
'download_ascii_filename', $use_ascii_characters_only ?
'1' :
'0']
71 "UPDATE settings SET module = 'file_access' WHERE keyword = 'bgtask_download'" 74 $client_ini->removeGroup(
'file_access');
85 $client_ini = $environment->
getResource(Environment::RESOURCE_CLIENT_INI);
87 return $client_ini->groupExists(
"file_access");
An objective is a desired state of the system that is supposed to be created by the setup...
isApplicable(Environment $environment)
Get to know whether the objective is applicable.
getHash()
Get a hash for this objective.
isNotable()
Get to know if this is an interesting objective for a human.
getLabel()
Get a label that describes this objective.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
achieve(Environment $environment)
Objectives can be achieved.
getPreconditions(Environment $environment)
Objectives might depend on other objectives.
An environment holds resources to be used in the setup process.