Joywork/templates/cabinet_links_body.php

21 lines
778 B
PHP
Raw Normal View History

2026-05-22 20:21:54 +02:00
<?php
$num = 1;
while($feed = mysql_fetch_assoc($rezCabinetFeeds)) {
echo '<tr ';
if ($num % 2 > 0) {
echo 'style="background-color: #f9f9f9;"';
}
echo '>';
echo '<td width="50"><a href="javascript:{}" onclick="openAddCabinetLink(' . $feed['object_cabinet_id'] .', '. $feed['id'] .');" title="Редактировать"><i class="ti-pencil"></i></a></td>';
echo '<td>' . $feed['name'] . '</td>';
echo '<td><a target="_blank" href="' . $feed['url'] . '">' . $feed['url'] . '</a></td>';
echo '<td width="100">' . $feed['view_count'] . '</td>';
echo '<td width="50"><a href="javascript:{}" onclick="deleteCabinetLink(' . $feed['id'] .');" title="Удалить"><i class="ti-close"></i></a></td>';
echo '</tr>';
$num++;
}