-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Sortable.php
46 lines (41 loc) · 1.26 KB
/
Sortable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/*
* This file is part of the Doctrine Behavioral Extensions package.
* (c) Gediminas Morkevicius <[email protected]> http://www.gediminasm.org
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Gedmo\Sortable;
/**
* Marker interface for objects which can be identified as sortable.
*
* @author Lukas Botsch <[email protected]>
*/
interface Sortable
{
// use now annotations instead of predefined methods, this interface is not necessary
/*
* @Gedmo\SortablePosition - to mark property which will hold the item position use annotation @Gedmo\SortablePosition
* This property has to be numeric. The position index can be negative and will be counted from right to left.
*
* example:
*
* @Gedmo\SortablePosition
* @Column(type="int")
* $position
*
* @Gedmo\SortableGroup
* @Column(type="string", length=64)
* $category
*
*/
/*
* @Gedmo\SortableGroup - to group node sorting by a property use annotation @Gedmo\SortableGroup on this property
*
* example:
*
* @Gedmo\SortableGroup
* @Column(type="string", length=64)
* $category
*/
}