* You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>. 
 */
require_once '../core/init.php';
$user->checkLogin(true);
// die due to update not implimented (waiting for bunny to impliment)
header('Location: ' . HOME_URL . 'panel/notava.php');
die;
$pageTitle = $lang['vcheck'];
include CORE_DIR . '/cp_header.php';
// Set the namespace
use BT\API as Api;
// Define the class
$api = new Api\Base();
// Init
$api->init('servertool', array('cmd' => 'getVersions'));
// Execute command
$api->execute();
$data = $api->requestData;
?>
			
			<div class="row">
				<div class="col-md-8 col-md-offset-2">
					
					<h2><i class="fa fa-refresh"></i> <?php 
echo $lang['vcheck'];
?>
</h2>
					<hr />
					
<?php