vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB5 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=263)
-   -   Problem with extension bbcode (https://vborg.vbsupport.ru/showthread.php?t=300472)

Marcin Kalak 07-26-2013 12:27 PM

Problem with extension bbcode
 
I'm trying to add a custom bbcodes for vBulletin. I created a file core/packages/vbenterprisetranslator/api/bbcode.php of content:
Code:

<?php
class vbenterprisetranslator_Api_Bbcode extends vB_Api_Extensions
{
  public $product = 'vbenterprisetranslator';
  public $version = '5.0.0';
  public $developer = 'vBET';
  public $title = 'vB Enterprise Translator';
  public $minver = '5.0.0';
  public $maxver = '6.0.0';
  public $infourl = '';
  public $checkurl = '';
  public $AutoInstall = 1;
  public $extensionOrder = 5;
 
  public function fetchTagList($tag_list, $prepend_path = '', $force_all = false)
  {
          print_log("fetchTagList");
          //body
        return $tag_list;
  }
}

function print_log($string) {
        global $request_last;
        $request_now =        microtime(true) * 1000;               
        $file = fopen(DIR . "/devlog.log", "a");
        //vbulletin->userinfo['username'] . " " .
        $diff = (int)($request_now - $request_last);
        fwrite($file, $diff . ' '. date("d.m.Y H:i:s") . " " . $string  . " " . $_SERVER['REQUEST_URI'] . "\n");
        fclose($file);                               
        $request_last = $request_now;
}
?>

However, my function fetchTagList does not start.


All times are GMT. The time now is 02:18 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.00975 seconds
  • Memory Usage 1,708KB
  • 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_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)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