show_choose_audience = true; $this->title = $title; $this->content = $content; } function choose_audience() { global $HTTP_GET_VARS, $languages_id; $products_array = array(); $products_query = tep_db_query("select pd.products_id, pd.products_name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where pd.language_id = '" . $languages_id . "' and pd.products_id = p.products_id and p.products_status = '1' order by pd.products_name"); while ($products = tep_db_fetch_array($products_query)) { $products_array[] = array('id' => $products['products_id'], 'text' => $products['products_name']); } $choose_audience_string = ''; $global_button = ''; $cancel_button = ''; $choose_audience_string .= '
'; return $choose_audience_string; } function confirm() { global $HTTP_GET_VARS, $HTTP_POST_VARS; $audience = array(); if (isset($HTTP_GET_VARS['global']) && ($HTTP_GET_VARS['global'] == 'true')) { $products_query = tep_db_query("select distinct customers_id from " . TABLE_PRODUCTS_NOTIFICATIONS); while ($products = tep_db_fetch_array($products_query)) { $audience[$products['customers_id']] = '1'; } $customers_query = tep_db_query("select customers_info_id from " . TABLE_CUSTOMERS_INFO . " where global_product_notifications = '1'"); while ($customers = tep_db_fetch_array($customers_query)) { $audience[$customers['customers_info_id']] = '1'; } } else { $chosen = $HTTP_POST_VARS['chosen']; $ids = implode(',', $chosen); $products_query = tep_db_query("select distinct customers_id from " . TABLE_PRODUCTS_NOTIFICATIONS . " where products_id in (" . $ids . ")"); while ($products = tep_db_fetch_array($products_query)) { $audience[$products['customers_id']] = '1'; } $customers_query = tep_db_query("select customers_info_id from " . TABLE_CUSTOMERS_INFO . " where global_product_notifications = '1'"); while ($customers = tep_db_fetch_array($customers_query)) { $audience[$customers['customers_info_id']] = '1'; } } $confirm_string = '' . sprintf(TEXT_COUNT_CUSTOMERS, sizeof($audience)) . ' | ' . "\n" . '
' . tep_draw_separator('pixel_trans.gif', '1', '10') . ' | ' . "\n" . '
' . $this->title . ' | ' . "\n" . '
' . tep_draw_separator('pixel_trans.gif', '1', '10') . ' | ' . "\n" . '
' . nl2br($this->content) . ' | ' . "\n" . '
' . tep_draw_separator('pixel_trans.gif', '1', '10') . ' | ' . "\n" . '
'; if (sizeof($audience) > 0) { if (isset($HTTP_GET_VARS['global']) && ($HTTP_GET_VARS['global'] == 'true')) { $confirm_string .= tep_draw_hidden_field('global', 'true'); } else { for ($i = 0, $n = sizeof($chosen); $i < $n; $i++) { $confirm_string .= tep_draw_hidden_field('chosen[]', $chosen[$i]); } } $confirm_string .= tep_image_submit('button_send.gif', IMAGE_SEND) . ' '; } $confirm_string .= '' . tep_image_button('button_back.gif', IMAGE_BACK) . ' ' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . ' | ' . "\n" . '