Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
V2.7.9.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gjb2048 committed May 31, 2017
1 parent 332fcf1 commit 4d0a094
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 34 deletions.
6 changes: 4 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ This theme is provided to you for free, and if you want to express your gratitud

PayPal - Please contact me via my 'Moodle profile' (above) for details as I am an individual and therefore am unable to have 'donation' / 'buy me now' buttons under their terms.

Flattr - https://flattr.com/profile/gjb2048

Donations may allow me to provide you with more or better features in less time.

Donators
Expand Down Expand Up @@ -163,6 +161,10 @@ It is essential that you provide as much information as possible, the critical i
'version.php' file. Other version information such as specific Moodle version, theme name and version also helps. A screen shot
can be really useful in visualising the issue along with any files you consider to be relevant.

New in 2.7.9.5.3
================
- NEW: Remove theme credit.

New in 2.7.9.5.2
================
- FIX: Small security issue.
Expand Down
3 changes: 0 additions & 3 deletions essentials/layout/includes/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@
<div class="footerperformance row-fluid">
<?php echo $OUTPUT->standard_footer_html(); ?>
</div>
<div class="footercredit row-fluid">
<?php echo get_string('credit', 'theme_essential'); ?><a href="//about.me/gjbarnard" target="_blank">Gareth J Barnard</a>
</div>
</div>
</footer>
<a href="#top" class="back-to-top" ><i class="fa fa-angle-up "></i></a>
Expand Down
7 changes: 0 additions & 7 deletions lang/en/theme_essential.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@
<p>This theme is provided to you for free, and if you want to express your gratitude for using this theme, please consider donating by:
<h4>PayPal</h4>
<p>Please contact me via my <a href="http://moodle.org/user/profile.php?id=442195" target="_blank">\'Moodle profile\'</a> for details as I am an individual and therefore am unable to have \'donation\' / \'buy me now\' buttons under their terms.</p>
<h4>Flattr</h4>
<a href="https://flattr.com/profile/gjb2048" target="_blank">
clicking here to donate.
</a>
<br>Donations may allow me to provide you with more or better features in less time.</p>
</div></div>';

Expand All @@ -71,7 +67,6 @@
$string['logodesc'] = 'Please upload your custom logo here if you want to add it to the header.
<br>The image should be 65px high and any reasonable width that suits.
<br>If you upload a logo it will replace the standard icon and name that was displayed by default.';
$string['credit'] = 'The Essential theme is developed, enhanced and maintained by ';

// Font settings.
$string['fontsettings'] = 'Font';
Expand Down Expand Up @@ -182,9 +177,7 @@
$string['donate_desc'] = 'Please donate via PayPal by contacting me via my \'';
$string['donate_desc2'] = ' to keep the Essential development going, or simply to express your gratitude.';
$string['paypal_desc'] = '{$a->url}\' for details as I am an individual and therefore am unable to have \'donation\' / \'buy me now\' buttons under their terms or ';
$string['flattr_desc'] = '{$a->url}';
$string['paypal_click'] = 'Moodle profile';
$string['flattr_click'] = 'donate via Flattr';

// Readme.
$string['readme_title'] = 'Essential read-me';
Expand Down
3 changes: 0 additions & 3 deletions layout/includes/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@
<div class="footerperformance row-fluid">
<?php echo $OUTPUT->standard_footer_html(); ?>
</div>
<div class="footercredit row-fluid">
<?php echo get_string('credit', 'theme_essential'); ?><a href="//about.me/gjbarnard" target="_blank">Gareth J Barnard</a>
</div>
</div>
</footer>
<a href="#top" class="back-to-top" ><i class="fa fa-angle-up "></i></a>
Expand Down
5 changes: 0 additions & 5 deletions less/essential/footer.less
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@
padding-bottom: 6px;
margin-bottom: 4px;
}

.footercredit {
font-size: 10pt;
text-align: center;
}
}

#page-footer ul,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "theme-essential-tasks",
"version": "0.1.0",
"version": "0.1.1",
"description": "Grunt tasks for Moodle Essential theme.",
"main": "Gruntfile.js",
"author": {
Expand Down Expand Up @@ -33,5 +33,5 @@
"grunt-contrib-copy": "~0.7.0",
"grunt-svgmin": "~2.0.0"
},
"license": "GPLv3.0+"
"license": "GPL-3.0"
}
5 changes: 1 addition & 4 deletions settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,8 @@
$donate = new moodle_url('http://moodle.org/user/profile.php?id=442195');
$donate = html_writer::link($donate, get_string('paypal_click', 'theme_essential'), array('target' => '_blank'));

$flattr = new moodle_url('https://flattr.com/profile/gjb2048');
$flattr = html_writer::link($flattr, get_string('flattr_click', 'theme_essential'), array('target' => '_blank'));

$temp->add(new admin_setting_heading('theme_essential_generaldonate', get_string('donate_title', 'theme_essential'),
get_string('donate_desc', 'theme_essential').get_string('paypal_desc', 'theme_essential', array('url' => $donate)).get_string('flattr_desc', 'theme_essential', array('url' => $flattr)).get_string('donate_desc2', 'theme_essential')));
get_string('donate_desc', 'theme_essential').get_string('paypal_desc', 'theme_essential', array('url' => $donate)).get_string('donate_desc2', 'theme_essential')));

$temp->add(new admin_setting_heading('theme_essential_generalheading', get_string('generalheadingsub', 'theme_essential'),
format_text(get_string('generalheadingdesc', 'theme_essential'), FORMAT_MARKDOWN)));
Expand Down
2 changes: 1 addition & 1 deletion style/essential-rtl.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions style/essential-rtl_ie9.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion style/essential.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions style/essential_ie9.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2014111010; // YYYYMMDDVV.
$plugin->version = 2014111011; // YYYYMMDDVV.
$plugin->maturity = MATURITY_STABLE; // this version's maturity level.
$plugin->release = '2.7.9.5.2 (Build: 2014111010)';
$plugin->release = '2.7.9.5.3 (Build: 2014111011)';
$plugin->requires = 2014050800; // Requires Moodle 2.7
$plugin->component = 'theme_essential';
$plugin->dependencies = array();

0 comments on commit 4d0a094

Please sign in to comment.