Api\ServiceType\ApiService::CodeManager_SaveCodeArchive PHP Method

CodeManager_SaveCodeArchive() public method

Method to call the operation originally named CodeManager.SaveCodeArchive Meta informations extracted from the WSDL - documentation: Saves a page code archive.
public CodeManager_SaveCodeArchive ( string $archive_description, string $archive_id, string $archive_name, string $code ) : integer | boolean
$archive_description string
$archive_id string
$archive_name string
$code string
return integer | boolean
    public function CodeManager_SaveCodeArchive($archive_description, $archive_id, $archive_name, $code)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('CodeManager.SaveCodeArchive', array($archive_description, $archive_id, $archive_name, $code)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService