~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to web/theme/default/html/campaign_form_layout_assign.php

  • Committer: Dan Garner
  • Date: 2015-06-19 15:50:58 UTC
  • mfrom: (428.1.46)
  • Revision ID: git-v1:2ab674ce7082f84b44bd480006860b88489aaa70
Merge pull request #69 from dasgarner/feature/playlists

Latest developments in the playlists/api branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/*
3
 
 * Xibo - Digital Signage - http://www.xibo.org.uk
4
 
 * Copyright (C) 2006-2013 Daniel Garner
5
 
 *
6
 
 * This file is part of Xibo.
7
 
 *
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
11
 
 * any later version. 
12
 
 *
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.
17
 
 *
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/>.
20
 
 *
21
 
 * Theme variables:
22
 
 *      layout_form_add_url = The URL for calling the Layout Add Form
23
 
 *      id = The GridID for rendering AJAX layout table return
24
 
 *      filter_id = The Filter Form ID
25
 
 *      form_meta = Extra form meta that needs to be sent to the CMS to return the list of layouts
26
 
 *      pager = A paging control for this Xibo Grid
27
 
 */
28
 
use Xibo\Helper\Theme;
29
 
 
30
 
 
31
 
?>
32
 
<div id="LayoutAssign" class="well">
33
 
        <div>
34
 
        <ul id="LayoutAssignSortable">
35
 
                <?php echo \Kit::Token('assign_token'); ?>
36
 
                <?php foreach(Theme::Get('layouts_assigned') as $row) { ?>
37
 
                <li id="LayoutID_<?php echo $row->layoutId; ?>" class="btn btn-sm btn-default"><?php echo $row->layout; ?> <span class="glyphicon glyphicon-minus-sign"></span></li>
38
 
                        <?php } ?>
39
 
        </ul>
40
 
    </div>
41
 
</div>