vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How to create custom PM button? (https://vborg.vbsupport.ru/showthread.php?t=263257)

salusoft 05-06-2011 05:37 PM

How to create custom PM button?
 
First please excuse my very bad english :(

And now my problem.
I want to add to user profile page PM button/link, if I click to this button, user received from me pre-configured private message.

Can this possible?

kh99 05-06-2011 08:08 PM

You could do something like this:

Code:

<form action="private.php?do=insertpm" method="post" name="vbform">
  <input type="hidden" name="recipients" value="$userinfo[username]" />
  <input type="hidden" name="title" value="Preset Message Title" />
  <input type="hidden" name="savecopy" value="1" />
  <input type="hidden" name="message" value="This is a preset message I'm sending." />
  <input type="hidden" name="s" value="$session[sessionhash]" />
  <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
  <input type="hidden" name="do" value="insertpm" />
  <input type="submit" value="Send"/>
</form>


And put it in the MEMBERINFO template where you want the button. But it will bring you to your private messages page when you press it.

salusoft 05-07-2011 08:30 AM

Thank you, this script works very fine!
Only thing - the sent message not saved to my "Sent Items" folder.

kh99 05-07-2011 12:55 PM

Add

<input type="hidden" name="savecopy" value="1" />

to the form to save a copy to your "Sent Items" folder.

salusoft 05-07-2011 05:18 PM

Thanks, it works.

Quote:

Originally Posted by kh99 (Post 2192777)
...But it will bring you to your private messages page when you press it.

Little mod help (in my case).

Template:
Code:

<form action="private.php?do=insertpm&goto=apply_sub" method="post" name="vbform">

private.php:
Code:

$vbulletin->url = 'private.php' . $vbulletin->session->vars['sessionurl_q'];
                if($_REQUEST['goto'] == 'apply_sub'){
                        header('Location: /adm/index.php');
                        exit;
                }else{

                        eval(print_standard_redirect('pm_messagesent'));
                }
        }
}



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

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00953 seconds
  • Memory Usage 1,724KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete