1 | <?php |
||
16 | class PageView extends FrontMatterObject |
||
17 | { |
||
18 | const TEMPLATE = "---\n%s\n---\n\n%s"; |
||
19 | |||
20 | const REPEATER_TYPE = 0; |
||
21 | const DYNAMIC_TYPE = 1; |
||
22 | const STATIC_TYPE = 2; |
||
23 | |||
24 | /** |
||
25 | * @var Filesystem |
||
26 | */ |
||
27 | private static $fileSys; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $type; |
||
33 | |||
34 | /** |
||
35 | * @var PageView[] |
||
36 | */ |
||
37 | private $children; |
||
38 | |||
39 | /** |
||
40 | * @var JailObject |
||
41 | */ |
||
42 | private $jailInstance; |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 27 | public function __construct($filePath) |
|
54 | |||
55 | // |
||
56 | // Twig Jail |
||
57 | // ========= |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | 21 | public function createJail() |
|
63 | { |
||
64 | 21 | if (is_null($this->jailInstance)) |
|
65 | 21 | { |
|
66 | 21 | $this->jailInstance = (new JailObject($this, array_merge(self::$whiteListFunctions, array( |
|
67 | 21 | 'getUrl', |
|
68 | 21 | )), array('getChildren' => 'getJailedChildren'))); |
|
69 | 21 | } |
|
70 | |||
71 | 21 | return $this->jailInstance; |
|
72 | } |
||
73 | |||
74 | 3 | public function getJailedChildren() |
|
85 | |||
86 | // |
||
87 | // Getters |
||
88 | // ======= |
||
89 | |||
90 | /** |
||
91 | * Get child PageViews. |
||
92 | * |
||
93 | * A child is defined as a static PageView whose URL has a parent. For example, a PageView with a URL of |
||
94 | * `/gallery/france/` would have the PageView whose URL is `/gallery` as a parent. |
||
95 | * |
||
96 | * @return PageView[] |
||
97 | */ |
||
98 | 3 | public function &getChildren() |
|
102 | |||
103 | /** |
||
104 | * @return string Twig body |
||
105 | */ |
||
106 | 9 | public function getContent() |
|
110 | |||
111 | /** |
||
112 | * Returns the type of the PageView. |
||
113 | * |
||
114 | * @return string |
||
115 | */ |
||
116 | 15 | public function getType() |
|
120 | |||
121 | /** |
||
122 | * A fallback for the site menus that use the `url` field. |
||
123 | * |
||
124 | * @deprecated 0.1.0 |
||
125 | * |
||
126 | * @todo Remove this in the next major release |
||
127 | */ |
||
128 | public function getUrl() |
||
132 | |||
133 | // |
||
134 | // Factory |
||
135 | // ======= |
||
136 | |||
137 | /** |
||
138 | * Create the appropriate object type when parsing a PageView. |
||
139 | * |
||
140 | * @param string $filePath The path to the file that will be parsed into a PageView |
||
141 | * |
||
142 | * @return DynamicPageView|PageView|RepeaterPageView |
||
143 | */ |
||
144 | 6 | public static function create($filePath) |
|
162 | |||
163 | // |
||
164 | // Virtual PageViews |
||
165 | // ================= |
||
166 | |||
167 | /** |
||
168 | * Create a virtual PageView. |
||
169 | * |
||
170 | * @param array $frontMatter The Front Matter that this virtual PageView will have |
||
171 | * @param string $body The body of the virtual PageView |
||
172 | * |
||
173 | * @return PageView |
||
174 | */ |
||
175 | 4 | public static function createVirtual($frontMatter, $body) |
|
189 | |||
190 | /** |
||
191 | * Create a virtual PageView to create redirect files. |
||
192 | * |
||
193 | * @param string $redirectFrom The URL that will be redirecting to the target location |
||
194 | * @param string $redirectTo The URL of the destination |
||
195 | * @param string|bool $redirectTemplate The path to the template |
||
196 | * |
||
197 | * @return PageView A virtual PageView with the redirection template |
||
198 | */ |
||
199 | 4 | public static function createRedirect($redirectFrom, $redirectTo, $redirectTemplate = false) |
|
223 | } |
||
224 |
This check looks for assignments to scalar types that may be of the wrong type.
To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.