X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fregister_functions.php;h=efc9e4b2efd22617d60547a6505b5b68abe0accb;hb=6bc05b8460aa514a136a9b2d924545b6cfa84cad;hp=317bcea87b07775ef6a9d9f27ceb42f1395186ae;hpb=8a9324b2d931f54f54f4319fd7234910af77012c;p=mailer.git diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index 317bcea87b..efc9e4b2ef 100644 --- a/inc/libs/register_functions.php +++ b/inc/libs/register_functions.php @@ -1,7 +1,7 @@  (*)"; - $eval = "define('MUST_".strtoupper($name)."', \"".$value."\");"; - eval($eval); - } - - // Free memory - SQL_FREERESULT($result); - - // Also fill other constants - define('MUST_SEX' , " (*)"); - define('MUST_ADDY' , " (*)"); - define('MUST_BIRTH' , " (*)"); - define('MUST_MARKER', " (*)"); -} -// -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) - { - // "Must-line" found - list($chk) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - +function ifRequiredRegisterFieldsAreSet (&$array) { + // By default all is fine + $ret = true; + foreach ($array as $key => $value) { + // Check all fields that must register + $result = SQL_QUERY("SELECT `id` FROM `{?_MYSQL_PREFIX?}_must_register` WHERE `field_name`='".$key."' AND `field_required`='Y' LIMIT 1", + __FUNCTION__, __LINE__); + if (SQL_NUMROWS($result) == 1) { // 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)) - { + $country = ((!isExtensionActive('country')) || ((isExtensionActive('country')) && (((empty($value)) && ($key == 'cntry')) || (($key == 'country_code') && (!empty($value)))) && (!empty($array['country_code'])))); + if ((empty($value)) && ($country === false)) { // Required field not set - $array[$key] = "!"; - $ret = true; - } - } - } + $array[$key] = '!'; + $ret = false; + } // END - if + } // END - if + + // Free result + SQL_FREERESULT($result); + } // END - foreach + + // Return 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')) - { - // Empty entry found - $array[$name] = ""; - $eval = "\$OUT = REGISTER_".strtoupper($name)."_REQUIRED;"; - eval($eval); - OUTPUT_HTML("".$OUT."

"); - } - } - // Free memory - SQL_FREERESULT($result); -} -// -function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) -{ - global $_POST, $CONFIG; - $OUT = ""; +// Generates a 'category table' for the registration form +function registerGenerateCategoryTable ($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) - { + if (isAdmin()) $AND = ''; + + // Look for categories + $result = SQL_QUERY("SELECT `id`, `cat`, `visible` FROM `{?_MYSQL_PREFIX?}_cats` ".$AND." ORDER BY `sort` ASC", + __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)) { // Prepare array for the template $content = array( 'sw' => $SW, - 'cat' => $cat, - 'def_y' => "", - 'def_n' => "", - 'id' => $id, + 'cat' => $content['cat'], + 'def_y' => '', + 'def_n' => '', + '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"; + // Mark categories + if ((postRequestElement('cat', $content['id']) == 'Y') || ((getConfig('register_default') == 'Y') && (!isPostRequestElementSet('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); + $OUT .= loadTemplate('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 .= loadTemplate('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); + outputHtml($OUT); + } +} + +// Outputs a 'failed message' +function registerOutputFailedMessage ($messageId, $extra='') { + if (empty($messageId)) { + outputHtml('
' . $extra . '
'); + } else { + outputHtml('
{--' . $messageId . '--}' . $extra . '
'); } } + +// Run a filter for must-fillout fields +function FILTER_REGISTER_MUST_FILLOUT ($content) { + // Get all fields for output + $result = SQL_QUERY("SELECT `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC", + __FUNCTION__, __LINE__); + + // Walk through all entries + while ($row = SQL_FETCHARRAY($result)) { + // Must the user fill out this element? + $value = ''; + if ($row['field_required'] == 'Y') $value = " (*)"; + + // Add it + $content['must_fillout_'.strtolower($row['field_name']).''] = $value; + } // END - while + + // Free memory + SQL_FREERESULT($result); + + // Return it + return $content; +} + // ?>