Drupal modules for browsing and managing Fedora-based digital repositories.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* ShowDemoStreamsInFieldSets class
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show Demo Streams in Field Sets ???
|
|
|
|
*/
|
|
|
|
class ShowDemoStreamsInFieldSets {
|
|
|
|
private $pid = NULL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
* @param type $pid
|
|
|
|
*/
|
|
|
|
function ShowDemoStreamsInFieldSets($pid) {
|
|
|
|
//drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
|
|
|
$this->pid = $pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show Medium Size ??
|
|
|
|
* @global type $base_url
|
|
|
|
* @return type
|
|
|
|
*/
|
|
|
|
function showMediumSize() {
|
|
|
|
global $base_url;
|
|
|
|
$collection_fieldset = array(
|
|
|
|
'#collapsible' => FALSE,
|
|
|
|
'#value' => '<a href="'. $base_url . '/fedora/repository/'. $this->pid . '/MEDIUM_SIZE/"><img src="'.
|
|
|
|
$base_url . '/fedora/repository/'. $this->pid . '/MEDIUM_SIZE/MEDIUM_SIZE'. '" /></a>',
|
|
|
|
);
|
|
|
|
return theme('fieldset', $collection_fieldset);
|
|
|
|
}
|
|
|
|
}
|