| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public static function createBoardsInfoRequest() |
||
| 13 | { |
||
| 14 | $dataJson = [ |
||
| 15 | "options" => [ |
||
| 16 | "filter" => "all", |
||
| 17 | "field_set_key" => "board_picker", |
||
| 18 | ], |
||
| 19 | "context" => [], |
||
| 20 | ]; |
||
| 21 | |||
| 22 | return [ |
||
| 23 | "source_url" => "/pin/create/bookmarklet/?url=", |
||
| 24 | "pinFave" => "1", |
||
| 25 | "description" => "", |
||
| 26 | "data" => json_encode($dataJson, JSON_FORCE_OBJECT), |
||
| 27 | ]; |
||
| 28 | } |
||
| 29 | } |
||
| 30 |