示例#1
0
<form method="post" action="scripts/manage-bulk.php">
	<input type="hidden" name="area" value="<?php 
    echo $area;
    ?>
" />

	<?php 
    include 'manage-filter-nav.php';
    ?>
	<?php 
    include 'manage-bulk-action.php';
    ?>

	<?php 
    while ($entry = $list->next()) {
        ?>


		<?php 
        $status = $entry->getStatus();
        $linkEdit = 'admin.php?area=edit&amp;cofilter=' . $entry->getId();
        $linkStatus = 'scripts/manage.php?cofilter=' . $entry->getId();
        $linkActive = $linkStatus . '&amp;status=' . ae_CommentfilterModel::STATUS_ACTIVE;
        $linkInactive = $linkStatus . '&amp;status=' . ae_CommentfilterModel::STATUS_INACTIVE;
        $linkDelete = $linkStatus . '&amp;status=delete';
        ?>

	<div class="manage-entry cf-entry status-<?php 
        echo $entry->getStatus();
        ?>