/**
  * Set Azure values
  *
  * @param array   $values
  * @param boolean $throwOnError Throw Zend_Service_WindowsAzure_Exception when a property is not specified in $values?
  * @throws \Zend\Service\WindowsAzure\Exception\UnknownPropertyException
  */
 public function setAzureValues($values = array(), $throwOnError = false)
 {
     // Set parent values
     parent::setAzureValues($values, false);
     // Set current values
     foreach ($values as $key => $value) {
         $this->{$key} = $value;
     }
 }
Example #2
0
 /**
  * creates and builds admin interface for custom table data.
  * currently only supports flat tables but is extensible via custom field types.
  * @param type $config
  * @param type $method
  */
 public function addTableEntitiy($config, $method = self::FROM_FILE)
 {
     $configData = self::getConfigObject($config, $method);
     TableEntity::createFromConfig($configData, $this->templateHandler);
 }