fix doc grouping for actions
authorAntoine Musso <hashar@users.mediawiki.org>
Wed, 8 Feb 2012 16:58:49 +0000 (16:58 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Wed, 8 Feb 2012 16:58:49 +0000 (16:58 +0000)
includes/Action.php
includes/actions/RevertAction.php
includes/actions/RollbackAction.php

index 66947ab..37c4848 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @defgroup Actions Action done on pages
+ */
+
 /**
  * Actions are things which can be done to pages (edit, delete, rollback, etc).  They
  * are distinct from Special Pages because an action must apply to exactly one page.
index 567d0c3..f9497f4 100644 (file)
@@ -17,7 +17,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  *
  * @file
- * @ingroup Action
+ * @ingroup Actions
  * @ingroup Media
  * @author Alexandre Emsenhuber
  * @author Rob Church <robchur@gmail.com>
@@ -26,7 +26,7 @@
 /**
  * Dummy class for pages not in NS_FILE
  *
- * @ingroup Action
+ * @ingroup Actions
  */
 class RevertAction extends Action {
 
@@ -44,7 +44,7 @@ class RevertAction extends Action {
 /**
  * Class for pages in NS_FILE
  *
- * @ingroup Action
+ * @ingroup Actions
  */
 class RevertFileAction extends FormAction {
        protected $oldFile;
index 8379e27..ebb34c7 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  *
  * @file
- * @ingroup Action
+ * @ingroup Actions
  */
 
 /**
  * User interface for the rollback action
  *
- * @ingroup Action
+ * @ingroup Actions
  */
 class RollbackAction extends FormlessAction {