/**
  * Get the item's place of publication.
  *
  * @access  protected
  * @return  array
  */
 protected function getPlacesOfPublication()
 {
     // Not currently stored in the Solr index
     if ($this->marcRecord) {
         return $this->getFieldArray('260');
     } else {
         if (isset($this->eContentRecord)) {
             return array($this->eContentRecord->publishLocation);
         } else {
             return parent::getPlacesOfPublication();
         }
     }
 }