Added detailed list of received/given likes in user profiles
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ISortableAction.class.php
1 <?php
2 namespace wcf\data;
3
4 /**
5 * Every object action whose objects can be sorted via AJAX has to implement this
6 * interface.
7 *
8 * @author Alexander Ebert, Matthias Schmidt
9 * @copyright 2001-2014 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 */
15 interface ISortableAction {
16 /**
17 * Validates the 'updatePosition' action.
18 */
19 public function validateUpdatePosition();
20
21 /**
22 * Updates the position of given objects.
23 */
24 public function updatePosition();
25 }