Remove unused view

This commit is contained in:
Zachary Doll 2014-07-14 13:46:50 -05:00
parent 13ab3b7978
commit aebdf8a533

View File

@ -1,33 +0,0 @@
<?php if (!defined('APPLICATION')) exit();
require_once $this->FetchViewLocation('helper_functions');
?>
<div class="Box BoxPromoted">
<h4><?php echo T('Promoted Content'); ?></h4>
<div class="PanelInfo DataList">
<?php
$Content = $this->Data('Content');
$ContentItems = sizeof($Content);
if ($Content):
if ($this->Group):
$Content = array_chunk($Content, $this->Group);
endif;
foreach ($Content as $ContentChunk):
if ($this->Group):
echo '<div class="PromotedGroup">';
foreach ($ContentChunk as $ContentItem):
WritePromotedContent($ContentItem, $this);
endforeach;
echo '</div>';
else:
WritePromotedContent($ContentChunk, $this);
endif;
endforeach;
endif;
?>
</div>
</div>