forked from lazychaser/laravel-nestedset
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNestedSet.php
83 lines (69 loc) · 1.62 KB
/
NestedSet.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
namespace Kalnoy\Nestedset;
use Illuminate\Database\Schema\Blueprint;
class NestedSet
{
/**
* The name of default lft column.
*/
const LFT = '_lft';
/**
* The name of default rgt column.
*/
const RGT = '_rgt';
/**
* The name of default parent id column.
*/
const PARENT_ID = 'parent_id';
/**
* Insert direction.
*/
const BEFORE = 1;
/**
* Insert direction.
*/
const AFTER = 2;
/**
* Add default nested set columns to the table. Also create an index.
*
* @param \Illuminate\Database\Schema\Blueprint $table
*/
public static function columns(Blueprint $table)
{
$table->unsignedInteger(self::LFT)->default(0);
$table->unsignedInteger(self::RGT)->default(0);
$table->unsignedInteger(self::PARENT_ID)->nullable();
$table->index(static::getDefaultColumns());
}
/**
* Drop NestedSet columns.
*
* @param \Illuminate\Database\Schema\Blueprint $table
*/
public static function dropColumns(Blueprint $table)
{
$columns = static::getDefaultColumns();
$table->dropIndex($columns);
$table->dropColumn($columns);
}
/**
* Get a list of default columns.
*
* @return array
*/
public static function getDefaultColumns()
{
return [ static::LFT, static::RGT, static::PARENT_ID ];
}
/**
* Replaces instanceof calls for this trait.
*
* @param mixed $node
*
* @return bool
*/
public static function isNode($node)
{
return $node instanceof Node;
}
}