~alexharrington/xibo/110-db-backup-fixes

« back to all changes in this revision

Viewing changes to server/lib/pages/layout.class.php

  • Committer: Dan Garner
  • Date: 2009-08-02 17:48:55 UTC
  • mfrom: (32.16.7 1.0.0)
  • Revision ID: mail@dangarner.co.uk-20090802174855-v0srj24voxg3img7
MergedĀ lp:~dangarner/xibo/embedded-html-module-102

Show diffs side-by-side

added added

removed removed

Lines of Context:
1491
1491
                while ($modulesItem = $enabledModules->GetNextModule())
1492
1492
                {
1493
1493
                        $mod            = Kit::ValidateParam($modulesItem['Module'], _STRING);
1494
 
                        $caption        = 'Add ' . $mod;
 
1494
                        $caption        = '+ ' . $mod;
1495
1495
                        $mod            = strtolower($mod);
1496
1496
                        $title          = Kit::ValidateParam($modulesItem['Description'], _STRING);
1497
1497
                        $img            = Kit::ValidateParam($modulesItem['ImageUri'], _STRING);
1501
1501
                        $buttons .= <<<HTML
1502
1502
                        <div class="regionicons">
1503
1503
                                <a class="XiboFormButton" title="$title" href="$uri">
1504
 
                                <img class="dash_button" src="$img" />
 
1504
                                <img class="dash_button moduleButtonImage" src="$img" />
1505
1505
                                <span class="dash_text">$caption</span></a>
1506
1506
                        </div>
1507
1507
HTML;