⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
templates
/
portal
/
Edit File: edit.inc
<table class="nopadding" cellspacing="6" width="100%"> <?php $rows = $layout->rows(); $max_blocks = $GLOBALS['injector']->getInstance('Horde_Core_Perms')->hasAppPermission('max_blocks'); list($current_row, $current_col) = $layout->getCurrentBlock(); $allow_add = ($max_blocks === true) || ($max_blocks > $layout->count()); $columns = 0; for ($row = 0; $row < $rows; ++$row): ?> <tr> <?php $columns = $layout->columns($row); if ($columns instanceof PEAR_Error) { $columns = 0; } for ($col = 0; $col < $columns; ++$col): $isEditing = ($current_row === $row && $current_col === $col); $colspan = $layout->getWidth($row, $col); if ($layout->isCovered($row, $col)): ?> <!-- covered cell here --> <?php else: ?> <td class="<?php echo $isEditing ? 'currentBlock' : 'headerbox' ?>" valign="top" width="<?php echo floor(100 / ($columns + 1)) * $colspan ?>%" rowspan="<?php echo $layout->getHeight($row, $col) ?>" colspan="<?php echo $colspan ?>"> <?php try { $blockInfo = $layout->getBlockInfo($row, $col); } catch (Horde_Exception $e) {} if (!$layout->isEmpty($row, $col)) { require __DIR__ . '/layout.inc'; } else { if ($allow_add) { require __DIR__ . '/add.inc'; } } ?> </td> <?php endif; endfor; if ($allow_add): ?> <td valign="top" class="headerbox"> <?php require __DIR__ . '/add.inc'; ?> </td> <?php endif; ?> </tr> <?php endfor; if ($allow_add): ?> <tr> <?php for ($col = 0; $col <= $columns; ++$col): ?> <td valign="top" class="headerbox"> <?php require __DIR__ . '/add.inc'; ?> </td> <?php endfor; ?> </tr> <?php endif; ?> </table>
Simpan