Example #1
0
 /**
  * Get all the Operations & corresponding SoapActions for the OrganizationService
  */
 private function getAllOrganizationSoapActions()
 {
     /* If it is not cached, update the cache */
     if ($this->organizationSoapActions == null) {
         $this->organizationSoapActions = self::getAllSoapActions($this->client->getOrganizationDOM(), 'OrganizationService');
         $this->setCachedSoapActions('organization', $this->organizationSoapActions);
     }
     /* Return the cached value */
     return $this->organizationSoapActions;
 }