source: Dev/branches/jQueryUI/client/widgets_old/PipelineInfoPanel.php @ 254

Last change on this file since 254 was 249, checked in by hendrikvanantwerpen, 13 years ago

This one's for Subversion, because it's so close...

First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.

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.