From: withoutaname Date: Sun, 13 Jul 2014 07:15:44 +0000 (-0700) Subject: Documentation: put FormAction and FormlessAction into "Actions" group X-Git-Tag: 1.31.0-rc.0~14624 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=b8654eb75acce6084683ed2fdaca40a5c7bb71a1;p=lhc%2Fweb%2Fwiklou.git Documentation: put FormAction and FormlessAction into "Actions" group Change-Id: Iac8a203426897446b8c9f3fbaaa9d608c419bce6 --- diff --git a/includes/actions/FormAction.php b/includes/actions/FormAction.php index c6fcdde0c6..4c9e85dd0b 100644 --- a/includes/actions/FormAction.php +++ b/includes/actions/FormAction.php @@ -17,14 +17,13 @@ * 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 { diff --git a/includes/actions/FormlessAction.php b/includes/actions/FormlessAction.php index f61fc97d3e..a6f1e2957d 100644 --- a/includes/actions/FormlessAction.php +++ b/includes/actions/FormlessAction.php @@ -17,14 +17,13 @@ * 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 {