Пример #1
0
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 ******************************************************************************/
// Include global defines
require '../../server/core/defines/global.php';
require '../../server/core/defines/matches.php';
// Include frontend related defines
require 'defines/nagvis-js.php';
// Include functions
require '../../server/core/classes/CoreExceptions.php';
require '../../server/core/functions/autoload.php';
if (PROFILE) {
    profilingStart();
}
define('CONST_AJAX', FALSE);
try {
    require '../../server/core/functions/core.php';
    $MHANDLER = new FrontendModuleHandler();
    $_name = 'nagvis-js';
    $_modules = array('Info', 'Map', 'Url', 'Overview', 'Rotation', 'LogonDialog');
    require '../../server/core/functions/index.php';
    exit(0);
} catch (NagVisException $e) {
    $VIEW = new ViewError();
    if ($MODULE && is_a($MODULE, "FrontendModMap")) {
        echo $VIEW->parseWithMap($e, $MODULE->getObject());
    } else {
        echo $VIEW->parse($e);
    }
}
Пример #2
0
 * 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 this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 ******************************************************************************/
// Include global defines
require '../../server/core/defines/global.php';
require '../../server/core/defines/matches.php';
// Include frontend related defines
require 'defines/nagvis-js.php';
// Include functions
require '../../server/core/classes/CoreExceptions.php';
require '../../server/core/functions/autoload.php';
if (PROFILE) {
    profilingStart();
}
define('CONST_AJAX', FALSE);
try {
    require '../../server/core/functions/core.php';
    $MHANDLER = new FrontendModuleHandler();
    $_name = 'nagvis-js';
    $_modules = array('Info', 'Map', 'Url', 'Overview', 'Rotation', 'LogonDialog');
    require '../../server/core/functions/index.php';
    exit(0);
} catch (NagVisException $e) {
    $VIEW = new ViewError();
    echo $VIEW->parse($e);
}