vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Project Tools (https://vborg.vbsupport.ru/forumdisplay.php?f=266)
-   -   Post reported post as issue (https://vborg.vbsupport.ru/showthread.php?t=268221)

Carnage 08-09-2011 05:55 AM

Post reported post as issue
 
A little something I've been working on since 4.1.5 was release; not good enough for a full mod yet, but it might be of use as a base for others.

Place in hook report_do_report (new 4.1.5)

PHP Code:

require_once(DIR '/includes/functions_projecttools.php'); 
require_once(
DIR '/includes/functions_pt_posting.php'); 
$vbulletin $this->registry
$issuedata =& datamanager_init('Pt_Issue'$vbulletinERRTYPE_ARRAY); 
eval(
fetch_email_phrases('report' $this->phrasekey '_newthread'0)); 
$issuedata->set('title'$subject); 
$issuedata->set('summary'''); 
$issuedata->set('issuestatusid'20); 
$issuedata->set('priority'5); 
$issuedata->set('projectcategoryid'0); 
$issuedata->set('appliesversionid'0); 
$issuedata->set('projectid'4); //set to the project you want it to go into.
$issuedata->set('issuetypeid''reportedpost'); //change to the issue type you want
$issuedata->set('submituserid'$vbulletin->userinfo['userid']); 
$issuedata->set('submitusername'$vbulletin->userinfo['username']); 
$issuedata->set('visible''visible'); 
$issuedata->set('lastpost'TIMENOW);     

$issuenote =& datamanager_init('Pt_IssueNote_User'$vbulletinERRTYPE_ARRAY'pt_issuenote'); 
$issuenote->set_info('parseurl'$vbulletin->options['pt_allowbbcode']); 

$issuenote->set('userid'$vbulletin->userinfo['userid']); 
$issuenote->set('username'$vbulletin->userinfo['username']); 
$issuenote->set('visible''visible'); 
$issuenote->set('isfirstnote'1); 
$issuenote->set('pagetext'$message); 
$issuedata->pre_save(); 
if (!
$issuedata->errors

    
$issuenote->pre_save(); 


$issue['issueid'] = $issuedata->save(); 
$issuenote->set('issueid'$issue['issueid']); 
$issue['issuenoteid'] = $issuenote->save(); 


PitchouneN64ngc 08-09-2011 10:39 PM

Could be part later of http://tracker.vbulletin.com/browse/VBIV-10779 :)

Carnage 08-10-2011 05:38 AM

I think you've got the wrong idea. The idea is to create a project tools issue everytime a post is reported. Thus you can use the project tools work flow for managing reported posts.

TheLastSuperman 08-10-2011 05:37 PM

Quote:

Originally Posted by Carnage (Post 2231698)
I think you've got the wrong idea. The idea is to create a project tools issue everytime a post is reported. Thus you can use the project tools work flow for managing reported posts.

Awesome Carnage, and I have not seen you on lately... heck you might of been and I simply didn't notice however your one of my favorites on here, glad to see you posting and quite a useful post at that ;).

Carnage 08-13-2011 09:19 AM

I've not been around much recently, a full time job leaves much less time for working on things than being a student :p

I'm trying to make project tools a useful mod for many other than its original uses. Another thing I want to try and do is make some modifications to make it useful for moderator votes/applications. I think PT still has some way to go as well in this respect.


All times are GMT. The time now is 03:57 PM.

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.00971 seconds
  • Memory Usage 1,741KB
  • 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
  • (1)bbcode_php_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