summaryrefslogtreecommitdiffstats
path: root/modules/main.inc.php
blob: 232d6a0aba72ee50b0084b8c21d4706297fb40d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php

class Page_Main extends Page
{

	protected function doPreprocess()
	{
		User::load();
	}

	protected function doRender()
	{
		// Render::setTitle('abc');

		if (!User::isLoggedIn()) {
			Render::addTemplate('page-main-guest');
			return;
		}
		// Logged in here
		$ipxe = (Property::getServerIp() !== Property::getIPxeIp());
		$sysconfig = !file_exists(CONFIG_HTTP_DIR . '/default/config.tgz');
		$minilinux = !file_exists(CONFIG_HTTP_DIR . '/default/kernel') || !file_exists(CONFIG_HTTP_DIR . '/default/initramfs-stage31') || !file_exists(CONFIG_HTTP_DIR . '/default/stage32.sqfs');
		$vmstore = !is_array(Property::getVmStoreConfig());
		Render::addTemplate('page-main', array(
			'user' => User::getName(),
			'ipxe' => $ipxe,
			'sysconfig' => $sysconfig,
			'minilinux' => $minilinux,
			'vmstore' => $vmstore
		));
	}

}