Conditions | 3 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function run($request) |
||
21 | { |
||
22 | $id = $request->getVar('ID'); |
||
23 | |||
24 | if (!$id or !is_numeric($id)) { |
||
25 | return null; |
||
26 | } |
||
27 | |||
28 | // Find all pages |
||
29 | $contentSource = StaticSiteContentSource::get()->byID($id); |
||
30 | $contentSource->urllist()->crawl(false, true); |
||
31 | |||
32 | return null; |
||
33 | } |
||
35 |