Overview

Namespaces

  • None
  • OpenCloud
    • Autoscale
      • Resource
    • CloudMonitoring
      • Exception
      • Resource
    • Common
      • Exceptions
      • Log
      • Request
        • Response
    • Compute
    • Database
    • DNS
    • LoadBalancer
      • Resources
    • ObjectStore
      • Resource
    • Orchestration
    • Volume
  • PHP

Classes

  • Base
  • Collection
  • Lang
  • Metadata
  • Nova
  • PersistentObject
  • Service
  • ServiceCatalogItem
  • Overview
  • Namespace
  • Class
  • Tree
  • Download
 1: <?php
 2: 
 3: namespace OpenCloud\Common;
 4: 
 5: /**
 6:  * Holds information on a single service from the Service Catalog
 7:  */
 8: class ServiceCatalogItem 
 9: {
10:     
11:     public function __construct($info = array()) 
12:     {
13:         foreach($info as $key => $value) {
14:             $this->$key = $value;
15:         }
16:     }
17: 
18: }
19: 
PHP OpenCloud API API documentation generated by ApiGen 2.8.0