Skip to content

Commit

Permalink
Merge branch 'MDL-22833' of git://github.com/MaryE/moodle.git
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemelryk committed May 24, 2011
2 parents b47dcdf + 041cfef commit 12b3d58
Show file tree
Hide file tree
Showing 206 changed files with 1,794 additions and 0 deletions.
133 changes: 133 additions & 0 deletions theme/afterburner/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
<?php

$THEME->name = 'afterburner';

$THEME->parents = array('base');

$THEME->sheets = array(
'afterburner_layout', /** Must come first: Page layout **/
'afterburner_styles', /** Must come second: default styles **/
'afterburner_menu',
'afterburner_blocks',
'afterburner_mod',
'afterburner_calendar',
'afterburner_dock',
'rtl'
);

$THEME->parents_exclude_sheets = array(
'base'=>array(
'pagelayout',
'dock'
),
);
$THEME->editor_sheets = array('editor');

$THEME->layouts = array(
// Most backwards compatible layout without the blocks - this is the layout used by default
'base' => array(
'file' => 'default.php',
'regions' => array(),
),
// Standard layout with blocks, this is recommended for most pages with default information
'standard' => array(
'file' => 'default.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
// Main course page
'course' => array(
'file' => 'default.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
'options' => array('langmenu'=>true),
),
'coursecategory' => array(
'file' => 'default.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
// part of course, typical for modules - default page layout if $cm specified in require_login()
'incourse' => array(
'file' => 'default.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
// The site home page.
'frontpage' => array(
'file' => 'default.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
// Server administration scripts.
'admin' => array(
'file' => 'default.php',
'regions' => array('side-pre'),
'defaultregion' => 'side-pre',
),
// My dashboard page
'mydashboard' => array(
'file' => 'default.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
'options' => array('langmenu'=>true),
),
// My public page
'mypublic' => array(
'file' => 'default.php',
'regions' => array('side-pre'),
'defaultregion' => 'side-pre',
),
'login' => array(
'file' => 'default.php',
'regions' => array(),
'options' => array('langmenu'=>true),
),

// Pages that appear in pop-up windows - no navigation, no blocks, no header.
'popup' => array(
'file' => 'default.php',
'regions' => array(),
'options' => array('nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true, 'nologininfo'=>true),
),
// No blocks and minimal footer - used for legacy frame layouts only!
'frametop' => array(
'file' => 'default.php',
'regions' => array(),
'options' => array('nofooter'=>true),
),
// Embedded pages, like iframe/object embeded in moodleform - it needs as much space as possible
'embedded' => array(
'file' => 'embedded.php',
'regions' => array()
),
// Used during upgrade and install, and for the 'This site is undergoing maintenance' message.
// This must not have any blocks, and it is good idea if it does not have links to
// other places - for example there should not be a home link in the footer...
'maintenance' => array(
'file' => 'default.php',
'regions' => array(),
'options' => array('noblocks'=>true, 'nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true),
),
// Should display the content and basic headers only.
'print' => array(
'file' => 'default.php',
'regions' => array(),
'options' => array('noblocks'=>true, 'nofooter'=>true, 'nonavbar'=>false, 'nocustommenu'=>true),
),
// The pagelayout used when a redirection is occuring.
'redirect' => array(
'file' => 'embedded.php',
'regions' => array()
),
// The pagelayout used for reports
'report' => array(
'file' => 'default.php',
'regions' => array('side-pre'),
'defaultregion' => 'side-pre',
),
);

$THEME->enable_dock = true;

$THEME->rendererfactory = 'theme_overridden_renderer_factory';
55 changes: 55 additions & 0 deletions theme/afterburner/lang/en/theme_afterburner.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php

// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Strings for component 'theme_afterburner', language 'en'
*
* @package theme_afterburner
* @copyright 2011
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

$string['pluginname'] = 'Afterburner';
$string['region-side-post'] = 'Right';
$string['region-side-pre'] = 'Left';
$string['choosereadme'] = '
<div class="clearfix">
<div class="theme_screenshot">
<h2>Afterburner</h2>
<img src="afterburner/pix/screenshot.jpg" />
<h3>Theme Discussion Forum:</h3>
<p><a href="http://moodle.org/mod/forum/view.php?id=46">http://moodle.org/mod/forum/view.php?id=46</a></p>
<h3>Theme Credits</h3>
<p><a href="http://docs.moodle.org/en/Theme_credits">http://docs.moodle.org/en/Theme_credits</a></p>
<h3>Theme Documentation:</h3>
<p><a href="http://docs.moodle.org/en/Themes">http://docs.moodle.org/en/Themes</a></p><h3>Report a bug:</h3><p><a href="http://tracker.moodle.org">http://tracker.moodle.org</a></p>
</div>
<div class="theme_description">
<h2>About</h2>
<p>Afterburner is a three-column, fluid-width theme coded for Moodle 2.0. It makes use of custom menus that appear below the site title on every page. An added function, which allows users to login and logout, has now been integrated into the custom menu for this theme.</p>
<h2>Parents</h2>
<p>This theme is built on Base, a parent theme included in the Moodle core. If you wish to modify aspects of this theme, beyond the settings offered, we advise creating a new theme using this theme and Base theme as parent themes, so any updates to these parent themes, in the core, will find their way into your new theme.</p>
<h2>Credits</h2>
<p>This design was originally created for Moodle 1.9 by Patrick Malley of NewSchool Learning (www.newschoollearning.com)from an original design by Rocket Themes (www.rockettheme.com) before being ported to Moodle 2.0 by Mary Evans of NewSchool Learning (contact@newschoollearning.com).</p>
<h2>License</h2>
<p>This, and all other themes included in the Moodle core, are licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>.</p>
</div>
</div>';
126 changes: 126 additions & 0 deletions theme/afterburner/layout/default.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<?php

$hasheading = ($PAGE->heading);
$hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());
$hasfooter = (empty($PAGE->layout_options['nofooter']));
$hassidepre = (empty($PAGE->layout_options['noblocks']) && $PAGE->blocks->region_has_content('side-pre', $OUTPUT));
$hassidepost = (empty($PAGE->layout_options['noblocks']) && $PAGE->blocks->region_has_content('side-post', $OUTPUT));
$haslogininfo = (empty($PAGE->layout_options['nologininfo']));

$showsidepre = ($hassidepre && !$PAGE->blocks->region_completely_docked('side-pre', $OUTPUT));
$showsidepost = ($hassidepost && !$PAGE->blocks->region_completely_docked('side-post', $OUTPUT));

$custommenu = $OUTPUT->custom_menu();
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));

$bodyclasses = array();
if ($showsidepre && !$showsidepost) {
$bodyclasses[] = 'side-pre-only';
} else if ($showsidepost && !$showsidepre) {
$bodyclasses[] = 'side-post-only';
} else if (!$showsidepost && !$showsidepre) {
$bodyclasses[] = 'content-only';
}
if ($hascustommenu) {
$bodyclasses[] = 'has_custom_menu';
}

echo $OUTPUT->doctype() ?>
<html <?php echo $OUTPUT->htmlattributes() ?>>
<head>
<title><?php echo $PAGE->title ?></title>
<link rel="shortcut icon" href="<?php echo $OUTPUT->pix_url('favicon', 'theme')?>" />
<?php echo $OUTPUT->standard_head_html() ?>
</head>

<body id="<?php p($PAGE->bodyid) ?>" class="<?php p($PAGE->bodyclasses.' '.join(' ', $bodyclasses)) ?>">
<?php echo $OUTPUT->standard_top_of_body_html() ?>
<div id="page-wrapper">
<div id="page">
<?php if ($hasheading || $hasnavbar) { ?>
<div id="page-header">
<?php if ($hasheading) { ?>
<div id="logo">
</div>
<div class="headermenu"><?php
if ($haslogininfo) {
echo $OUTPUT->login_info();
}
if (!empty($PAGE->layout_options['langmenu'])) {
echo $OUTPUT->lang_menu();
}
echo $PAGE->headingmenu
?></div>
<?php } ?>
</div>
<?php } ?>
<!-- END OF HEADER -->
<!-- START CUSTOMMENU AND NAVBAR -->
<div id="navcontainer">
<?php if ($hascustommenu) { ?>
<div id="custommenu" class="javascript-disabled"><?php echo $custommenu; ?></div>
<?php } ?>

</div>

<?php if ($hasnavbar) { ?>
<div class="navbar clearfix">
<div class="breadcrumb"><?php echo $OUTPUT->navbar(); ?></div>
<div class="navbutton"> <?php echo $PAGE->button; ?></div>
</div>
<?php } ?>

<!-- END OF CUSTOMMENU AND NAVBAR -->
<div id="page-content">
<div id="region-main-box">
<div id="region-post-box">
<div id="region-main-wrap">
<div id="region-main-pad">
<div id="region-main">
<div class="region-content">
<?php echo core_renderer::MAIN_CONTENT_TOKEN ?>
</div>
</div>
</div>
</div>

<?php if ($hassidepre) { ?>
<div id="region-pre" class="block-region">
<div class="region-content">
<?php echo $OUTPUT->blocks_for_region('side-pre') ?>
</div>
</div>
<?php } ?>

<?php if ($hassidepost) { ?>
<div id="region-post" class="block-region">
<div class="region-content">
<?php echo $OUTPUT->blocks_for_region('side-post') ?>
</div>
</div>
<?php } ?>
</div>
</div>
</div>

<!-- START OF FOOTER -->
<?php if ($hasfooter) { ?>
<div id="page-footer" class="clearfix">

<div class="footer-left">
<a href="http://moodle.org" title="Moodle">Afterburner Powered by
<img src="<?php echo $OUTPUT->pix_url('footer/moodle-logo','theme')?>" alt="Moodle logo" /></a>
</div>

<div class="footer-right">
<?php echo $OUTPUT->login_info();?>
</div>

</div>
<?php } ?>
<div class="clearfix"></div>
</div>
</div>
<?php echo $OUTPUT->standard_end_of_body_html() ?>
</body>
</html>
23 changes: 23 additions & 0 deletions theme/afterburner/layout/embedded.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php echo $OUTPUT->doctype() ?>
<html <?php echo $OUTPUT->htmlattributes() ?>>
<head>
<title><?php echo $PAGE->title ?></title>
<link rel="shortcut icon" href="<?php echo $OUTPUT->pix_url('favicon', 'theme')?>" />
<?php echo $OUTPUT->standard_head_html() ?>
</head>
<body id="<?php p($PAGE->bodyid) ?>" class="<?php p($PAGE->bodyclasses) ?>">
<?php echo $OUTPUT->standard_top_of_body_html() ?>

<div id="page">

<!-- END OF HEADER -->

<div id="content" class="clearfix">
<?php echo core_renderer::MAIN_CONTENT_TOKEN ?>
</div>

<!-- START OF FOOTER -->
</div>
<?php echo $OUTPUT->standard_end_of_body_html() ?>
</body>
</html>
Binary file added theme/afterburner/pix/core/bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/core/bground.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/core/h2grad.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/favicon.ico
Binary file not shown.
Binary file added theme/afterburner/pix/footer/moodle-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/forum/gradient.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/images/light3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/menu/ab-arrowover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/menu/nav-arrow-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/screenshot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/sideblocks/sidegrad.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/left.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/left_active.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/left_active_hover.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/left_hover.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/right.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/right_active.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/right_active_hover.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/right_end.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/right_hover.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/right_last.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/rtlbg.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix/tab/tabrow1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix_core/a/em1_bwgreater.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix_core/a/em1_greater.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix_core/a/em1_lesser.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/afterburner/pix_core/a/em1_raquo.gif
Binary file added theme/afterburner/pix_core/a/help.png
Binary file added theme/afterburner/pix_core/a/l_breadcrumb.gif
Binary file added theme/afterburner/pix_core/a/logout.png
Binary file added theme/afterburner/pix_core/a/r_breadcrumb.gif
Binary file added theme/afterburner/pix_core/a/r_go.gif
Binary file added theme/afterburner/pix_core/a/r_next.gif
Binary file added theme/afterburner/pix_core/a/r_previous.gif
Binary file added theme/afterburner/pix_core/a/refresh.png
Binary file added theme/afterburner/pix_core/a/search.png
Binary file added theme/afterburner/pix_core/a/setting.png
Binary file added theme/afterburner/pix_core/c/course.png
Binary file added theme/afterburner/pix_core/c/event.png
Binary file added theme/afterburner/pix_core/c/groups.png
Binary file added theme/afterburner/pix_core/c/site.png
Binary file added theme/afterburner/pix_core/c/user.png
Binary file added theme/afterburner/pix_core/docs.png
Binary file added theme/afterburner/pix_core/f/access.png
Binary file added theme/afterburner/pix_core/f/avi.png
Binary file added theme/afterburner/pix_core/f/excel.png
Binary file added theme/afterburner/pix_core/f/flash.png
Binary file added theme/afterburner/pix_core/f/folder-32.png
Binary file added theme/afterburner/pix_core/f/folder.png
Binary file added theme/afterburner/pix_core/f/help.png
Binary file added theme/afterburner/pix_core/f/html.png
Binary file added theme/afterburner/pix_core/f/image-32.png
Binary file added theme/afterburner/pix_core/f/image.png
Binary file added theme/afterburner/pix_core/f/odb.png
Binary file added theme/afterburner/pix_core/f/odf.png
Binary file added theme/afterburner/pix_core/f/odg.png
Binary file added theme/afterburner/pix_core/f/odm.png
Binary file added theme/afterburner/pix_core/f/odp.png
Binary file added theme/afterburner/pix_core/f/ods.png
Binary file added theme/afterburner/pix_core/f/odt.png
Binary file added theme/afterburner/pix_core/f/pdf.png
Binary file added theme/afterburner/pix_core/f/powerpoint.png
Binary file added theme/afterburner/pix_core/f/text-32.png
Binary file added theme/afterburner/pix_core/f/text.png
Binary file added theme/afterburner/pix_core/f/unknown-32.png
Binary file added theme/afterburner/pix_core/f/unknown.png
Binary file added theme/afterburner/pix_core/f/video.png
Binary file added theme/afterburner/pix_core/f/web.png
Binary file added theme/afterburner/pix_core/f/word.png
Binary file added theme/afterburner/pix_core/f/xml.png
Binary file added theme/afterburner/pix_core/f/zip.png
Binary file added theme/afterburner/pix_core/g/f1.png
Binary file added theme/afterburner/pix_core/g/f2.png
Binary file added theme/afterburner/pix_core/g/user100.png
Binary file added theme/afterburner/pix_core/g/user35.png
Binary file added theme/afterburner/pix_core/help.png
Binary file added theme/afterburner/pix_core/i/all.png
Binary file added theme/afterburner/pix_core/i/backup.png
Binary file added theme/afterburner/pix_core/i/calc.png
Binary file added theme/afterburner/pix_core/i/checkpermissions.png
Binary file added theme/afterburner/pix_core/i/course.png
Binary file added theme/afterburner/pix_core/i/db.png
Binary file added theme/afterburner/pix_core/i/edit.gif
Binary file added theme/afterburner/pix_core/i/email.png
Binary file added theme/afterburner/pix_core/i/feedback.png
Binary file added theme/afterburner/pix_core/i/feedback_add.png
Binary file added theme/afterburner/pix_core/i/files.png
Binary file added theme/afterburner/pix_core/i/filter.png
Binary file added theme/afterburner/pix_core/i/flagged.png
Binary file added theme/afterburner/pix_core/i/grades.png
Binary file added theme/afterburner/pix_core/i/group.png
Binary file added theme/afterburner/pix_core/i/hide.png
Binary file added theme/afterburner/pix_core/i/info.png
Binary file added theme/afterburner/pix_core/i/lock.png
Binary file added theme/afterburner/pix_core/i/marker.png
Binary file added theme/afterburner/pix_core/i/menu.png
Binary file added theme/afterburner/pix_core/i/new.png
Binary file added theme/afterburner/pix_core/i/news.png
Binary file added theme/afterburner/pix_core/i/one.png
Binary file added theme/afterburner/pix_core/i/payment.png
Binary file added theme/afterburner/pix_core/i/permissions.png
Binary file added theme/afterburner/pix_core/i/publish.png
Binary file added theme/afterburner/pix_core/i/questions.png
Binary file added theme/afterburner/pix_core/i/report.png
Binary file added theme/afterburner/pix_core/i/restore.png
Binary file added theme/afterburner/pix_core/i/return.png
Binary file added theme/afterburner/pix_core/i/roles.png
Binary file added theme/afterburner/pix_core/i/scales.png
Binary file added theme/afterburner/pix_core/i/settings.png
Binary file added theme/afterburner/pix_core/i/show.png
Binary file added theme/afterburner/pix_core/i/unflagged.png
Binary file added theme/afterburner/pix_core/i/user.png
Binary file added theme/afterburner/pix_core/i/users.png
Binary file added theme/afterburner/pix_core/icon.png
Binary file added theme/afterburner/pix_core/m/USD.gif
1 change: 1 addition & 0 deletions theme/afterburner/pix_core/s/SMILEYS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
All these icon are 16x16 and from fugue icon sets
Binary file added theme/afterburner/pix_core/s/angry.png
Binary file added theme/afterburner/pix_core/s/approve.png
Binary file added theme/afterburner/pix_core/s/biggrin.png
Binary file added theme/afterburner/pix_core/s/blackeye.gif
Binary file added theme/afterburner/pix_core/s/blush.png
Binary file added theme/afterburner/pix_core/s/clown.gif
Binary file added theme/afterburner/pix_core/s/cool.png
Binary file added theme/afterburner/pix_core/s/dead.png
Binary file added theme/afterburner/pix_core/s/egg.gif
Binary file added theme/afterburner/pix_core/s/evil.png
Binary file added theme/afterburner/pix_core/s/heart.png
Binary file added theme/afterburner/pix_core/s/kiss.png
Binary file added theme/afterburner/pix_core/s/martin.gif
Binary file added theme/afterburner/pix_core/s/mixed.png
Binary file added theme/afterburner/pix_core/s/no.gif
Binary file added theme/afterburner/pix_core/s/sad.png
Binary file added theme/afterburner/pix_core/s/shy.png
Binary file added theme/afterburner/pix_core/s/sleepy.png
Binary file added theme/afterburner/pix_core/s/smiley.png
Binary file added theme/afterburner/pix_core/s/surprise.png
Binary file added theme/afterburner/pix_core/s/thoughtful.png
Binary file added theme/afterburner/pix_core/s/tongueout.png
Binary file added theme/afterburner/pix_core/s/wideeyes.png
Binary file added theme/afterburner/pix_core/s/wink.png
Binary file added theme/afterburner/pix_core/s/yes.png
Binary file added theme/afterburner/pix_core/t/adddir.png
Binary file added theme/afterburner/pix_core/t/addfile.png
Binary file added theme/afterburner/pix_core/t/addgreen.png
Binary file added theme/afterburner/pix_core/t/backup.png
Binary file added theme/afterburner/pix_core/t/block.png
Binary file added theme/afterburner/pix_core/t/calendar.png
Binary file added theme/afterburner/pix_core/t/clear.png
Binary file added theme/afterburner/pix_core/t/copy.png
Binary file added theme/afterburner/pix_core/t/delete.png
Binary file added theme/afterburner/pix_core/t/down.png
Binary file added theme/afterburner/pix_core/t/download.png
Binary file added theme/afterburner/pix_core/t/edit.png
Binary file added theme/afterburner/pix_core/t/email.png
Binary file added theme/afterburner/pix_core/t/emailno.png
Binary file added theme/afterburner/pix_core/t/feedback.png
Binary file added theme/afterburner/pix_core/t/feedback_add.png
Binary file added theme/afterburner/pix_core/t/go.png
Binary file added theme/afterburner/pix_core/t/groupn.png
Binary file added theme/afterburner/pix_core/t/groups.png
Binary file added theme/afterburner/pix_core/t/hide.png
Binary file added theme/afterburner/pix_core/t/lock.png
Binary file added theme/afterburner/pix_core/t/move.png
Binary file added theme/afterburner/pix_core/t/preview.png
Binary file added theme/afterburner/pix_core/t/restore.png
Binary file added theme/afterburner/pix_core/t/show.png
Binary file added theme/afterburner/pix_core/t/stop.png
Binary file added theme/afterburner/pix_core/t/unlock.png
Binary file added theme/afterburner/pix_core/t/up.png
Binary file added theme/afterburner/pix_core/t/user.png
Binary file added theme/afterburner/pix_core/t/userblue.png
Binary file added theme/afterburner/pix_core/t/usernot.png
Binary file added theme/afterburner/pix_core/u/f1.png
Binary file added theme/afterburner/pix_core/u/f2.png
Binary file added theme/afterburner/pix_plugins/mod/chat/icon.png
Binary file added theme/afterburner/pix_plugins/mod/choice/icon.png
Binary file added theme/afterburner/pix_plugins/mod/data/icon.png
Binary file added theme/afterburner/pix_plugins/mod/folder/icon.png
Binary file added theme/afterburner/pix_plugins/mod/forum/icon.png
Binary file added theme/afterburner/pix_plugins/mod/glossary/icon.png
Binary file added theme/afterburner/pix_plugins/mod/imscp/icon.png
Binary file added theme/afterburner/pix_plugins/mod/label/icon.png
Binary file added theme/afterburner/pix_plugins/mod/lesson/icon.png
Binary file added theme/afterburner/pix_plugins/mod/page/icon.png
Binary file added theme/afterburner/pix_plugins/mod/quiz/icon.png
Binary file added theme/afterburner/pix_plugins/mod/resource/icon.png
Binary file added theme/afterburner/pix_plugins/mod/scorm/icon.png
Binary file added theme/afterburner/pix_plugins/mod/survey/icon.png
Binary file added theme/afterburner/pix_plugins/mod/url/icon.png
Binary file added theme/afterburner/pix_plugins/mod/wiki/icon.png
Binary file added theme/afterburner/pix_plugins/mod/workshop/icon.png
Loading

0 comments on commit 12b3d58

Please sign in to comment.