* * @version 1 */ class CustomPages extends Api { /** * Available Custom Pages (permission needed: #zone_settings:read) * * @param string $zone_identifier API item identifier tag */ public function custom_pages($zone_identifier) { return $this->get('zones/'.$zone_identifier.'/custom_pages'); } /** * Custom Page details (permission needed: #zone_settings:read) * Details about a specific Custom page details * * @param string $zone_identifier API item identifier tag * @param string $identifier */ public function details($zone_identifier, $identifier) { return $this->get('zones/'.$zone_identifier.'/custom_pages/'.$identifier); } /** * Update Custom page URL (permission needed: #zone_settings:edit) * Update Custom page URL * * @param string $zone_identifier API item identifier tag * @param string $identifier * @param string $url A URL that is associated with the Custom Page. * @param string $state The Custom Page state */ public function update($zone_identifier, $identifier, $url, $state) { $data = [ 'url' => $url, 'state' => $state, ]; return $this->patch('zones/'.$zone_identifier.'/custom_pages/'.$identifier, $data); } }