X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fregister_functions.php;h=aa0ea1baf50f15528a477b178c3964e9b959cfb1;hp=3c4d42e6f8c03bf32c3afb42a4ae71500f664211;hb=ee0625c4882bb462985c504abf65a3ef0e7bf1eb;hpb=5ef6ed7373ae85e5635e39e2a0adf9496a8add05 diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index 3c4d42e6f8..aa0ea1baf5 100644 --- a/inc/libs/register_functions.php +++ b/inc/libs/register_functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Spezielle Funktion fuer register-Erweiterung * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -32,139 +37,136 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } // -function REGISTER_FILL_MUST_CONSTANTS() -{ - $result = SQL_QUERY("SELECT field_name, field_required FROM "._MYSQL_PREFIX."_must_register ORDER BY id", __FILE__, __LINE__); - while(list($name, $required) = SQL_FETCHROW($result)) - { +function REGISTER_FILL_MUST_CONSTANTS () { + $result = SQL_QUERY("SELECT field_name, field_required FROM `{!_MYSQL_PREFIX!}_must_register` ORDER BY `id`", + __FUNCTION__, __LINE__); + + while ($content = SQL_FETCHARRAY($result)) { $value = ""; - if ($required == 'Y') $value = " (*)"; - $eval = "define('MUST_".strtoupper($name)."', \"".$value."\");"; + if ($content['field_required'] == "Y") $value = "
 (*)
"; + // @TODO Rewrite these constants + $eval = "define('MUST_".strtoupper($content['field_name'])."', \"".$value."\");"; eval($eval); - } + } // END - while // Free memory SQL_FREERESULT($result); // Also fill other constants - define('MUST_SEX' , " (*)"); - define('MUST_ADDY' , " (*)"); - define('MUST_BIRTH' , " (*)"); - define('MUST_MARKER', " (*)"); + define('MUST_GENDER', "
 (*)
"); + define('MUST_ADDY' , "
 (*)
"); + define('MUST_BIRTH' , "
 (*)
"); + define('MUST_MARKER', "
 (*)
"); } + // -function REGISTER_CHECK_REQUIRED_FIELDS(&$array) -{ +function REGISTER_CHECK_REQUIRED_FIELDS (&$array) { $ret = false; - foreach ($array as $key=>$value) - { - $result = SQL_QUERY("SELECT field_required FROM "._MYSQL_PREFIX."_must_register WHERE field_name='".$key."' LIMIT 1", __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + foreach ($array as $key => $value) { + $result = SQL_QUERY("SELECT field_required FROM `{!_MYSQL_PREFIX!}_must_register` WHERE field_name='".$key."' LIMIT 1", + __FUNCTION__, __LINE__); + if (SQL_NUMROWS($result) == 1) { // "Must-line" found list($chk) = SQL_FETCHROW($result); - SQL_FREERESULT($result); // Check if extension country is not found (you have to enter the 2-chars long country code) or // if extensions is present check if country code was selected // 01 2 21 12 3 32 234 5 54 4 43 34 4 4 5 5432 2 3 3210 $country = ((!EXT_IS_ACTIVE("country")) || ((EXT_IS_ACTIVE("country")) && (((empty($value)) && ($key == "cntry")) || (($key == "country_code") && (!empty($value)))) && (!empty($array['country_code'])))); - if ((empty($value)) && ($chk == 'Y') && (!$country)) + if ((empty($value)) && ($chk == "Y") && (!$country)) { // Required field not set $array[$key] = "!"; $ret = true; } } + + // Free result + SQL_FREERESULT($result); } return $ret; } + // -function REGISTER_OUTPUT_REQUIRE_CHECK(&$array) -{ - $result = SQL_QUERY("SELECT field_name, field_required FROM "._MYSQL_PREFIX."_must_register ORDER BY id", __FILE__, __LINE__); - while(list($name, $required) = SQL_FETCHROW($result)) - { - if (($array[$name] == "!") && ($required == 'Y')) - { +function REGISTER_OUTPUT_REQUIRE_CHECK (&$array) { + $result = SQL_QUERY("SELECT field_name, field_required FROM `{!_MYSQL_PREFIX!}_must_register` ORDER BY `id`", __FUNCTION__, __LINE__); + while ($content = SQL_FETCHARRAY($result)) { + if (($array[$content['field_name']] == "!") && ($content['field_required'] == "Y")) { // Empty entry found - $array[$name] = ""; - $eval = "\$OUT = REGISTER_".strtoupper($name)."_REQUIRED;"; - eval($eval); - OUTPUT_HTML("".$OUT."

"); - } - } + $array[$content['field_name']] = ""; + $OUT = constant('REGISTER_'.strtoupper($content['field_name']).'_REQUIRED'); + OUTPUT_HTML("
".$OUT."
"); + } // END - if + } // END - while // Free memory SQL_FREERESULT($result); } + // -function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) -{ - global $_POST, $CONFIG; +function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) { $OUT = ""; // Guests are mostly not interested in how many members has // choosen an individual category - $AND = "WHERE visible='Y' "; + $AND = "WHERE `visible`='Y' "; + // Admins are allowed to see every category... if (IS_ADMIN()) $AND = ""; - $result = SQL_QUERY("SELECT id, cat, visible FROM "._MYSQL_PREFIX."_cats ".$AND." ORDER BY sort", __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) - { + + // Look for categories + $result = SQL_QUERY("SELECT id, cat, visible FROM `{!_MYSQL_PREFIX!}_cats` ".$AND." ORDER BY `sort`", + __FUNCTION__, __LINE__); + + if (SQL_NUMROWS($result) > 0) { // List alle visible modules (or all to the admin) $SW = 2; - $OUT .= "\n"; - while (list($id, $cat, $visible) = SQL_FETCHROW($result)) - { - if (empty($_POST['cat'][$id])) $_POST['cat'][$id] = ""; + $OUT .= "
\n"; + while ($content = SQL_FETCHARRAY($result)) { + // Is the array element not set? + if (!REQUEST_ISSET_POST('cat', $content['id'])) { + // Then set it + REQUEST_SET_POST(array('cat', $content['id']), ""); + } // END - if + // Prepare array for the template $content = array( 'sw' => $SW, - 'cat' => $cat, + 'cat' => $content['cat'], 'def_y' => "", 'def_n' => "", - 'id' => $id, + 'id' => $content['id'], ); - if (($_POST['cat'][$id] == 'Y') || (($CONFIG['register_default'] == 'Y') && (empty($_POST['cat'][$id])))) - { - $content['def_y'] = " checked"; - } - else - { - $content['def_n'] = " checked"; + if ((REQUEST_POST('cat', $content['id']) == "Y") || ((getConfig('register_default') == "Y") && (!REQUEST_ISSET_POST('cat', $content['id'])))) { + $content['def_y'] = " checked=\"checked\""; + } else { + $content['def_n'] = " checked=\"checked\""; } // Load template and switch color $OUT .= LOAD_TEMPLATE("guest_cat_row", true, $content); $SW = 3 - $SW; } - $OUT .= "
\n"; + $OUT .= "\n"; // Free memory SQL_FREERESULT($result); - } - else - { + } else { // No categories setted up so far... - $OUT .= LOAD_TEMPLATE("admin_settings_saved", true, NO_CATEGORIES_VISIBLE); + $OUT .= LOAD_TEMPLATE("admin_settings_saved", true, getMessage('NO_CATEGORIES_VISIBLE')); } - if ($return) - { + if ($return === true) { // Return generated HTML code return $OUT; - } - else - { + } else { // Output directly (default) OUTPUT_HTML($OUT); }