]> git.mjollnir.org Git - moodle.git/commitdiff
Further fixes to PHPdoc comments.
authortjhunt <tjhunt>
Mon, 15 Jun 2009 04:03:59 +0000 (04:03 +0000)
committertjhunt <tjhunt>
Mon, 15 Jun 2009 04:03:59 +0000 (04:03 +0000)
lib/ajax/ajaxlib.php
lib/pagelib.php

index ca932e4dc686879f260ff130cd52d2d843ce5a28..73fa9fe3ce5b98ce1b73b3b1162372af78c6a662 100644 (file)
@@ -79,6 +79,7 @@ function setup_core_javascript(page_requirements_manager $requires) {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 class page_requirements_manager {
     const WHEN_IN_HEAD = 0;
@@ -432,6 +433,7 @@ class page_requirements_manager {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 abstract class requirement_base {
     protected $manager;
@@ -484,6 +486,7 @@ abstract class requirement_base {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 abstract class linked_requirement extends requirement_base {
     protected $url;
@@ -526,6 +529,7 @@ abstract class linked_requirement extends requirement_base {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 class required_js extends linked_requirement {
     /**
@@ -630,6 +634,7 @@ class required_js extends linked_requirement {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 class required_yui_lib extends linked_requirement {
     protected $jss = array();
@@ -738,6 +743,7 @@ class required_yui_lib extends linked_requirement {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 class required_css extends linked_requirement {
     /**
@@ -769,6 +775,7 @@ class required_css extends linked_requirement {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 class required_skip_link extends linked_requirement {
     protected $linktext;
@@ -799,6 +806,7 @@ class required_skip_link extends linked_requirement {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 abstract class required_js_code extends requirement_base {
 
@@ -884,6 +892,7 @@ abstract class required_js_code extends requirement_base {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 class required_js_function_call extends required_js_code {
     protected $function;
@@ -957,6 +966,7 @@ class required_js_function_call extends required_js_code {
  *
  * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  */
 class required_data_for_js extends required_js_code {
     protected $variable;
index 9dd328525eab30444c86521d3b8cb34570c00b35..43cd7c63670a0d008601691d6e2615c0a367c666 100644 (file)
@@ -21,7 +21,6 @@
  * of information about the page we are building up to send back to the user.
  *
  * @package   moodlecore
- * @subpackage pages
  * @copyright 1999 onwards Martin Dougiamas  {@link http://moodle.com}
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
 /**
  * $PAGE is a central store of information about the current page we are
- * generating in response to the user's request. It does not do very much itself
+ * generating in response to the user's request.
+ *
+ * It does not do very much itself
  * except keep track of information, however, it serves as the access point to
  * some more significant components like $PAGE->theme, $PAGE->requires,
  * $PAGE->blocks, etc.
  *
- * @package   moodlecore
- * @subpackage pages
- * @copyright 1999 onwards Martin Dougiamas  {@link http://moodle.com}
+ * @copyright 2009 Tim Hunt
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @since Moodle 2.0
  *
  * @property-read page_requirements_manager $requires Tracks resources (for example required .css and .js files) required by this page.
  */