/**
  * Install default profile
  *
  * Install default item types, elements, and profiles for easy setup
  *
  * @return void
  */
 public function installDefaults($params = null)
 {
     $defaultParams = array('typeName' => 'Tiled Zoomable Image', 'typeDesc' => 'An image file served in jpeg2000 or similar format, allowing for tiled display and deep zoom', 'profileName' => $this->defaultProfileName, 'viewerName' => 'OpenSeaDragon');
     $params = empty($params) ? $defaultParams : $params;
     return parent::InstallDefaults($params, $this->_paramInfo);
 }
 /**
  * Install default profile
  *
  * Install default item types, elements, and profiles for easy setup
  *
  * @return void
  */
 public function installDefaults($params = null)
 {
     $defaultParams = array('typeName' => 'Streaming Media', 'typeDesc' => 'A video or audio file to be streamed from a standard streaming server', 'profileName' => $this->defaultProfileName, 'viewerName' => 'MediaElement');
     $params = empty($params) ? $defaultParams : $params;
     return parent::InstallDefaults($params, $this->_paramInfo);
 }
 /**
  * Install default profile
  *
  * Install default item types, elements, and profiles for easy setup
  *
  * @return void
  */
 public function installDefaults($params = null)
 {
     $defaultParams = array('typeName' => 'Mirador Gallery', 'typeDesc' => 'One or more images to be displayed using the Mirador viewer', 'profileName' => $this->defaultProfileName, 'viewerName' => 'Mirador');
     $params = empty($params) ? $defaultParams : $params;
     parent::InstallDefaults($params, $this->_paramInfo);
 }
 /**
  * Install default profile
  *
  * Install default item types, elements, and profiles for easy setup
  *
  * @return void
  */
 public function installDefaults($params = null)
 {
     $defaultParams = array('typeName' => 'Zoomable Image', 'typeDesc' => 'An item with one or more image attachments which should be available will zoom capabilities', 'profileName' => $this->defaultProfileName, 'viewerName' => 'PanZoom');
     $params = empty($params) ? $defaultParams : $params;
     return parent::InstallDefaults($params, $this->_paramInfo);
 }
示例#5
0
 /**
  * Install default profile
  *
  * Install default item types, elements, and profiles for easy setup
  *
  * @return void
  */
 public function installDefaults($params = null)
 {
     $defaultParams = array('typeName' => 'pdf', 'typeDesc' => 'A digital resource attached as a Portable Document Format (PDF) file.', 'profileName' => $this->defaultProfileName, 'viewerName' => 'PDF');
     $params = empty($params) ? $defaultParams : $params;
     return parent::InstallDefaults($params, $this->_paramInfo);
 }
 /**
  * Install default profile
  *
  * Install default item types, elements, and profiles for easy setup
  *
  * @return void
  */
 public function installDefaults($params = null)
 {
     $defaultParams = array('typeName' => 'eBook', 'typeDesc' => 'A digital representation of a bound, paged book, to be displayed using Internet Archive Book Reader. The content of this book may be stored either in Omeka or on the Internet Archive.', 'profileName' => $this->defaultProfileName, 'viewerName' => 'BookReader');
     $params = empty($params) ? $defaultParams : $params;
     return parent::InstallDefaults($params, $this->_paramInfo);
 }
示例#7
0
 /**
  * Install default profile
  *
  * Install default item types, elements, and profiles for easy setup
  *
  * @return void
  */
 public function installDefaults($params = null)
 {
     $defaultParams = array('typeName' => 'Synchonized Oral History', 'typeDesc' => 'Oral history object synchronized with text, to be displayed using the OHMS viewer.', 'profileName' => $this->defaultProfileName, 'viewerName' => 'Ohms');
     $params = empty($params) ? $defaultParams : $params;
     return parent::InstallDefaults($params, $this->_paramInfo);
 }