Mini Shell

Direktori : /home/emypro/www/
Upload File :
Current File : /home/emypro/www/obra.php

<?php include('header.php') ?>
<?php 
$obras = new Obra();
$attachments = new Attachment;

$obra = $obras->find($_GET['id']);

// READ
$attachments = $attachments->condition(array('model' => 'obras', 'reference' => $_GET['id']));
?>
<div class="blue-wrapper">
	<b><?= $obra->title ?></b>
</div>
<div id="pages" class="container">
	<ol class="breadcrumb">
		<li><a href="<?= URL_APP ?>">Home</a></li>
		<li><a href="<?= URL_APP ?>obras">Obras</a></li>
		<li class="active">Obra</li>
	</ol>
	<?php foreach(array_chunk($attachments, 2) as $row): ?>
		<div class="row">
			<?php foreach($row as $attachment): ?>
			<div class="col-sm-6">
				<img src="<?= URL_IMG .'attachments/'. $attachment->image ?>" class="img-thumbnail" alt="">
			</div>
			<?php endforeach ?>
		</div><br>
	<?php endforeach ?>
</div>
<?php include('footer.php') ?>

Zerion Mini Shell 1.0