Documentation: put FormAction and FormlessAction into "Actions" group
authorwithoutaname <drevitchi@gmail.com>
Sun, 13 Jul 2014 07:15:44 +0000 (00:15 -0700)
committerIAlex <codereview@emsenhuber.ch>
Sat, 2 Aug 2014 08:11:26 +0000 (08:11 +0000)
Change-Id: Iac8a203426897446b8c9f3fbaaa9d608c419bce6

includes/actions/FormAction.php
includes/actions/FormlessAction.php

index c6fcdde..4c9e85d 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  *
  * @file
- */
-
-/**
- * @defgroup Actions Action done on pages
+ * @ingroup Actions
  */
 
 /**
  * An action which shows a form and does something based on the input from the form
+ *
+ * @ingroup Actions
  */
 abstract class FormAction extends Action {
 
index f61fc97..a6f1e29 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  *
  * @file
- */
-
-/**
- * @defgroup Actions Action done on pages
+ * @ingroup Actions
  */
 
 /**
  * An action which just does something, without showing a form first.
+ *
+ * @ingroup Actions
  */
 abstract class FormlessAction extends Action {