Exemplo n.º 1
0
    }
    $scheduling_content .= '>' . $GLOBALS['I18N']->get('hour') . '</option>
    <option value="1440"';
    if ($requeueinterval == 1440) {
        $scheduling_content .= ' selected="selected"';
    }
    $scheduling_content .= '>' . $GLOBALS['I18N']->get('day') . '</option>
    <option value="10080"';
    if ($requeueinterval == 10080) {
        $scheduling_content .= ' selected="selected"';
    }
    $scheduling_content .= '>' . $GLOBALS['I18N']->get('week') . '</option>
    </select>

      <label for="requeueuntil">' . $GLOBALS['I18N']->get('Requeue Until') . '</label>
      ' . $requeueuntil->showInput('requeueuntil', '', $messagedata['requeueuntil']);
    $scheduling_content .= '</div>';
    $scheduling_content .= '</div>';
    $formatting_content .= '<input type="hidden" name="htmlformatted" value="auto" />';
    $formatting_content .= '
    <div class="field">
    <label for="sendformat"> ' . $GLOBALS['I18N']->get('Send as') . Help('sendformat') . '</label>' . '
  ' . $GLOBALS['I18N']->get('html') . ' <input type="radio" name="sendformat" value="HTML" ';
    $formatting_content .= $messagedata['sendformat'] == 'HTML' ? 'checked="checked"' : '';
    $formatting_content .= '/>
  ' . $GLOBALS['I18N']->get('text') . ' <input type="radio" name="sendformat" value="text" ';
    $formatting_content .= $messagedata['sendformat'] == 'text' ? 'checked="checked"' : '';
    $formatting_content .= '/>
  ';
    //  0009687: Confusing use of the word "Both", indicating one email with both text and html and not two emails
    //  $formatting_content .= $GLOBALS['I18N']->get("text and html").' <input type="radio" name="sendformat" value="text and HTML" ';
Exemplo n.º 2
0
echo $GLOBALS['I18N']->get('To delete subscribers who signed up and have not confirmed their subscription');
?>
</legend>
        <div class="field"><label
                for="fromdate"><?php 
echo $GLOBALS['I18N']->get('Date they signed up after');
?>
</label>
            <div id="fromdate"><?php 
echo $from->showInput('', '', $fromval);
?>
</div>
        </div>
        <div class="field"><label for="todate"><?php 
echo $GLOBALS['I18N']->get('Date they signed up before');
?>
</label>
            <div id="todate"><?php 
echo $to->showInput('', '', $toval);
?>
</div>
        </div>
    </fieldset>
    <input type="hidden" name="page" value="reconcileusers"/>
    <input type="hidden" name="option" value="deleteunconfirmed"/>
    <input class="submit" type="submit" value="<?php 
echo $GLOBALS['I18N']->get('Click here');
?>
"></form>
</form>
Exemplo n.º 3
0
        $scheduling_content .= '>' . $GLOBALS['I18N']->get("hour") . '</option>
      <option value="1440"';
        if ($repeatinterval == 1440) {
            $scheduling_content .= " SELECTED";
        }
        $scheduling_content .= '>' . $GLOBALS['I18N']->get("day") . '</option>
      <option value="10080"';
        if ($repeatinterval == 10080) {
            $scheduling_content .= " SELECTED";
        }
        $scheduling_content .= '>' . $GLOBALS['I18N']->get("week") . '</option>
      </select>

    </td></tr>
    </td></tr>
    <tr><td>  ' . $GLOBALS['I18N']->get("repeatuntil") . ':</td><td>' . $repeatuntil->showInput("repeatuntil", "", $_POST["repeatuntil"]) . '</td></tr>
    </td></tr>';
    }
    /*
      $formatting_content .= '
        <tr><td colspan=2>'.Help("format").' '.$GLOBALS['I18N']->get("format").': <b>'.$GLOBALS['I18N']->get("autodetect").'</b>
        <input type=radio name="htmlformatted" value="auto" ';
        $formatting_content .= !isset($htmlformatted) || $htmlformatted == "auto"?"checked":"";
        $formatting_content .= '>
      <b>'.$GLOBALS['I18N']->get("html").'</b> <input type=radio name="htmlformatted" value="1" ';
        $formatting_content .= $htmlformatted == "1" ?"checked":"";
        $formatting_content .= '>
      <b>'.$GLOBALS['I18N']->get("text").'</b> <input type=radio name="htmlformatted" value="0" ';
        $formatting_content .= $htmlformatted == "0" ?"checked":"";
        $formatting_content .= '></td></tr>';
    */
