source: Dev/branches/jos-branch/classes/widgets/PipelineInfoPanel.php @ 230

Last change on this file since 230 was 230, checked in by jkraaijeveld, 13 years ago

Made most functionality from the demo branch work with new database.

File size: 674 bytes
Line 
1<?php
2/*
3 * To change this template, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7/**
8 * Info panel, to the side of the Toolbox, showing various stats and links for the current pipeline.
9 *
10 * @author Thijs Schipper
11 */
12class PipelineInfoPanel {
13
14    private $linkedSequencer;
15
16    public function __construct() {
17        ?>
18        <div>
19            <div id="infoPanel" class="largeFrame">
20                <div class="largeTitle">
21                    Info
22                </div>
23                <div id="infoPanelContent" class="content">
24                   
25                </div>
26            </fieldset>
27        </div>
28        <?php
29    }
30
31}
32?>
Note: See TracBrowser for help on using the repository browser.