| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Engineering/V1/iimec/wp-content/themes/annotum-base/misc/ |
Upload File : |
<?php
// Set a default PDF Link
$pdf_link = '';
if (function_exists('anno_pdf_download_url')) {
$pdf_url = anno_pdf_download_url(get_the_ID());
if (!empty($pdf_url)) {
$pdf_link = '<a href="'.esc_url($pdf_url).'">'.__('PDF', 'anno').'</a>';
}
}
// Set a default XML Link
$xml_link = '';
if (function_exists('anno_xml_download_url')) {
$xml_url = anno_xml_download_url(get_the_ID());
if (!empty($xml_url)) {
$xml_link = '<a href="'.esc_url($xml_url).'">'.__('XML', 'anno').'</a>';
}
}
?>
<div class="tools-bar supplement clearfix">
<div class="cell print">
<a href="#" onclick="window.print(); return false;"><?php _e('Print Article', 'anno'); ?></a>
</div>
<div class="cell citation">
<a><?php _e('Citation', 'anno'); ?></a>
<div class="citation-container">
<textarea class="entry-summary" readonly><?php anno_the_citation(); ?></textarea>
</div><!--/.citation-container -->
</div>
<div class="cell download">
<?php echo implode(', ', array($pdf_link, $xml_link)); ?>
</div>
<div class="cell share clearfix">
<div class="social-nav">
<ul class="nav">
<li><?php anno_email_link(); ?></li>
<li><?php anno_twitter_button(); ?></li>
<li><?php anno_facebook_button(); ?></li>
</ul>
</div>
</div>
</div><!-- .action-bar -->