3
* Xibo - Digital Signage - http://www.xibo.org.uk
4
* Copyright (C) 2006-2014 Daniel Garner
6
* This file is part of Xibo.
8
* Xibo is free software: you can redistribute it and/or modify
9
* it under the terms of the GNU Affero General Public License as published by
10
* the Free Software Foundation, either version 3 of the License, or
13
* Xibo is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU Affero General Public License for more details.
18
* You should have received a copy of the GNU Affero General Public License
19
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
22
* form_id = The ID of the Form
23
* form_action = The URL for calling the Layout Add Transaction
24
* form_meta = Additional META information required by Xibo in the form submit call
26
use Xibo\Helper\Theme;
28
defined('XIBO') or die("Sorry, you are not allowed to directly access this page.<br /> Please press the back button in your browser.");
30
<form id="<?php echo Theme::Get('form_id'); ?>" class="XiboForm" method="post" action="<?php echo Theme::Get('form_action'); ?>">
31
<?php echo Theme::Get('form_meta'); ?>
34
<td><label for="mediaid" title="<?php echo Theme::Translate('Installer File'); ?>"><?php echo Theme::Translate('Installer File'); ?></label></td>
35
<td><?php echo Theme::SelectList('mediaid', Theme::Get('media_field_list'), 'mediaid', 'media', Theme::Get('installer_file_id')); ?></td>
41
<th><?php echo Theme::Translate('Display'); ?></th>
42
<th><?php echo Theme::Translate('Type'); ?></th>
43
<th><?php echo Theme::Translate('Version'); ?></th>
44
<th><?php echo Theme::Translate('Version Code'); ?></th>
48
<?php foreach(Theme::Get('displays') as $row) { ?>
50
<td><?php echo $row['display']; ?></td>
51
<td><?php echo $row['client_type']; ?></td>
52
<td><?php echo $row['client_version']; ?></td>
53
<td><?php echo $row['client_code']; ?></td>