FOSSology  4.4.0
Open Source License Compliance by Open Source Software
DecisionExporterAgentPlugin.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2022 Siemens AG
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
8 namespace Fossology\DecisionExporter\UI;
9 
11 
17 {
18  public function __construct()
19  {
20  $this->Name = "agent_decisionexporter";
21  $this->Title = _("FOSSology Decision Exporter");
22  $this->AgentName = "decisionexporter";
23 
24  parent::__construct();
25  }
26 
31  function preInstall()
32  {
33  // no AgentCheckBox
34  }
35 }
36 
37 register_plugin(new DecisionExporterAgentPlugin());