Exemplo n.º 4
0
?>
<hr/>
<form method="get">
<fieldset>
<legend><?php 
echo $GLOBALS['I18N']->get('To delete subscribers who signed up and have not confirmed their subscription');
?>
</legend>
<div class="field"><label for="fromdate"><?php 
echo $GLOBALS['I18N']->get('Date they signed up after');
?>
</label><div id="fromdate"><?php 
echo $from->showInput("", "", $fromval);
?>
</div></div>
<div class="field"><label for="todate"><?php 
echo $GLOBALS['I18N']->get('Date they signed up before');
?>
</label><div id="todate"><?php 
echo $to->showInput("", "", $toval);
?>
</div></div>
</fieldset>
<input type="hidden" name="page" value="reconcileusers" />
<input type="hidden" name="option" value="deleteunconfirmed" />
<input class="submit" type="submit" value="<?php 
echo $GLOBALS['I18N']->get('Click here');
?>
"></form>
</form>
Exemplo n.º 5
0
    }
    $scheduling_content .= '>' . $GLOBALS['I18N']->get("hour") . '</option>
    <option value="1440"';
    if ($requeueinterval == 1440) {
        $scheduling_content .= ' selected="selected"';
    }
    $scheduling_content .= '>' . $GLOBALS['I18N']->get("day") . '</option>
    <option value="10080"';
    if ($requeueinterval == 10080) {
        $scheduling_content .= ' selected="selected"';
    }
    $scheduling_content .= '>' . $GLOBALS['I18N']->get("week") . '</option>
    </select>

      <label for="requeueuntil">' . $GLOBALS['I18N']->get("Requeue Until") . '</label>
      ' . $requeueuntil->showInput("requeueuntil", "", $messagedata["requeueuntil"]);
    $scheduling_content .= '</div>';
    $scheduling_content .= '</div>';
    $formatting_content .= '<input type="hidden" name="htmlformatted" value="auto" />';
    $formatting_content .= '
    <div class="field">
    <label for="sendformat"> ' . $GLOBALS['I18N']->get("Send as") . Help("sendformat") . '</label>' . '
  ' . $GLOBALS['I18N']->get("html") . ' <input type="radio" name="sendformat" value="HTML" ';
    $formatting_content .= $messagedata["sendformat"] == "HTML" ? 'checked="checked"' : '';
    $formatting_content .= '/>
  ' . $GLOBALS['I18N']->get("text") . ' <input type="radio" name="sendformat" value="text" ';
    $formatting_content .= $messagedata["sendformat"] == "text" ? 'checked="checked"' : '';
    $formatting_content .= '/>
  ';
    //  0009687: Confusing use of the word "Both", indicating one email with both text and html and not two emails
    //  $formatting_content .= $GLOBALS['I18N']->get("text and html").' <input type="radio" name="sendformat" value="text and HTML" ';
Exemplo n.º 6
0
    print '</select>';
} else {
    printf('<input type="hidden" name="list" value="%d" />', $list);
    print '<strong>' . listName($list) . '</strong><br/><br/>';
}
?>
<div id="exportdates">
<?php 
echo $GLOBALS['I18N']->get('Date From:');
?>
 <?php 
echo $from->showInput("", "", $fromdate);
echo $GLOBALS['I18N']->get('Date To:');
?>
  <?php 
echo $to->showInput("", "", $todate);
?>
</div>


<?php 
echo s('Select the columns to include in the export');
?>
<div><input type="checkbox" name="selectallcheckbox" id="selectallcheckbox" checked="checked" /><label for="selectallcheckbox"><?php 
echo s('Select all');
?>
 </label></div>

<?php 
$cols = array();
while (list($key, $val) = each($DBstruct["user"])) {
Exemplo n.º 7
0
        printf('<option value="%d">%s</option>', $row['id'], $row['name']);
    }
    print '</select>';
} else {
    printf('<input type="hidden" name="list" value="%d" />', $list);
    print '<strong>' . listName($list) . '</strong><br/><br/>';
}
?>
    <div id="exportdates">
        <?php 
echo $GLOBALS['I18N']->get('Date From:');
echo $from->showInput('', '', $fromdate);
?>
        <?php 
echo $GLOBALS['I18N']->get('Date To:');
echo $to->showInput('', '', $todate);
?>
    </div>


<?php 
echo s('Select the columns to include in the export');
?>
    <div><input type="checkbox" name="selectallcheckbox" id="selectallcheckbox" checked="checked"/><label
            for="selectallcheckbox"><?php 
echo s('Select all');
?>
 </label></div>

<?php 
$cols = array();
Exemplo n.º 8
0
    echo " SELECTED";
}
?>
>Day</option>
<option value="10080"<?php 
if ($repeatinterval == 10080) {
    echo " SELECTED";
}
?>
>Week</option>
</select>

</td></tr>
</td></tr>
<tr><td>  Repeat until:</td><td><?php 
echo $repeatuntil->showInput("repeatuntil", "", $_POST["repeatuntil"]);
?>
</td></tr>
</td></tr>

<? } ?>

<tr><td colspan=2><?php 
echo Help("format");
?>
 Format: <b>Auto detect</b> <input type=radio name="htmlformatted" value="auto" <?php 
echo !isset($htmlformatted) || $htmlformatted == "auto" ? "checked" : "";
?>
>
<b>HTML</b> <input type=radio name="htmlformatted" value="1" <?php 
echo $htmlformatted == "1" ? "checked" : "";