vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   problem using db class in a hook (https://vborg.vbsupport.ru/showthread.php?t=132315)

sp00fer 11-23-2006 08:55 PM

problem using db class in a hook
 
i have this in the postbit_display_complete hook:

PHP Code:

$result=$vbulletin->db->query_read("Select * from user"

and i get this error:
Quote:

Call to a member function on a non-object in /home/genesisk/public_html/forums/includes/class_postbit.php(279) : eval()'d code on line 1
any help?

Guest190829 11-23-2006 09:00 PM

Quote:

Originally Posted by sp00fer (Post 1123921)
i have this in the postbit_display_complete hook:

PHP Code:

$result=$vbulletin->db->query_read("Select * from user"

and i get this error:


any help?

Since it is in the class you will probably have to do it this way:

PHP Code:

$this->registry->db 

instead of

PHP Code:

$vbulletin->db 


sp00fer 11-24-2006 02:43 PM

thanks, that worked.....could u explain why though?

Guest190829 11-24-2006 02:50 PM

Quote:

Originally Posted by sp00fer (Post 1124272)
thanks, that worked.....could u explain why though?

This deals with the foundations of Object Oriented Programming.

Since postbit_display_complete exists in a class, the $vbulletin object must be aggregated to that class.

vBulletin programming standards aggregates the vBulletin object to $registry.

PHP Code:

$this->registry &= $vbulletin

All class attributes can be accessed within the class with
PHP Code:

$this 

(Outside the class $this will be changed to the actual object name: ie: $vbulletin)

So you access the $vbulletin object inside the class as:

PHP Code:

$this->registry 

.

More information:

http://us2.php.net/oop


All times are GMT. The time now is 07:29 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.01195 seconds
  • Memory Usage 1,727KB
  • 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
  • (7)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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