getValues(); if (!in_array($level, $listLevelValue)) { header("Location: ".DEFAULT_URL."/advertise.php?listing"); exit; } # ---------------------------------------------------------------------------------------------------- # SUBMIT # ---------------------------------------------------------------------------------------------------- if (($_SERVER['REQUEST_METHOD'] == "POST")) { $_POST["friendly_url"] = str_replace(".htm", "", $_POST["friendly_url"]); $_POST["friendly_url"] = str_replace(".html", "", $_POST["friendly_url"]); $_POST["friendly_url"] = trim($_POST["friendly_url"]); $_POST["friendly_url"] = system_denyInjections($_POST["friendly_url"]); $friendly_url = $_POST["friendly_url"]; $request_method_seckey = "post"; include(EDIRECTORY_ROOT."/includes/code/seckey.php"); $validate_account = validate_addAccount($_POST, $message_account); $validate_contact = validate_form("contact", $_POST, $message_contact); $tmpEMAIL = $_POST["email"]; unset($_POST["email"]); $validate_listing = validate_form("listing", $_POST, $message_listing); $_POST["email"] = $tmpEMAIL; $validate_discount = is_valid_discount_code($_POST["discount_id"], "listing", $_POST["id"], $message_discount, $discount_error_num); if ($boolean_seckey && $validate_account && $validate_contact && $validate_listing && $validate_discount) { $account = new Account($_POST); $account->save(); $contact = new Contact($_POST); $contact->setNumber("account_id", $account->getNumber("id")); $contact->save(); unset($_POST["email"]); unset($_POST["phone"]); unset($_POST["address"]); unset($_POST["address2"]); $listing = new Listing($_POST); $listing->setNumber("account_id", $account->getNumber("id")); $status = new ItemStatus(); $listing->setString("status", $status->getDefaultStatus()); $listing->setDate("renewal_date", "00/00/0000"); $listing->Save(); $return_categories_array = explode(",", $return_categories); $listing->setCategories($return_categories_array); /**************************************************************************************************/ /* */ /* E-mail notify */ /* */ /**************************************************************************************************/ setting_get("sitemgr_send_email",$sitemgr_send_email); setting_get("sitemgr_email",$sitemgr_email); $sitemgr_emails = split(",",$sitemgr_email); if ($sitemgr_emails[0]) $sitemgr_email = $sitemgr_emails[0]; setting_get("sitemgr_account_email",$sitemgr_account_email); $sitemgr_account_emails = split(",",$sitemgr_account_email); setting_get("sitemgr_listing_email",$sitemgr_listing_email); $sitemgr_listing_emails = split(",",$sitemgr_listing_email); // sending e-mail to user ////////////////////////////////////////////////////////////////////////// if ($emailNotificationObj = system_checkEmail(SYSTEM_LISTING_SIGNUP, $contact->getString("lang"))) { $subject = $emailNotificationObj->getString("subject"); $body = $emailNotificationObj->getString("body"); $body = str_replace("ACCOUNT_USERNAME",$_POST["username"],$body); $body = str_replace("ACCOUNT_PASSWORD",$_POST["password"],$body); $body = system_replaceEmailVariables($body, $listing->getNumber('id'), 'listing'); $subject = system_replaceEmailVariables($subject, $listing->getNumber('id'), 'listing'); if ($emailNotificationObj->getString("content_type") == "text/html"); $body = html_entity_decode($body); system_mail($contact->getString("email"), $subject, $body, EDIRECTORY_TITLE." <$sitemgr_email>", $emailNotificationObj->getString("content_type"), "", $emailNotificationObj->getString("bcc")); } //////////////////////////////////////////////////////////////////////////////////////////////////// // site manager warning message //////////////////////////////////////////////////////////////////// $sitemgr_msg = "
Site Manager,

New signup in ".EDIRECTORY_TITLE.".

Account:

