Example #1
0
<?php

/*
 * move&rename to /index.php
 */
require './classes/PhpMumbleViewer.class.php';
// PARAMS
$source = 'http://ks20690.kimsufi.com/phpmumbleviewer/index.php?port=65101&view=xml';
$view = 'xhtml';
// INIT
$phpmumbleviewer = new PhpMumbleViewer();
// SET INPUT
$phpmumbleviewer->configureInput('xml', array('xml' => $source));
// DISPLAY
if (file_exists("views/{$view}/view.php")) {
    include "views/{$view}/view.php";
} else {
    die("view not exists");
}
Example #2
0
<?php

/*
 * move&rename to /index.php
 */
require 'classes/PhpMumbleViewer.class.php';
// PARAMS
$port = filter_input(INPUT_GET, 'port', FILTER_VALIDATE_INT);
$view = filter_input(INPUT_GET, 'view', FILTER_DEFAULT);
// DEFAULT - PARAMS
if (!isset($port)) {
    $port = 0;
}
if (!isset($view)) {
    $view = 'xhtml';
}
// INIT
$phpmumbleviewer = new PhpMumbleViewer();
// SET INPUT
$phpmumbleviewer->configureInput('ice', array('port' => $port));
// DISPLAY
if (file_exists("views/{$view}/view.php")) {
    include "views/{$view}/view.php";
} else {
    die("view not exists");
}