/**
  * Get the custom text metadata values for item
  *
  * @param Docman_Item $item
  *
  * @return array
  */
 public function getCustomTextualMetadataValue(Docman_Item $item)
 {
     $custom_metadata = array();
     foreach ($this->getCustomTextualMetadata($item) as $item_metadata) {
         $custom_metadata[$this->getCustomPropertyName($item_metadata)] = $this->metadata_factory->getMetadataValue($item, $item_metadata);
     }
     return $custom_metadata;
 }