Files
server/usr/share/psa-horde/kronolith/templates/search/search_advanced.inc
2026-01-07 20:52:11 +01:00

92 lines
2.9 KiB
PHP

<form method="post" name="eventform" id="eventform" action="search.php">
<?php Horde_Util::pformInput() ?>
<input type="hidden" name="actionID" value="search_calendar" />
<input type="hidden" name="search_mode" value="advanced" />
<h1 class="header">
<span class="smallheader rightFloat">
<?php echo Horde::widget(array('url' => Horde::url('search.php')->add('search_mode', 'basic'), 'class' => 'smallheader', 'title' => _("_Basic Search"))) ?>
</span>
<?php echo _("Advanced Search") ?>
</h1>
<div class="horde-content">
<table cellspacing="0">
<!-- general header -->
<tr><td align="left" colspan="5" class="control">
<strong><?php echo _("General") ?></strong>
</td></tr>
<!-- title -->
<tr>
<td class="rightAlign"><strong><?php echo Horde::label('title', _("Tit_le")) ?></strong></td>
<td colspan="4">
<input type="text" name="title" id="title" value="<?php echo htmlspecialchars($event->title) ?>" size="40" maxlength="255" />
</td>
</tr>
<!-- calendar -->
<tr>
<td class="rightAlign">
<strong><?php echo Horde::label('calendar', _("C_alendar")) ?></strong>
</td>
<td colspan="4">
<select id="calendar" name="calendar">
<option value="|__any"<?php if ($search_calendar[1] == '__any') echo ' selected="selected"' ?>><?php echo _("Any") ?></option>
<?php foreach ($calendars as $type => $list): ?>
<?php if ($optgroup): ?>
<optgroup label="<?php echo htmlspecialchars($type) ?>">
<?php endif; ?>
<?php foreach ($list as $id => $name): ?>
<option value="<?php echo htmlspecialchars($id) ?>"<?php if ($search_calendar[0] . '|' . $search_calendar[1] == $id) echo ' selected="selected"' ?>><?php echo ($optgroup ? '' : htmlspecialchars($type) . ' ') . htmlspecialchars($name) ?></option>
<?php endforeach; ?>
<?php if ($optgroup): ?>
</optgroup>
<?php endif; ?>
<?php endforeach; ?>
</select>
</td>
</tr>
<!-- location -->
<tr>
<td class="rightAlign">
<strong><?php echo Horde::label('location', _("Lo_cation")) ?></strong>
</td>
<td colspan="4">
<input type="text" name="location" id="location" value="<?php echo htmlspecialchars($event->location) ?>" size="40" maxlength="255" />
</td>
</tr>
<!-- status -->
<tr>
<td class="rightAlign">
<strong><?php echo Horde::label('status', _("Stat_us")) ?></strong>
</td>
<td colspan="4">
<?php echo Kronolith::buildStatusWidget('status', $event->status, true) ?>
</td>
</tr>
<!-- description -->
<tr>
<td class="rightAlign">
<strong><?php echo Horde::label('description', _("Descri_ption")) ?></strong>
</td>
<td colspan="4">
<input type="text" name="description" id="description" value="<?php echo htmlspecialchars($event->description) ?>" size="40" maxlength="255" />
</td>
</tr>
<?php require KRONOLITH_TEMPLATES . '/edit/edit_timespan.inc'; ?>
</table>
</div>
<p class="horde-form-buttons">
<input type="submit" class="horde-default" value="<?php echo _("Search") ?>" />
</p>
</form>