| 1 | <?php |
||
| 8 | class Pad |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param $padId |
||
| 12 | * @param $apiKey |
||
| 13 | * @param string $host |
||
| 14 | * @return boolean |
||
| 15 | */ |
||
| 16 | public static function deletePad($padId, $apiKey, $host = 'http://localhost:9001') |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param $apiKey |
||
| 34 | * @param string $host |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public static function getAllPadIds($apiKey, $host = 'http://localhost:9001') |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @param $padId |
||
| 56 | * @param $apiKey |
||
| 57 | * @param string $host |
||
| 58 | * @return int|false |
||
| 59 | */ |
||
| 60 | public static function getLastEdited($padId, $apiKey, $host = 'http://localhost:9001') |
||
| 75 | } |
||
| 76 |