11 lines
532 B
PHP
Executable File
11 lines
532 B
PHP
Executable File
<?php if($type == 'project' && common::hasPriv('doc', 'project2export')):?>
|
|
<?php $html = html::a($this->createLink('doc', 'project2export', "libID=$libID&docID=$docID", "html", true), "<i class='icon-export muted'> </i>" . $lang->export, '', "class='btn btn-link export' id='project2export'");?>
|
|
<script>
|
|
$(function()
|
|
{
|
|
console.log(1111)
|
|
$('#subHeader #pageActions .btn-toolbar').prepend(<?php echo json_encode($html);?>);
|
|
$('#project2export').modalTrigger({type:'ajax', showHeader:false});
|
|
})
|
|
</script>
|
|
<?php endif; ?>
|