From 5b43c2afe0a5774e0021ae2c9332bf61f123d792 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Mon, 17 Feb 2014 11:19:47 +1300 Subject: [PATCH] MDL-44205 theme_leatherbound: unified @package use and improved coding style --- theme/leatherbound/layout/frontpage.php | 22 ++++++++++++++++++++++ theme/leatherbound/layout/general.php | 22 ++++++++++++++++++++++ theme/leatherbound/layout/report.php | 22 ++++++++++++++++++++++ 3 files changed, 66 insertions(+) diff --git a/theme/leatherbound/layout/frontpage.php b/theme/leatherbound/layout/frontpage.php index b2b81ce7e40..2e508e44e26 100644 --- a/theme/leatherbound/layout/frontpage.php +++ b/theme/leatherbound/layout/frontpage.php @@ -1,4 +1,26 @@ . + +/** + * The frontpage layout. + * + * @package theme_leatherbound + * @copyright 2010 Patrick Malley + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ $hasheading = ($PAGE->heading); $hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar()); diff --git a/theme/leatherbound/layout/general.php b/theme/leatherbound/layout/general.php index 1d259d0d579..529a4cd6198 100644 --- a/theme/leatherbound/layout/general.php +++ b/theme/leatherbound/layout/general.php @@ -1,4 +1,26 @@ . + +/** + * The default layout. + * + * @package theme_leatherbound + * @copyright 2010 Patrick Malley + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ $hasheading = ($PAGE->heading); $hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar()); diff --git a/theme/leatherbound/layout/report.php b/theme/leatherbound/layout/report.php index 481ac473b60..40f2ad09259 100644 --- a/theme/leatherbound/layout/report.php +++ b/theme/leatherbound/layout/report.php @@ -1,4 +1,26 @@ . + +/** + * The report layout. + * + * @package theme_leatherbound + * @copyright 2010 Patrick Malley + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ $hasheading = ($PAGE->heading); $hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());