pandorafms/pandora_console/include/lib/View.php

75 lines
2.1 KiB
PHP
Raw Normal View History

2020-03-26 12:29:38 +01:00
<?php
/**
* Loader for views.
*
* @category Loader
* @package Pandora FMS
* @subpackage Enterprise
* @version 1.0.0
* @license See below
*
* ______ ___ _______ _______ ________
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
*
* ============================================================================
2020-11-27 13:52:35 +01:00
* Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
* Please see http://pandorafms.org for full contribution list
* 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 for version 2.
* 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.
* ============================================================================
*/
2020-03-26 12:29:38 +01:00
// Begin.
2020-03-26 12:29:38 +01:00
namespace PandoraFMS;
2021-10-04 19:43:57 +02:00
use HTML;
global $config;
require_once $config['homedir'].'/include/class/HTML.class.php';
2020-03-26 12:29:38 +01:00
/**
2021-10-04 19:43:57 +02:00
* View class. Extends HTML to allow print forms and inputs.
2020-03-26 12:29:38 +01:00
*/
2021-10-04 19:43:57 +02:00
class View extends HTML
2020-03-26 12:29:38 +01:00
{
/**
* Render view.
*
* @param string $page Page load view.
* @param array|null $data Array data if necessary for view.
*
* @return void
*/
public static function render(string $page, ?array $data=null)
{
global $config;
if (is_array($data) === true) {
extract($data);
}
2020-05-14 17:49:02 +02:00
$open = $config['homedir'].'/views/'.$page.'.php';
$ent = $config['homedir'].'/'.ENTERPRISE_DIR.'/views/'.$page.'.php';
if (file_exists($ent) === true) {
include $ent;
} else if (file_exists($open) === true) {
include $open;
2020-03-26 12:29:38 +01:00
} else {
ui_print_error_message(__('View %s not found', $page), true);
2020-03-26 12:29:38 +01:00
}
}
}