Skip to content

Commit

Permalink
Update class_cloudflare.php
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaser committed Dec 18, 2013
1 parent c60756e commit 8477d3f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion class_cloudflare.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,17 @@ public function zone_settings($domain)
);
return $this->http_post($data);
}


/**
* Undocumented method
* SEE: https://github.com/vexxhost/CloudFlare-API/pull/3
*/
public function zone_init($zone)
{
$data['a'] = 'zone_init';
$data['z'] = $zone;
return $this->http_post($data);
}

/**
* CLIENT API
Expand Down

0 comments on commit 8477d3f

Please sign in to comment.