source: Dev/trunk/classes/PipelineInfoPanel.php @ 171

Last change on this file since 171 was 168, checked in by fpvanagthoven, 13 years ago
  • moveStep() [js] werkt weer, editor is nu op delete/clear na helemaal functioneel
  • Zit nog steeds een creator bug in savesession.php en selectSession.php
  • getInfo.php is nu aangepast om voor meerdere objecttypes te werken en relevante informatie terug te geven, geformatteerd als table. De styling hiervan moet wel nog beter geregeld worden.
File size: 648 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            <fieldset id="infoPanel">
20                <div class="fieldsetTitle">
21                    Title
22                </div>
23                <div id="infoPanelContent">
24                   
25                </div>
26            </fieldset>
27        </div>
28        <?php
29    }
30
31}
32?>
Note: See TracBrowser for help on using the repository browser.