mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
21 lines
526 B
PHP
Executable File
21 lines
526 B
PHP
Executable File
<p>news placeholder lawl</p>
|
|
<br />
|
|
<?php $this->load->helper('url'); ?>
|
|
<?php if ($admin): ?>
|
|
<a href="<?=site_url('news/add'); ?>">Add New</a>
|
|
<?php endif; ?>
|
|
|
|
<br />
|
|
<?php foreach ($news as $f): ?>
|
|
<?php if ($admin): ?>
|
|
<?php $a = 'news/delete/' + $f['id'] ?>
|
|
<a href="<?=site_url($a); ?>">Delete</a>
|
|
<?php $a = 'news/edit/' + $f['id'] ?>
|
|
<a href="<?=site_url($a); ?>">Edit</a><br />
|
|
<?php endif; ?>
|
|
writer: <?=$f['written_by']; ?><br />
|
|
text: <?=$f['text']; ?><br />
|
|
<?php endforeach; ?>
|
|
|
|
<?php //TODO: pagination here ?>
|