vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Phrase Type Manager (https://vborg.vbsupport.ru/showthread.php?t=98316)

akanevsky 12-02-2005 03:53 PM

Does the product manager export the phrase types?

Andreas 12-02-2005 04:16 PM

Sure.

akanevsky 12-02-2005 04:23 PM

Uhh... But your hack doesn't seem to be adding anything into the product manager. So if custom phrases are not a default functionality, why would the product manager be exporting them?

Andreas 12-02-2005 04:29 PM

They are a default functionality, there is just no nice GUI for it - which this Hack does add.
=> adminfunctions_language.php, add_phrase_type()

akanevsky 12-02-2005 04:35 PM

So will this hack be present in the next vbulletin release? :)

Hoffi 08-08-2006 01:37 PM

It is not in 3.6, and I think this will not work in 3.6 because the structure of the Table is changed.

See who ist first to build a 3.6 Version. Andreas or myself. ;)

Ahriman 08-28-2006 08:55 AM

Anything new here? ;)

sabret00the 03-25-2007 01:23 PM

To get this to work in 3.6.x find:
PHP Code:

if ($_REQUEST['do']  == 'listgroups')
{
    
print_form_header('phrasetype''add');
    
print_table_header($vbphrase['custom_phrase_types']); 

and replace with:
PHP Code:

if ($_REQUEST['do']  == 'listgroups')
{
    
print_form_header('phrasetype''add');
    
print_table_header($vbphrase['custom_phrase_types']);

    
$defaultphrasetypes = array('accessmask''attachment_image''banning''bbcode''calendar''cpglobal''cphelptext''cphome''cpoption''cppermission''cprank''cprofilefield''cpstopmsg''cpuser''cpusergroup''cron''diagnostic''emailbody''emailsubject''error''faqtext''faqtitle''forum''forumdisplay''fronthelp''frontredirect''global''help_faq''holiday''infraction''infractionlevel''inlinemod''language''logging''maintenance''messaging''moderator''plugins''pm''poll''postbit''posting''profilefield''promotion''register''reputation''reputationlevel''search''showthread''sql''stats''style''subscription''thread''threadmanage''timezone''user''vbsettings''wol');

    
$phrasetypes fetch_phrasetypes_array();
    foreach(
$phrasetypes AS $id => $type)
    {
        
$cell = array();
        
//if ($id > 56 AND $id < 1000)
        
if (!in_array($id$defaultphrasetypes)) 
        { 


sabret00the 03-25-2007 01:30 PM

find:
PHP Code:

if ($_REQUEST['do'] == 'edit'
{
    
$vbulletin->input->clean_gpc('r''phrasetypeid'TYPE_INT);
    
$phrasetype $db->query_first("SELECT * FROM " TABLE_PREFIX "phrasetype WHERE phrasetypeid = " $vbulletin->GPC['phrasetypeid']);
    
print_form_header('phrasetype''update');
    
construct_hidden_code('phrasetypeid'$phrasetype['phrasetypeid']);
    
print_table_header($vbphrase['edit_phrase_type']);
    
print_label_row($vbphrase['varname'], $phrasetype['fieldname']);
    
print_input_row($vbphrase['phrase_type'], 'groupname'$phrasetype['title']);
    
$products fetch_product_list();
    
print_label_row($vbphrase['product'], $products["$phrasetype[product]"]);
    
print_submit_row($vbphrase['save']);


replace:
PHP Code:

if ($_REQUEST['do'] == 'edit'
{
    
$vbulletin->input->clean_gpc('r''phrasetypeid'TYPE_STR);
    
$phrasetype $db->query_first("SELECT * FROM " TABLE_PREFIX "phrasetype WHERE fieldname = '" $db->escape_string($vbulletin->GPC['phrasetypeid']) . "'");
    
print_form_header('phrasetype''update');
    
construct_hidden_code('phrasetypeid'$phrasetype['phrasetypeid']);
    
print_table_header($vbphrase['edit_phrase_type']);
    
print_label_row($vbphrase['varname'], $phrasetype['fieldname']);
    
print_input_row($vbphrase['phrase_type'], 'groupname'$phrasetype['title']);
    
$products fetch_product_list();
    
print_label_row($vbphrase['product'], $products["$phrasetype[product]"]);
    
print_submit_row($vbphrase['save']);



TheRed 04-19-2007 09:09 PM

Thanks Andreas, sabret00the.

Correct implementation would be:

PHP Code:

if ($_REQUEST['do']  == 'listgroups')
{
    
print_form_header('phrasetype''add');
    
print_table_header($vbphrase['custom_phrase_types']);

    
$defaultphrasetypes = array('accessmask''attachment_image''banning''bbcode''calendar''cpglobal''cphelptext''cphome''cpoption''cppermission''cprank''cprofilefield''cpstopmsg''cpuser''cpusergroup''cron''diagnostic''emailbody''emailsubject''error''faqtext''faqtitle''forum''forumdisplay''fronthelp''frontredirect''global''help_faq''holiday''infraction''infractionlevel''inlinemod''language''logging''maintenance''messaging''moderator''plugins''pm''poll''postbit''posting''profilefield''promotion''register''reputation''reputationlevel''search''showthread''sql''stats''style''subscription''thread''threadmanage''timezone''user''vbsettings''wol');

    
$phrasetypes fetch_phrasetypes_array();
    foreach(
$phrasetypes AS $id => $type)
    {
        
$cell = array();
        
//if ($id > 56 AND $id < 1000)
        
if (!in_array($id$defaultphrasetypes)) 
        {
            
$cell[] = $type['title'];
            
$cell[] = construct_link_code($vbphrase['edit'], 'phrasetype.php?' $vbulletin->session->vars['sessionurl'] . "do=edit&amp;phrasetypeid=$id")." ".construct_link_code($vbphrase['delete'], 'phrasetype.php?' $vbulletin->session->vars['sessionurl'] . "do=delete&amp;phrasetypeid=$id");
        }
        
print_cells_row($cell);
    }
    
print_submit_row($vbphrase['add_new_phrase_type']);
    
print_table_footer();




All times are GMT. The time now is 02:49 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.01208 seconds
  • Memory Usage 1,792KB
  • 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
  • (5)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete