00001 <?php ?>
00125 </dd>
00126 </dl>
00127
00128 </div>
00129
00130 <div id="find_date_options">
00131 <h3><?php echo t('Find Date & Time Options') ?>:</h3>
00132 <dl class="clearfix">
00133 <dt><?php echo t('Find Day') ?>:</dt>
00134 <dd><?php day_select($schedule->findday) ?></dd>
00135 <dt><?php echo t('Find Time') ?>:</dt>
00136 <dd><input type="text" name="findtime" value="<?php echo html_entities($schedule->findtime) ?>" /></dd>
00137 </dl>
00138 </div>
00139
00140 <div id="advanced_options">
00141 <h3><?php echo t('Advanced Options') ?>:</h3>
00142
00143 <dl class="clearfix">
00144 <dt><?php echo t('Recording Profile') ?>:</dt>
00145 <dd><?php profile_select($schedule->profile) ?></dd>
00146 <dt><?php echo t('Transcoder') ?>:</dt>
00147 <dd><?php transcoder_select($schedule->transcoder) ?></dd>
00148 <dt><?php echo t('Recording Group') ?>:</dt>
00149 <dd><?php recgroup_select($schedule->recgroup) ?></dd>
00150 <dt><?php echo t('Storage Group') ?>:</dt>
00151 <dd><?php storagegroup_select($schedule->storagegroup) ?></dd>
00152 <dt><?php echo t('Recording Priority') ?>:</dt>
00153 <dd><select name="recpriority"><?php
00154 for ($i=99; $i>=-99; --$i) {
00155 echo "<option value=\"$i\"";
00156 if ($schedule->recpriority == $i)
00157 echo ' SELECTED';
00158 echo ">$i</option>";
00159 }
00160 ?></select></dd>
00161 <dt><?php echo t('Check for duplicates in') ?>:</dt>
00162 <dd><select name="dupin"><?php
00163 echo '<option value="1"';
00164 if ($schedule->dupin == 1)
00165 echo ' SELECTED';
00166 echo '>' . t('Current recordings') . '</option>';
00167 echo '<option value="2"';
00168 if ($schedule->dupin == 2)
00169 echo ' SELECTED';
00170 echo '>' . t('Previous recordings') . '</option>';
00171 echo '<option value="4"';
00172 if ($schedule->dupin == 4)
00173 echo ' SELECTED';
00174 echo '>' . t('Only New Episodes') . '</option>';
00175 echo '<option value="15"';
00176 if ($schedule->dupin == 15 || $schedule->dupin == 0)
00177 echo ' SELECTED';
00178 echo '>' . t('All recordings') . '</option>';
00179 ?></select></dd>
00180 <dt><?php echo t('Duplicate Check method') ?>:</dt>
00181 <dd><select name="dupmethod"><?php
00182 echo '<option value="1"';
00183 if ($schedule->dupmethod == 1)
00184 echo ' SELECTED';
00185 echo '>' . t('None') . '</option>';
00186 echo '<option value="2"';
00187 if ($schedule->dupmethod == 2)
00188 echo ' SELECTED';
00189 echo '>' . t('Subtitle') . '</option>';
00190 echo '<option value="4"';
00191 if ($schedule->dupmethod == 4)
00192 echo ' SELECTED';
00193 echo '>' . t('Description') . '</option>';
00194 echo '<option value="6"';
00195 if ($schedule->dupmethod == 6 || $schedule->dupmethod == 0)
00196 echo ' SELECTED';
00197 echo '>'.t('Subtitle and Description').'</option>';
00198 echo '<option value="8"';
00199 if ($schedule->dupmethod == 8)
00200 echo ' SELECTED';
00201 echo '>'.t('Subtitle then Description').'</option>';
00202 ?></select></dd>
00203 <dt><?php echo t('Auto-flag commercials') ?>:</dt>
00204 <dd><input type="checkbox" class="radio" name="autocommflag"<?php if ($schedule->autocommflag) echo ' CHECKED' ?> value="1" /></dd>
00205 <dt><?php echo t('Auto-transcode') ?>:</dt>
00206 <dd><input type="checkbox" class="radio" name="autotranscode"<?php if ($schedule->autotranscode) echo ' CHECKED' ?> value="1" /></dd>
00207 <dt><?php echo get_backend_setting('UserJobDesc1') ?>:</dt>
00208 <dd><input type="checkbox" class="radio" name="autouserjob1"<?php if ($schedule->autouserjob1) echo ' CHECKED' ?> value="1" /></dd>
00209 <dt><?php echo get_backend_setting('UserJobDesc2') ?>:</dt>
00210 <dd><input type="checkbox" class="radio" name="autouserjob2"<?php if ($schedule->autouserjob2) echo ' CHECKED' ?> value="1" /></dd>
00211 <dt><?php echo get_backend_setting('UserJobDesc3') ?>:</dt>
00212 <dd><input type="checkbox" class="radio" name="autouserjob3"<?php if ($schedule->autouserjob3) echo ' CHECKED' ?> value="1" /></dd>
00213 <dt><?php echo get_backend_setting('UserJobDesc4') ?>:</dt>
00214 <dd><input type="checkbox" class="radio" name="autouserjob4"<?php if ($schedule->autouserjob4) echo ' CHECKED' ?> value="1" /></dd>
00215 <dt><?php echo t('Inactive') ?>:</dt>
00216 <dd><input type="checkbox" class="radio" name="inactive"<?php if ($schedule->inactive) echo ' CHECKED' ?> value="1" /></dd>
00217 <dt><?php echo t('Auto-expire recordings') ?>:</dt>
00218 <dd><input type="checkbox" class="radio" name="autoexpire"<?php if ($schedule->autoexpire) echo ' CHECKED' ?> value="1" /></dd>
00219 <dt><?php echo t('Record new and expire old') ?>:</dt>
00220 <dd><input type="checkbox" class="radio" name="maxnewest"<?php if ($schedule->maxnewest) echo ' CHECKED' ?> value="1" /></dd>
00221 <dt><?php echo t('No. of recordings to keep') ?>:</dt>
00222 <dd><input type="input" class="quantity" name="maxepisodes" value="<?php echo html_entities($schedule->maxepisodes) ?>" /></dd>
00223 <dt><?php echo t('Start Early') ?>:</dt>
00224 <dd><input type="input" class="quantity" name="startoffset" value="<?php echo html_entities($schedule->startoffset) ?>" />
00225 <?php echo t('minutes') ?></dd>
00226 <dt><?php echo t('End Late') ?>:</dt>
00227 <dd><input type="input" class="quantity" name="endoffset" value="<?php echo html_entities($schedule->endoffset) ?>" />
00228 <?php echo t('minutes') ?></dd>
00229 </dl>
00230
00231 <p align="center">
00232 <input type="submit" class="submit" name="save" value="<?php echo $schedule->recordid ? t('Save Schedule') : t('Create Schedule') ?>">
00233 </p>
00234
00235 </div>
00236
00237 </form>
00238
00239 </div>
00240
00241 <?php
00242
00243
00244 require 'modules/_shared/tmpl/'.tmpl.'/footer.php';