view.ctp 1.98 KB


<div class="documents view">
    <h2>Détail document</h2>
    <?php 
        	if($document->photo) {
        		echo '<div style="text-align: center;">';
    			echo $this->Html->image ( 'photos/' . $document->id.'.'.$document->type_doc, [ 
							'alt' => 'Photo',
							'style' => 'max-width: 300px; text-align: center;' 
					]);
    			echo '</div>';
    	} 
    ?>
    <table style="margin-bottom: 30px;">
    <tr><th style="width: 250px;"></th><th></th></tr>

    	<?php 
    	
    	if(isset($materiel)) {
    		$displayElement(__('Materiel'), $this->Html->link($materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $materiel->id]));
    	}
    	else if(isset($suivi)) {
    		$displayElement(__('Suivi'), $this->Html->link('Suivi '.$suivi->id, ['controller' => 'Suivis', 'action' => 'view', $suivi->id]));
    	}

    	$displayElement(__('Nom'), h($document->nom));
    	$displayElement(__('Type'), $document->has('type_document') ? h($document->type_document->nom) : '');
    	
    	if($document->photo) {
    		$p = 'Oui';
    	} else {
    		$p = 'Non';
    	}
    	$displayElement(__('Miniature'), $p);
    	
    	echo '<tr><td><strong>'.__('Description').' </strong></td><td>'.nl2br($document->description).'</td></tr>';

    	$displayElement(__('Extension fichier'), h($document->type_doc));

    	
    	if($document->photo) {
    		echo '<tr><td><strong>Fichier</strong></td><td><a href="'.$this->request->webroot.'webroot/img/photos/'.$document->id.'.'.$document->type_doc.'">Télécharger fichier</a></td></tr>';
    	}else {
    		echo '<tr><td><strong>Fichier</strong></td><td><a href="'.$this->request->webroot.'webroot/files/'.$document->id.'.'.$document->type_doc.'">Télécharger fichier</a></td></tr>';
    	}
    	
    	

    	?>

    </table>
</div>

    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_view', 
			[ 'pluralHumanName' => 'Documents',
			'singularHumanName' => 'Document',
			'lien' => $document->id ]) ?>
		</div>