예제 #1
0
              <?php 
}
?>
            </select>
          </div>
          <div class="form-item">
            <label for="steller">Antragstellerin/Antragsteller</label>
            <input name="steller" id="steller" type="text" value="<?php 
print $steller;
?>
" />
          </div>
          <div class="form-item">
            <label for="cvtx_antrag_event">Veranstaltung</label>
            <?php 
echo cvtx_dropdown_events($selected = $curr_evid, $type = 'cvtx_top', $message = '', $multiple = false);
?>
          </div>
      </div>
      <div id="sort" class="filter">
        <?php 
$sortings = array('cvtx_sort' => '- Standard -', 'cvtx_antrag_ord' => 'Antragsnummer', 'cvtx_antrag_poll' => 'Status', 'cvtx_antrag_event' => 'Veranstaltung');
?>
        <h3>Sortieren</h3>
          <div class="form-item">
            <label for="sort_by">Sortieren nach</label>
            <select name="sort_by" id="sort_by">
              <?php 
foreach ($sortings as $sort_key => $sort_name) {
    ?>
                <option value="<?php 
예제 #2
0
function cvtx_assign_to_custom_column_content($c, $column_name, $term_id)
{
    if ($column_name == 'export') {
        echo '<label for="cvtx_tax_event_select">' . __('Event', 'cvtx') . ':</label><br />';
        echo cvtx_dropdown_events(false, "", __('No events available.', 'cvtx'));
        echo '<br/>';
        echo '<input class="cvtx-tax-term-id" type="hidden" name="cvtx_tax_term_id" value="' . $term_id . '" />';
        echo '<input class="export-cvtx" type="submit" name="export" value="Export" />';
    }
}