From 69f727f82bc45649fab90b2bf9a503cacd5b8911 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Mon, 17 Feb 2014 11:18:23 +1300 Subject: [PATCH] MDL-44202 theme_clean: unified @package use and improved coding style --- theme/clean/layout/columns1.php | 8 ++++++++ theme/clean/layout/columns2.php | 8 ++++++++ theme/clean/layout/embedded.php | 8 ++++++++ theme/clean/layout/maintenance.php | 8 ++++++++ theme/clean/layout/secure.php | 8 ++++++++ 5 files changed, 40 insertions(+) diff --git a/theme/clean/layout/columns1.php b/theme/clean/layout/columns1.php index de72ef102ad..dd1a88e3d3f 100644 --- a/theme/clean/layout/columns1.php +++ b/theme/clean/layout/columns1.php @@ -14,6 +14,14 @@ // You should have received a copy of the GNU General Public License // along with Moodle. If not, see . +/** + * The one column layout. + * + * @package theme_clean + * @copyright 2013 Moodle, moodle.org + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + // Get the HTML for the settings bits. $html = theme_clean_get_html_for_settings($OUTPUT, $PAGE); diff --git a/theme/clean/layout/columns2.php b/theme/clean/layout/columns2.php index 364fdfd9eb7..ea45ad2c725 100644 --- a/theme/clean/layout/columns2.php +++ b/theme/clean/layout/columns2.php @@ -14,6 +14,14 @@ // You should have received a copy of the GNU General Public License // along with Moodle. If not, see . +/** + * The two column layout. + * + * @package theme_clean + * @copyright 2013 Moodle, moodle.org + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + // Get the HTML for the settings bits. $html = theme_clean_get_html_for_settings($OUTPUT, $PAGE); diff --git a/theme/clean/layout/embedded.php b/theme/clean/layout/embedded.php index 821ae916ba1..c589990e4d8 100644 --- a/theme/clean/layout/embedded.php +++ b/theme/clean/layout/embedded.php @@ -14,6 +14,14 @@ // You should have received a copy of the GNU General Public License // along with Moodle. If not, see . +/** + * The embedded layout. + * + * @package theme_clean + * @copyright 2013 Moodle, moodle.org + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + echo $OUTPUT->doctype() ?> htmlattributes(); ?>> diff --git a/theme/clean/layout/maintenance.php b/theme/clean/layout/maintenance.php index b483a430355..502702204bf 100644 --- a/theme/clean/layout/maintenance.php +++ b/theme/clean/layout/maintenance.php @@ -14,6 +14,14 @@ // You should have received a copy of the GNU General Public License // along with Moodle. If not, see . +/** + * The maintenance layout. + * + * @package theme_clean + * @copyright 2013 Moodle, moodle.org + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + // Get the HTML for the settings bits. $html = theme_clean_get_html_for_settings($OUTPUT, $PAGE); diff --git a/theme/clean/layout/secure.php b/theme/clean/layout/secure.php index a401828bcbe..5d8ef66ccbc 100644 --- a/theme/clean/layout/secure.php +++ b/theme/clean/layout/secure.php @@ -14,6 +14,14 @@ // You should have received a copy of the GNU General Public License // along with Moodle. If not, see . +/** + * The secure layout. + * + * @package theme_clean + * @copyright 2013 Moodle, moodle.org + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + // Get the HTML for the settings bits. $html = theme_clean_get_html_for_settings($OUTPUT, $PAGE);