FOSSology  4.4.0
Open Source License Compliance by Open Source Software
agent-monk-bulk.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2008-2013 Hewlett-Packard Development Company, L.P.
4  SPDX-FileCopyrightText: © 2014-2015 Siemens AG
5 
6  SPDX-License-Identifier: GPL-2.0-only
7 */
8 
10 
12 {
13  public function __construct()
14  {
15  $this->Name = "agent_monk_bulk";
16  $this->Title = _("Monk Bulk License Clearing");
17  $this->AgentName = "monkbulk";
18 
19  parent::__construct();
20  }
21 
22  function preInstall()
23  {
24  // no AgentCheckBox
25  }
26 
27  function AgentAdd($jobId, $uploadId, &$errorMsg, $dependencies=array(), $bulkId='')
28  {
29  return $this->doAgentAdd($jobId, $uploadId, $errorMsg, $dependencies, $bulkId);
30  }
31 }
32 
33 register_plugin(new MonkBulkAgentPlugin());
doAgentAdd($jobId, $uploadId, &$errorMsg, $dependencies, $jqargs="", $jq_cmd_args=null)
AgentAdd($jobId, $uploadId, &$errorMsg, $dependencies=array(), $bulkId='')