/**
  * Information about a client's registry values (Windows only)
  *
  * @return array client, values, order, direction
  */
 public function registryAction()
 {
     $values = array();
     foreach ($this->_registryManager->getValueDefinitions() as $value) {
         $values[$value['Name']] = $value;
     }
     return $this->getOrder('Value') + array('client' => $this->_currentClient, 'values' => $values);
 }