示例#1
0
    $MM_fieldsStr = "name|value|description|value|publish|value";
    $MM_columnsStr = "name|',none,''|description|',none,''|publish|',none,''";
    //|$delim,$altVal,$emptyVal|  |',none,''|
    require "../Connections/insetstuff.php";
    require "../Connections/dataactions.php";
    ob_end_flush();
}
if (isset($_GET['id'])) {
    $R__MMColParam = $_GET['id'];
} else {
    $R__MMColParam = "8000000";
}
$R = $dbcon->Execute("SELECT * FROM {$table} WHERE id = {$R__MMColParam}") or die($dbcon->ErrorMsg());
$rec_id =& new Input('hidden', 'MM_recordId', $_GET['id']);
//build form
$html = $buildform->start_table('name');
$html .= $buildform->add_header('Add/Edit ' . $listtitle, 'banner');
$html .= addfield('name', 'List Name', 'text', $R->Fields("name"));
$html .= addfield('description', 'List Description', 'textarea', $R->Fields("description"));
$html .= addfield('publish', 'Publish', 'checkbox', $R->Fields("publish"), '1');
$html .= $buildform->add_content($buildform->add_btn() . ' ' . $buildform->del_btn() . $rec_id->fetch());
$html .= $buildform->end_table();
$form =& new Form();
$form->set_contents($html);
include "header.php";
if ($_GET['action'] == "list") {
    listpage($listtitle, $listsql, $fieldsarray, $filename, $orderby, $sort, $extra);
} else {
    echo $form->fetch();
}
include "footer.php";
示例#2
0
$html .= addfield('from_email', 'From Email', 'text', $R->Fields("from_email"));
$html .= addfield('from_name', 'From Name', 'text', $R->Fields("from_name"));
$html .= addfield('reply_to_address', 'Reply To Address', 'text', $R->Fields("reply_to_address"));
$WYSIWYG =& AMPFormElement_HTMLEditor::instance();
$WYSIWYG->addEditor('message_email_html');
$html .= addfield('message_email_html', 'HTML Email Message', 'textarea', $R->Fields("message_email_html"));
$html .= addfield('message_email_text', 'Text Email Message', 'textarea', $R->Fields("message_email_text"));
#$html .= addfield('embargo','Embargoed Till','text',$R->Fields("embargo"));
$list_options = makelistarray($List, 'id', 'name', 'Select List');
$lists =& new Select('list_ID', $list_options, $R->Fields("list_ID"));
$html .= $buildform->add_row('Send to List', $lists);
$t_options = makelistarray($T, 'id', 'name', 'Select Template');
$temp =& new Select('message_template_ID', $t_options, $R->Fields("message_template_ID"));
$html .= $buildform->add_row('HTML Email Template', $temp);
$html .= addfield('publish', 'Show Email on Website', 'checkbox', $R->Fields("publish"));
$html .= $buildform->add_content($buildform->add_btn() . ' ' . $buildform->del_btn() . $rec_id->fetch() . $sendformat->fetch() . $blast_type->fetch());
$html .= $buildform->end_table();
$form =& new Form();
$form->set_contents($html);
include "header.php";
if ($_GET['action'] == "list") {
    if ($_REQUEST['response']) {
        echo '<p><b>' . $_REQUEST['response'] . '</b></p>';
    }
    listpage($listtitle, $listsql, $fieldsarray, $filename, $orderby, $sort, $extra);
    echo '<p><a href="#" onClick="newwindow=window.open(\'blast_control.php?type=Email&process=1\',\'name\',\'height=20,width=150\'); alert (\'You may close the pop up window and your message will send without interpution\')" >START SENDING NEW EMAIL BLASTS</a></p>';
} else {
    echo $form->fetch();
    echo $WYSIWYG->output();
}
include "footer.php";