70 lines
3.3 KiB
PHP
70 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2015-2019 (original work) Open Assessment Technologies SA;
|
|
*
|
|
*/
|
|
|
|
use oat\taoClientDiagnostic\model\ClientDiagnosticRoles;
|
|
use oat\taoClientDiagnostic\controller\DiagnosticChecker;
|
|
use oat\taoClientDiagnostic\controller\Diagnostic;
|
|
use oat\taoClientDiagnostic\scripts\install\createDiagnosticTable;
|
|
use oat\tao\model\accessControl\func\AccessRule;
|
|
use oat\taoClientDiagnostic\scripts\install\RegisterDiagnosticComponent;
|
|
|
|
return array(
|
|
'name' => 'taoClientDiagnostic',
|
|
'label' => 'Browser and OS diagnostic tool',
|
|
'description' => 'Check compatibility of the os and browser of a client',
|
|
'license' => 'GPL-2.0',
|
|
'author' => 'Open Assessment Technologies SA',
|
|
'managementRole' => 'http://www.tao.lu/Ontologies/generis.rdf#taoClientDiagnosticManager',
|
|
'acl' => array(
|
|
array('grant', 'http://www.tao.lu/Ontologies/generis.rdf#taoClientDiagnosticManager', array('ext'=>'taoClientDiagnostic')),
|
|
array('grant', 'http://www.tao.lu/Ontologies/generis.rdf#AnonymousRole', array('ext'=>'taoClientDiagnostic','mod' => 'CompatibilityChecker')),
|
|
array('grant', 'http://www.tao.lu/Ontologies/generis.rdf#AnonymousRole', array('ext'=>'taoClientDiagnostic','mod' => 'Authenticator')),
|
|
array(AccessRule::GRANT, ClientDiagnosticRoles::READINESS_CHECKER_ROLE, Diagnostic::class),
|
|
array(AccessRule::GRANT, ClientDiagnosticRoles::READINESS_CHECKER_ROLE, DiagnosticChecker::class),
|
|
),
|
|
'install' => array(
|
|
'rdf' => array(
|
|
__DIR__ . DIRECTORY_SEPARATOR . 'install' . DIRECTORY_SEPARATOR . 'ontology' . DIRECTORY_SEPARATOR . 'roles.rdf',
|
|
__DIR__ . DIRECTORY_SEPARATOR . 'install' . DIRECTORY_SEPARATOR . 'ontology' . DIRECTORY_SEPARATOR . 'ExcludedBrowsersList.rdf',
|
|
__DIR__ . DIRECTORY_SEPARATOR . 'install' . DIRECTORY_SEPARATOR . 'ontology' . DIRECTORY_SEPARATOR . 'ExcludedOSList.rdf',
|
|
),
|
|
'php' => array(
|
|
createDiagnosticTable::class,
|
|
RegisterDiagnosticComponent::class
|
|
)
|
|
),
|
|
'uninstall' => array(
|
|
),
|
|
'update' => 'oat\\taoClientDiagnostic\\scripts\\update\\Updater',
|
|
'routes' => array(
|
|
'/taoClientDiagnostic' => 'oat\\taoClientDiagnostic\\controller'
|
|
),
|
|
'constants' => array(
|
|
# views directory
|
|
"DIR_VIEWS" => dirname(__FILE__).DIRECTORY_SEPARATOR."views".DIRECTORY_SEPARATOR,
|
|
|
|
#BASE URL (usually the domain root)
|
|
'BASE_URL' => ROOT_URL.'taoClientDiagnostic/',
|
|
),
|
|
'extra' => array(
|
|
'structures' => dirname(__FILE__).DIRECTORY_SEPARATOR.'controller'.DIRECTORY_SEPARATOR.'structures.xml',
|
|
)
|
|
);
|