Source of file CmdGraphSelect.php
Size: 2,114 Bytes - Last Modified: 2020-10-24T02:46:31+00:00
/home/travis/build/NextDom/nextdom-core/src/Controller/Modals/CmdGraphSelect.php
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | <?php /* This file is part of NextDom Software. * * NextDom 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 3 of the License, or * (at your option) any later version. * * NextDom Software 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 NextDom Software. If not, see <http://www.gnu.org/licenses/>. * * @Support <https://www.nextdom.org> * @Email <admin@nextdom.org> * @Authors/Contributors: Sylvaner, Byackee, cyrilphoenix71, ColonelMoutarde, edgd1er, slobberbone, Astral0, DanoneKiD */ namespace NextDom\Controller\Modals; use NextDom\Helpers\Render; use NextDom\Managers\CmdManager; /** * Class CmdGraphSelect * @package NextDom\Controller\Modals */ class CmdGraphSelect extends BaseAbstractModal { /** * Render command graph select modal (scenario) * * @return string * @throws \Exception */ public static function get(): string { $pageData = []; $pageData['cmdData'] = []; foreach (CmdManager::all() as $cmd) { $eqLogic = $cmd->getEqLogic(); if (!is_object($eqLogic)) { continue; } if ($cmd->getIsHistorized() == 1) { $data = []; $data['eqLogicObject'] = $cmd->getEqLogic()->getObject(); if (is_object($data['eqLogicObject'])) { $data['showObject'] = true; } else { $data['showObject'] = false; } $data['cmd'] = $cmd; $data['eqLogic'] = $eqLogic; $pageData['cmdList'][] = $data; } } return Render::getInstance()->get('/modals/cmd.graph.select.html.twig', $pageData); } } |