PHP File Manager
Editing File: index.php
<a href="<?php echo site_url(array('news', 'new')); ?>" class="btn btn-primary"> <span class="glyphicon glyphicon-plus"></span> Create news entry </a> <?php $pagination = $this->common->generatePagination('/news/page/', 3, null, $total_news, 30); ?> <p><?php echo $pagination; ?></p> <table class="table table-striped"> <thead> <tr> <th>Title</th> <th>Created</th> </tr> </thead> <tbody> <?php foreach ($news_entries as $entry): ?> <tr> <td><?php echo $entry->title; ?></td> <td><?php echo date('d/m/Y H:i:s', strtotime($entry->created)); ?></td> <td><a href="<?php echo site_url(array('news', 'edit', $entry->news_id)); ?>">Edit</a></td> </tr> <?php endforeach; ?> </tbody> </table> <p><?php echo $pagination; ?></p>
Cancel