Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function modifyOnFrontPage() |
||
44 | { |
||
45 | $this->onlyAdmin(); |
||
46 | $this->onlyPost(); |
||
47 | $state = (bool)($this->request->getData("state") === 'true'); |
||
48 | $postId = (int)$this->request->getData("postId"); |
||
49 | |||
50 | $result = array(); |
||
51 | $result["success"] = $this->postModule->setOnFrontPage(!$state, $postId); |
||
52 | $result["state"] = !$state; |
||
53 | $result["postId"] = $postId; |
||
54 | echo json_encode($result); |
||
55 | } |
||
56 | } |