5, 'parameters' => [ [ 'name' => 'db_driver', 'type' => 'string', 'description' => 'Target available sgbd : pdo_pgsql, pdo_mysql, pdo_sqlsrv, pdo_oci.' ], [ 'name' => 'db_host', 'type' => 'string', 'description' => 'Database location.' ], [ 'name' => 'db_name', 'type' => 'string', 'description' => 'The Database name corresponds to the Module name.' ], [ 'name' => 'db_pass', 'type' => 'string', 'required' => false, 'description' => 'Password to access to the database.' ], [ 'name' => 'db_user', 'type' => 'string', 'required' => true, 'description' => 'Login to access to the database.' ], [ 'name' => 'file_path', 'type' => 'string', 'shortcut' => 'f', 'description' => 'Path to where files should be stored.' ], [ 'name' => 'timezone', 'type' => 'string', 'shortcut' => 't', 'description' => 'Timezone of the install.' ], [ 'name' => 'install_sent', 'type' => 'integer', 'description' => '' ], [ 'name' => 'module_lang', 'type' => 'string', 'shortcut' => 'l', 'description' => 'The default language will be used when the language parameters are not specified for the graphical interface and the data.' ], [ 'name' => 'module_mode', 'type' => 'string', 'description' => 'The deployment mode allow and deny access to resources regarding the needs of the platform.The test & development mode will enables the debugs tools, the unit tests, and the access to all the resources. The production mode is focused on the security and allow only the required resources to run TAO.' ], [ 'name' => 'module_namespace', 'type' => 'string', 'description' => 'The module\'s namespace will be used to identify the data stored by your module. Each data collected by tao is identified uniquely by an URI composed by the module namespace followed by the resource identifier (NAMESPACE#resource).' ], [ 'name' => 'module_url', 'type' => 'string', 'shortcut' => 'url', 'required' => true, 'description' => 'The URL to access the module from a web browser.' ], [ 'name' => 'user_login', 'type' => 'string', 'shortcut' => 'u', 'required' => true, 'description' => 'The login of the administrator to be created.' ], [ 'name' => 'user_pass', 'type' => 'string', 'shortcut' => 'p', 'required' => true, 'description' => 'The password of the administrator.' ], [ 'name' => 'import_local', 'type' => 'boolean', 'shortcut' => 'i', 'description' => 'States if the local.rdf files must be imported or not.' ], [ 'name' => 'instance_name', 'type' => 'string', 'shortcut' => 'n', 'description' => 'The name of the instance to install.' ], [ 'name' => 'extensions', 'type' => 'string', 'shortcut' => 'e', 'description' => 'Comma-separated list of extensions to install.' ], [ 'name' => 'verbose', 'type' => 'boolean', 'shortcut' => 'v', 'description' => 'Verbose mode.' ], [ 'name' => 'operated_by_name', 'type' => 'string', 'description' => 'Name of the organization operating the system.' ], [ 'name' => 'operated_by_email', 'type' => 'string', 'description' => 'Email of the organization operating the system.' ], ], ]; // Running the service. $container->offsetSet(tao_scripts_TaoInstall::CONTAINER_INDEX, $installDetails); new tao_scripts_TaoInstall($container);