8 lines
438 B
PHP
Executable file
8 lines
438 B
PHP
Executable file
<? if(!empty($document['Document']['pdf_filename'])):
|
|
?>
|
|
<div class="pdfGeneratedMessage">
|
|
A <?=$html->link('PDF copy of this '.$docTypeFullName, '/pdf/'.$document['Document']['pdf_filename']);?> was created <?=$time->niceShort($document['Document']['pdf_created_at']);?> by
|
|
<?=$html->link($users[$document['Document']['pdf_created_by_user_id']], '/users/view/'.$document['Document']['pdf_created_by_user_id']);?>
|
|
</div>
|
|
<? endif;?>
|