1<?php global $ID; ?>
2<h1><?php echo $this->helper->getLang('welcomehead') ?></h1>
3<noscript>
4	<div class="noscript">
5		<h2><?php echo $this->helper->getLang('no_script_title')?></h2>
6		<p>
7			<?php echo $this->helper->getLang('no_script_message')?>
8		</p>
9	</div>
10</noscript>
11<div class="level1">
12    <p>
13        <?php echo $this->helper->getLang('welcome') ?>
14    </p>
15    <form action="<?php echo wl($ID, 'do=admin,page=confmanager') ?>" method="get" id="select_config_form">
16        <input type="hidden" name="do" value="admin" />
17        <input type="hidden" name="page" value="confmanager" />
18        <label for="confmanager__config__files">
19            <?php echo $this->helper->getLang('select_config') ?>
20        </label>
21        <select name="configFile" id="confmanager__config__files" class="edit">
22            <option>
23            	<?php echo $this->helper->getLang('please_select') ?>
24            </option>
25            <?php foreach ($configFiles as $config): ?>
26            <?php $id = $this->helper->getConfigId($config) ?>
27            <option value="<?php echo hsc($id) ?>"
28                <?php if ($default === $id): ?>selected="selected"<?php endif ?>>
29                <?php echo hsc($config->getName()) ?>
30            </option>
31            <?php endforeach ?>
32        </select>
33        <noscript>
34        	<input type="submit" value="<?php echo $this->helper->getLang('edit') ?>" class="button" />
35        </noscript>
36    </form>
37</div>
38