<?php  defined('C5_EXECUTE') or die("Access Denied.");?>
<div class="ccm-ui">
<?php

Loader::library('marketplace');
$mi = Marketplace::getInstance();
$tp = new TaskPermission();
if (!$tp->canInstallPackages()) { ?>
	<p><?php echo t('You do not have permission to download packages from the marketplace.')?></p>
	<?php exit;
} else if (!$mi->isConnected()) { ?>
	<div class="ccm-pane-body-inner">
		<?php Loader::element('dashboard/marketplace_connect_failed')?>
	</div>
<?php } else {	
	$ch = Loader::helper('concrete/interface'); 
	Loader::library('marketplace');
	Loader::model('marketplace_remote_item');
	
	$mpID = $_REQUEST['mpID'];
	if (!empty($mpID)) {
		$mri = MarketplaceRemoteItem::getByID($mpID);
	}
	if (is_object($mri)) { ?>
	
		<?php $screenshots = $mri->getScreenshots(); ?>
		
		
		<table class="ccm-marketplace-details-table">
		<tr>
			<td valign="top">
				<div id="ccm-marketplace-item-screenshots-wrapper">	
				<div id="ccm-marketplace-item-screenshots">
				<?php
				$i = 0;
				
				if (count($screenshots) > 0) { 
					foreach($screenshots as $si) { ?>
						<img src="<?php echo $si->src?>" width="<?php echo $si->width?>" height="<?php echo $si->height?>" <?php if ($i != 0) { ?>style="display: none" <?php } ?> />	
					<?php 
					$i++;
					}
					
				} else { ?>
					<div class="ccm-marketplace-item-screenshots-none">
						<?php echo t('No screenshots')?>
					</div>
				<?php } ?>
				</div>
				</div>
						
				<?php if (!$mri->getMarketplaceItemVersionForThisSite()) { ?>
					<Div class="clearfix" style="clear: both">
					<div class="block-message alert-message error">
						<p><?php echo t('This add-on is marked as incompatible with this version of concrete5. Please contact the author of the add-on for assistance.')?></p>
					</div>
					</div>
				<?php } ?>
			</td>
			<td valign="top">
			
		<div class="ccm-marketplace-item-information">
		<div class="ccm-marketplace-item-information-inner">
		<h1><?php echo $mri->getName()?></h1>
		</div>

		<?php if ($mri->getReviewBody() != '') { ?>
			<div class="ccm-marketplace-item-review-quote">
			<?php echo $mri->getReviewBody()?>
			</div>
		<?php } ?>
		<div class="ccm-marketplace-item-rating">
			<?php echo Loader::helper('rating')->outputDisplay($mri->getAverageRating())?>
			<?php echo t2('%d review', '%d reviews', $mri->getTotalRatings(), $mri->getTotalRatings())?>
			<?php if ($mri->getTotalRatings() > 0) { ?>
				<a href="<?php echo $mri->getRemoteReviewsURL()?>" target="_blank" class="ccm-marketplace-item-reviews-link"><?php echo t('Read Reviews')?></a>
			<?php } ?>
		</div>

		<div>
		<h2><?php echo t('Details')?></h2>
		<p><?php echo $mri->getBody()?></p>	
		</div>
		</div>
	<?php
		if ($mri->purchaseRequired()) {
			$buttonText = t('Purchase - %s', '$' . $mri->getPrice());
			$buttonAction = 'javascript:ccm_getMarketplaceItem({mpID: \'' . $mri->getMarketplaceItemID() . '\'})';
		} else {
			$buttonText = t('Download & Install');
			if ($type == 'themes') {
				$buttonAction = 'javascript:ccm_getMarketplaceItem({mpID: \'' . $mri->getMarketplaceItemID() . '\', onComplete: function() {window.location.href=\'' . View::url('/dashboard/pages/themes') . '\'}})';
			} else {
				$buttonAction = 'javascript:ccm_getMarketplaceItem({mpID: \'' . $mri->getMarketplaceItemID() . '\', onComplete: function() {window.location.href=\'' . View::url('/dashboard/extend/install') . '\'}})';					
			}
		}
		
		if (!$mri->getMarketplaceItemVersionForThisSite()) {
			$buttonAction = 'javascript:void(0)';
		}

	?>
	
		<div class="dialog-buttons">
			<input type="button" class="btn primary <?php if (!$mri->getMarketplaceItemVersionForThisSite()) { ?> disabled<?php } ?> ccm-button-right" value="<?php echo $buttonText?>" onclick="<?php echo $buttonAction?>" />
			<input type="button" class="btn" value="<?php echo t('View in Marketplace')?>" onclick="window.open('<?php echo $mri->getRemoteURL()?>')" /> 
			<?php if ($mri->getMarketplaceItemType() == 'theme') { ?>
				<a title="<?php echo t('Preview')?>" onclick="ccm_previewMarketplaceTheme(1, <?php echo intval($mri->getRemoteCollectionID())?>,'<?php echo addslashes($mri->getName()) ?>','<?php echo addslashes($mri->getHandle()) ?>')" 
				href="javascript:void(0)" class="btn"><?php echo t('Preview')?></a>
			<?php } ?>
		</div>
		<br/>
		
	
	</td>
	</tr>
	</table>
	
	<?php } else { ?>
		<div class="block-message alert-message error"><p><?php echo t('Invalid marketplace item.')?></p></div>
	<?php } ?>

<?php } ?>

</div>
<script type="text/javascript">
var marketplaceImages;
$(function() {
	clearInterval(marketplaceImages);
	var currentImage = 0;
	var totalImages = $('#ccm-marketplace-item-screenshots img').length;
	if (totalImages > 1) {
		var im = $('#ccm-marketplace-item-screenshots img').eq(0);
		im.css('z-index', 10001);
		$('#ccm-marketplace-item-screenshots img').not(im).css('z-index', 10000);
		marketplaceImages = setInterval(function() {
			var oim = $('#ccm-marketplace-item-screenshots img').eq(currentImage);
			currentImage++;
			if (currentImage == totalImages) {
				currentImage = 0;
			}
			var nim = $('#ccm-marketplace-item-screenshots img').eq(currentImage);
			nim.show();
			oim.fadeOut(500, function() {
				oim.css('z-index', 10000);
				nim.css('z-index', 10001);
			});
		}, 5000);
	}	
});
</script>
