31 lines
1.3 KiB
PHP
Executable File
31 lines
1.3 KiB
PHP
Executable File
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
|
<?php
|
|
$desc = get_category_info(null);
|
|
?>
|
|
<h2><?php echo i18n("Categories");?></h2>
|
|
<br>
|
|
<a class="btn btn-primary " href="<?php echo site_url();?>add/category"><?php echo i18n('Add_category');?></a>
|
|
<br><br>
|
|
<table class="table category-list">
|
|
<thead>
|
|
<tr class="head">
|
|
<th><?php echo i18n('Name');?></th>
|
|
<th><?php echo i18n('Description');?></th>
|
|
<th><?php echo i18n('Contents');?></th>
|
|
<th><?php echo i18n('Operations');?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($desc as $d):?>
|
|
<tr>
|
|
<td><a href="<?php echo site_url();?>admin/categories/<?php echo $d->slug;?>"><?php echo $d->title;?></a></td>
|
|
<td><?php echo $d->body;?></td>
|
|
<td><?php $total = get_draftcount($d->slug) + $d->count + get_scheduledcount($d->slug); echo $total?></td>
|
|
<?php if($d->slug !== 'uncategorized'):?>
|
|
<td><a class="btn btn-primary btn-xs" href="<?php echo $d->url;?>/edit?destination=admin/categories"><?php echo i18n('Edit');?></a> <?php if ($d->count == 0 && get_draftcount($d->slug) == 0 && get_scheduledcount($d->slug) == 0){echo '<a class="btn btn-danger btn-xs" href="' . $d->url . '/delete?destination=admin/categories">' . i18n('Delete') . '</a>';}?></td>
|
|
<?php endif;?>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|