Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-10-2010, 09:45 PM
SorentoUltimate's Avatar
SorentoUltimate SorentoUltimate is offline
 
Join Date: Jul 2009
Location: Moschato, Athens, Greece
Posts: 338
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default New Profile Option Problem

Hello,

I try to add a CoboBox Custom Option to User Profile Option but i have two problems :

a.When i go to Edit Option don't bring the Right Value to the New Setting.
b.When i press Save Options always save a
0 to New Option.

Here all the codes i use to do that :

Field Creation
(Table user, fieldname whoquotedmenotify)
PHP Code:
$db->hide_errors();
require_once(
DIR '/includes/class_dbalter.php');
$db_alter =& new vB_Database_Alter_MySQL($db);

$mysqlversion $db->query_first("SELECT version() AS version");
define('MYSQL_VERSION'$mysqlversion['version']);

$enginetype = (version_compare(MYSQL_VERSION'4.0.18''<')) ? 'TYPE' 'ENGINE';
$tabletype = (version_compare(MYSQL_VERSION'4.1''<')) ? 'HEAP' 'MEMORY';

if (
$db_alter->fetch_table_info('user'))
{
    
$db_alter->add_field(array(
        
'name' => 'whoquotedmenotify',
        
'type' => 'int',
        
'length' => '10',
        
'attributes' => 'unsigned',
        
'null' => false
        
'default' => '0',    
    ));
}

$db->show_errors(); 
__

New Template who_quoted_me_profile_modify
PHP Code:
<fieldset class="fieldset">
  <
legend><label for="sel_whoquotedmenotify">$vbphrase[who_quoted_me_notify_title]</label></legend>
  <
table cellpadding="0" cellspacing="$stylevar[formspacer]border="0" width="100%">
    <
tr>
      <
td>$vbphrase[who_quoted_me_notify_desc]</td>
    </
tr>
    <
tr>
      <
td>
        <
span style="float:$stylevar[right]">
          <
select name="whoquotedmenotify" id="sel_whoquotedmenotify">
            <
option value="0" $whoquotedmenotifysel[0]>$vbphrase[who_quoted_me_not_notification]</option>
            <
option value="1" $whoquotedmenotifysel[1]>$vbphrase[who_quoted_me_email_notification]</option>
            <
option value="2" $whoquotedmenotifysel[2]>$vbphrase[who_quoted_me_pm_notification]</option>
          </
select>
        </
span>
        <
label for="sel_whoquotedmenotify">$vbphrase[who_quoted_me_notify_title]:</label>
      </
td>
    </
tr>
  </
table>
</
fieldset
__

Plugin cache_templates
PHP Code:
$globaltemplates[] = 'who_quoted_me_profile_modify'
__

Plugin profile_editoptions_start
PHP Code:
$whoquotedmenotifysel = array();

$whoquotedmenotifysel[0] = '';
$whoquotedmenotifysel[1] = '';
$whoquotedmenotifysel[2] = '';

$whoquotedmenotifyuserselection $vbulletin->userinfo['whoquotedmenotify'];

$whoquotedmenotifysel[$whoquotedmenotifyuserselection] = 'selected="selected"';

eval(
'$template_hook[\'usercp_options_messaging\'] .= "' fetch_template('who_quoted_me_profile_modify') . '";'); 
__

Plugin profile_updateoptions

PHP Code:
$vbulletin->input->clean_array_gpc('p', array(
    
'whoquotedmenotify' => TYPE_UINT,
));

$userdata->set('whoquotedmenotify'$vbulletin->GPC['whoquotedmenotify']); 
__

Plugin userdata_start
PHP Code:
$this->validfields['whoquotedmenotify']  = array(TYPE_UINTREQ_NO); 
__

Options Screenshot



Can some help to find where the problem are ???

Thanks In Advance
SorentoUltimate
Attached Images
File Type: jpg whoquotedmenotify_option.JPG (12.3 KB, 0 views)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:06 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04157 seconds
  • Memory Usage 2,268KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_attachment
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)showthread_list
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_threadedmode.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids_threaded
  • showthread_threaded_construct_link
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete