Skip to content
Snippets Groups Projects
Commit df55269a authored by Demian Katz's avatar Demian Katz
Browse files

Added missing template.

parent 5b94f19f
Branches
Tags
No related merge requests found
<?
// Set page title.
$this->headTitle($this->translate('Export Record'));
?>
<div data-role="page" id="Record-view">
<?=$this->mobileMenu()->header()?>
<div data-role="content">
<?=$this->flashmessages()?>
<? $exportFormats = $this->export()->getFormatsForRecord($this->driver); if (count($exportFormats) > 0): ?>
<?=$this->transEsc('export_choose_format')?>
<ul>
<? foreach ($exportFormats as $exportFormat): ?>
<li><a rel="external" href="<?=$this->recordLink()->getActionUrl($this->driver, 'Export')?>?style=<?=$this->escapeHtml($exportFormat)?>"><?=$this->transEsc('Export to')?> <?=$this->transEsc($this->export()->getLabelForFormat($exportFormat))?></a></li>
<? endforeach; ?>
</ul>
<? else: ?>
<?=$this->transEsc('export_no_formats')?>
<? endif; ?>
</div>
<?=$this->mobileMenu()->footer()?>
</div>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment