Index: trunk/phase3/includes/actions/RevertAction.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
19 | 19 | * |
20 | 20 | * @file |
21 | | - * @ingroup Action |
| 21 | + * @ingroup Actions |
22 | 22 | * @ingroup Media |
23 | 23 | * @author Alexandre Emsenhuber |
24 | 24 | * @author Rob Church <robchur@gmail.com> |
— | — | @@ -26,7 +26,7 @@ |
27 | 27 | /** |
28 | 28 | * Dummy class for pages not in NS_FILE |
29 | 29 | * |
30 | | - * @ingroup Action |
| 30 | + * @ingroup Actions |
31 | 31 | */ |
32 | 32 | class RevertAction extends Action { |
33 | 33 | |
— | — | @@ -44,7 +44,7 @@ |
45 | 45 | /** |
46 | 46 | * Class for pages in NS_FILE |
47 | 47 | * |
48 | | - * @ingroup Action |
| 48 | + * @ingroup Actions |
49 | 49 | */ |
50 | 50 | class RevertFileAction extends FormAction { |
51 | 51 | protected $oldFile; |
Index: trunk/phase3/includes/actions/RollbackAction.php |
— | — | @@ -17,13 +17,13 @@ |
18 | 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
19 | 19 | * |
20 | 20 | * @file |
21 | | - * @ingroup Action |
| 21 | + * @ingroup Actions |
22 | 22 | */ |
23 | 23 | |
24 | 24 | /** |
25 | 25 | * User interface for the rollback action |
26 | 26 | * |
27 | | - * @ingroup Action |
| 27 | + * @ingroup Actions |
28 | 28 | */ |
29 | 29 | class RollbackAction extends FormlessAction { |
30 | 30 | |
Index: trunk/phase3/includes/Action.php |
— | — | @@ -1,5 +1,9 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * @defgroup Actions Action done on pages |
| 5 | + */ |
| 6 | + |
| 7 | +/** |
4 | 8 | * Actions are things which can be done to pages (edit, delete, rollback, etc). They |
5 | 9 | * are distinct from Special Pages because an action must apply to exactly one page. |
6 | 10 | * |