?>
</dd>
                <dt><?php 
echo t('Storage Group');
?>
:</dt>
                <dd><?php 
storagegroup_select($schedule->storagegroup);
?>
</dd>
                <dt><?php 
echo t('Playback Group');
?>
:</dt>
                <dd><?php 
playgroup_select($schedule->playgroup, 'playgroup', $schedule);
?>
</dd>
                <dt><?php 
echo t('Recording Priority');
?>
:</dt>
                <dd><select name="recpriority"><?php 
for ($i = 99; $i >= -99; --$i) {
    echo "<option value=\"{$i}\"";
    if ($schedule->recpriority == $i) {
        echo ' SELECTED';
    }
    echo ">{$i}</option>";
}
?>
Esempio n. 2
0
 **/
?>

<form id="chg_grp_form" class="form" method="post" action="<?php 
echo form_action;
?>
">

<table border="0" cellspacing="0" cellpadding="0">
<tr class="x-sep">
    <th><?php 
echo t('Edit existing group');
?>
:</th>
    <td><?php 
playgroup_select($group['name'], 'playgroup', NULL, NULL, '$(\'chg_grp_form\').submit()');
?>
        <noscript><input type="submit" class="submit" value="<?php 
echo t('Edit');
?>
"></noscript></td>
    <td><input type="submit" class="submit" name="new_group" value="<?php 
echo t('New Group');
?>
"></td>
</tr>
</table>

</form>

<form id="save_grp_form" class="form" method="post" action="<?php