Adds several interfaces for dbo actions
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IToggleAction.class.php
CommitLineData
a427a8c8
MS
1<?php
2namespace wcf\data;
3
4/**
5 * Every database object action whose objects can be toggled has to implement this
6 * interface.
7 *
8 * @author Matthias Schmidt
9 * @copyright 2001-2012 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf
12 * @subpackage data
13 * @category Community Framework
14 */
15interface IToggleAction {
16 /**
17 * Toggles the "isDisabled" status of the relevant objects.
18 */
19 public function toggle();
20
21 /**
22 * Validates the "toggle" action.
23 */
24 public function validateToggle();
25}