"; $sitemgr_msg .= "Username: ".$account->getString("username")."
"; $sitemgr_msg .= "First name: ".$contact->getString("first_name")."
"; $sitemgr_msg .= "Last name: ".$contact->getString("last_name")."
"; $sitemgr_msg .= "Company: ".$contact->getString("company")."
"; $sitemgr_msg .= "Address: ".$contact->getString("address")." ".$contact->getString("address2")."
"; $sitemgr_msg .= "Town: ".$contact->getString("city")."
"; $sitemgr_msg .= "County: ".$contact->getString("state")."
"; $sitemgr_msg .= "".ucwords(ZIPCODE_LABEL).": ".$contact->getString("zip")."
"; $sitemgr_msg .= "Country: ".$contact->getString("country")."
"; $sitemgr_msg .= "Phone: ".$contact->getString("phone")."
"; $sitemgr_msg .= "E-mail: ".$contact->getString("email")."
"; $sitemgr_msg .= "
getNumber("id")."\" target=\"_blank\">".DEFAULT_URL."/sitemgr/account/view.php?id=".$account->getNumber("id")."

"; $sitemgr_msg .= ucwords(LISTING_FEATURE_NAME).":

"; $sitemgr_msg .= "Title: ".$listing->getString("title")."
"; $sitemgr_msg .= "
getNumber("id")."\" target=\"_blank\">".DEFAULT_URL."/sitemgr/listing/view.php?id=".$listing->getNumber("id")."

"; if ($sitemgr_send_email == "on") { if ($sitemgr_emails[0]) { foreach ($sitemgr_emails as $sitemgr_email) { system_mail($sitemgr_email, "[".EDIRECTORY_TITLE."] Signup Notification", $sitemgr_msg, EDIRECTORY_TITLE." <$sitemgr_email>", "text/html"); } } } if ($sitemgr_account_emails[0]) { foreach ($sitemgr_account_emails as $sitemgr_account_email) { system_mail($sitemgr_account_email, "[".EDIRECTORY_TITLE."] Signup Notification", $sitemgr_msg, EDIRECTORY_TITLE." <$sitemgr_account_email>", "text/html"); } } if ($sitemgr_listing_emails[0]) { foreach ($sitemgr_listing_emails as $sitemgr_listing_email) { system_mail($sitemgr_listing_email, "[".EDIRECTORY_TITLE."] Signup Notification", $sitemgr_msg, EDIRECTORY_TITLE." <".$sitemgr_listing_email.">", "text/html"); } } //////////////////////////////////////////////////////////////////////////////////////////////////// if ($checkout) $payment_method = "checkout"; sess_registerAccountInSession($account->getString("username")); setcookie("username", $account->getString("username"), time()+60*60*24*30, "".EDIRECTORY_FOLDER."/members"); if ($payment_method == "checkout") { header("Location: ".DEFAULT_URL."/members/listing/listing.php?id=".$listing->getNumber("id")."&process=signup"); } elseif ($payment_method == "invoice") { header("Location: ".DEFAULT_URL."/members/signup/invoice.php"); } else { header("Location: ".DEFAULT_URL."/members/signup/payment.php?payment_method=".$payment_method); } exit; } else { // removing slashes added if required $_POST = format_magicQuotes($_POST); $_GET = format_magicQuotes($_GET); extract($_POST); extract($_GET); } } # ---------------------------------------------------------------------------------------------------- # CODE # ---------------------------------------------------------------------------------------------------- if ($return_categories){ $return_categories_array = explode(",", $return_categories); if ($return_categories_array){ foreach ($return_categories_array as $each_category){ $categories[] = new ListingCategory($each_category); } } } $feedDropDown = ""; $listingLevelObj = new ListingLevel(); $levelValue = $listingLevelObj->getValues(); $formloginaction = DEFAULT_URL."/members/login.php?destiny=".DEFAULT_URL."/members/listing/listinglevel.php"; # ---------------------------------------------------------------------------------------------------- # HEADER # ---------------------------------------------------------------------------------------------------- $extrastyle = array(DEFAULT_URL."/layout/general_order.css"); include(EDIRECTORY_ROOT."/layout/header.php"); $template_title_field = false; ?>