Files
friendshiptours.org/site/en/admin/news.php
2015-11-12 19:58:50 -06:00

23 lines
798 B
PHP

<h2>Administrate FTI: News</h2>
<p>
Below is a list of all the news posts on the front page of FTI. You
can add a news post, edit current news posts or delete current news posts.
</p>
<div class='admin_summary_box' id='news_summary'>
<h3>All News Items</h3>
<p>
<a href='/admin/news.php?do=add'>Add news post</a>
</p>
<table class='summary_table'>
<?php for($c = 0; $c < count($this->data['news']); $c++): ?>
<tr>
<td class='summary_data'><?php echo $this->data['news'][$c]->title ?></td>
<td class='summary_actions'>
<a href='/admin/news.php?do=edit&id=<?php echo $this->data['news'][$c]['id'] ?>'>Edit</a>
<a href='/admin/news.php?do=delete&id=<?php echo $this->data['news'][$c]['id'] ?>'>Delete</a>
</td>
</tr>
<?php endfor; ?>
</table>
</div>