forked from symfony-cmf/blog-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlog.php
161 lines (131 loc) · 3.06 KB
/
Blog.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
/*
* This file is part of the Symfony CMF package.
*
* (c) 2011-2014 Symfony CMF
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Cmf\Bundle\BlogBundle\Document;
use Doctrine\ODM\PHPCR\Mapping\Annotations as PHPCR;
use Symfony\Cmf\Component\Routing\RouteReferrersReadInterface;
use Symfony\Component\Routing\Route;
/**
* Blog Document
*
* @author Daniel Leech <[email protected]>
*/
class Blog implements RouteReferrersReadInterface
{
/**
* Identifier
*/
protected $id;
/**
* Node Name / Blog Title
*/
protected $name;
/**
* Parent Document
*/
protected $parent;
/**
* Posts (mapped as children)
*/
protected $posts;
/**
* Routes (mapped from Route::content)
*/
protected $routes;
public function getId()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
/**
* @deprecated Use getParentDocument instead
*/
public function getParent()
{
return $this->parent;
}
public function getParentDocument()
{
return $this->parent;
}
/**
* @deprecated Use setParentDocument instead
*/
public function setParent($parent)
{
$this->parent = $parent;
}
public function setParentDocument($parent)
{
$this->parent = $parent;
}
public function getPosts()
{
return $this->posts;
}
public function setPosts($posts)
{
$this->posts = array();
foreach ($posts as $post) {
$this->addPost($post);
}
}
public function addPost(Post $post)
{
$this->posts[] = $post;
}
/**
* @return \Symfony\Component\Routing\Route[] Route instances that point to this content
*/
public function getRoutes()
{
return $this->routes;
}
public function getPostsRoutes()
{
return $this->getSubRoutes('Symfony\Cmf\Bundle\BlogBundle\Document\PostRoute');
}
public function getTagRoutes()
{
return $this->getSubRoutes('Symfony\Cmf\Bundle\BlogBundle\Document\TagRoute');
}
public function getSubRoutes($routeClass)
{
$subRoutes = array();
foreach ($this->routes as $route) {
foreach ($route->getRouteChildren() as $routeChild)
if ($routeChild instanceof $routeClass) {
$subRoutes[] = $routeChild;
}
}
if (empty($subRoutes)) {
throw new \Exception(sprintf(
'Could not find route of class "%s", this special route should be a child '.
'of the blogs route.',
$routeClass
));
}
return $subRoutes;
}
public function __toString()
{
return (string) $this->name;
}
}