EVOLUTION-MANAGER
Edit File: PackageBuilderForm.php
<?php /* * Copyright 2005-2020 OCSInventory-NG/OCSInventory-ocsreports contributors. * See the Contributors file for more details about them. * * This file is part of OCSInventory-NG/OCSInventory-ocsreports. * * OCSInventory-NG/OCSInventory-ocsreports 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, either version 2 of the License, * or (at your option) any later version. * * OCSInventory-NG/OCSInventory-ocsreports 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 OCSInventory-NG/OCSInventory-ocsreports. if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ /** * Class for PackageBuilder */ class PackageBuilderForm { private $packageBuildeFormInteractions; private $packageBuilderFormOperatingSystem; private $packageBuilderParseXml; private $packageBuilderFormOptions; /** * Method __construct * * @param $packageBuildeFormInteractions $packageBuildeFormInteractions [explicite description] * @param $packageBuilderFormOperatingSystem $packageBuilderFormOperatingSystem [explicite description] * @param $packageBuilderParseXml $packageBuilderParseXml [explicite description] * @param $packageBuilderFormOptions $packageBuilderFormOptions [explicite description] * * @return void */ function __construct($packageBuildeFormInteractions, $packageBuilderFormOperatingSystem, $packageBuilderParseXml, $packageBuilderFormOptions) { $this->packageBuilderFormOperatingSystem = $packageBuilderFormOperatingSystem; $this->packageBuildeFormInteractions = $packageBuildeFormInteractions; $this->packageBuilderParseXml = $packageBuilderParseXml; $this->packageBuilderFormOptions = $packageBuilderFormOptions; } /** * Method generateOperatingSystem * * @return string */ public function generateOperatingSystem() { $html = '<div id="operatingsystem"><div class="row">'; $operating = $this->packageBuilderParseXml->parseOperatingSystem(); foreach($operating->osdefinition as $system) { $html .= $this->packageBuilderFormOperatingSystem->generateTile($system); } $html .= '</div></div>'; return $html; } /** * Method generateInteractions * * @return string */ public function generateInteractions() { $operatingInfos = $this->packageBuilderParseXml->parseOperatingSystem(); $html = ""; foreach($operatingInfos as $systemInfos) { $html .= '<div id="'.$systemInfos->id.'Interactions" style="display:none;"><div class="panel-group" id="accordion'.$systemInfos->id.'">'; // Generate categories $html .= '<div class="row">'; $html .= $this->packageBuildeFormInteractions->generateInteractionCategories($systemInfos); $html .= '</div>'; // Generate interactions foreach($systemInfos->linkedinteractions->category as $interactions) { $html .= ' <div class="panel panel-default panel-default-ocs-deploy"> <div id="'.$interactions->attributes()->id.'" class="panel-collapse collapse"> <div class="panel-body panel-body-ocs-deploy"> <div class="row">'; $html .= $this->packageBuildeFormInteractions->generateInteractionCollapse($interactions); $html .= '</div></div></div></div>'; } $html .= '</div></div>'; } return $html; } /** * Method generateOptions * * @param $os $os [explicite description] * @param $linkedOption $linkedOption [explicite description] * @param $language $language [explicite description] * * @return string */ public function generateOptions($os, $linkedOption, $language) { global $l; $l = new language($language); $optionInfos = $this->packageBuilderParseXml->parseOptions($linkedOption); $html = '<h3 class="text-center">'.$l->g(intval($optionInfos->name)).'</h3></br>'; $html .= $this->packageBuilderFormOptions->generateOptions($optionInfos, $l); return $html; } /** * Method generateResume * * @param $packageInfos $packageInfos [explicite description] * * @return void */ public function generateResume($packageInfos) { global $l; $html = '<h3 class="text-center">Resume</h3><br><br>'; $html .= '<div class="table-responsive"> <table class="table"> <thead style="background-color:#20222e;color:white;"> <tr> <th style="text-align:center;"><font>'.$l->g(49).'</font></th> <th style="text-align:center;"><font>'.$l->g(53).'</font></th> <th style="text-align:center;"><font>'.$l->g(464).'</font></th> <th style="text-align:center;"><font>'.$l->g(462).'</font></th> <th style="text-align:center;"><font>'.$l->g(1039).'</font></th> <th style="text-align:center;"><font>'.$l->g(9206).'</font></th> </tr> </thead> <tbody style="background-color:#EAECEE;"> <tr> <td style="text-align:center;">'.$packageInfos['NAME'].'</td> <td style="text-align:center;">'.$packageInfos['DESCRIPTION'].'</td> <td style="text-align:center;">'.$packageInfos['FRAG'].'</td> <td style="text-align:center;">'.$packageInfos['SIZE'].'</td> <td style="text-align:center;">'.$packageInfos['PRIO'].'</td> <td style="text-align:center;">'.$packageInfos['ACTIVATE'].'</td> </tr> </tbody> </table> </div>'; return $html; } }