vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Community Lounge (https://vborg.vbsupport.ru/forumdisplay.php?f=13)
-   -   OOP + vBulletin (https://vborg.vbsupport.ru/showthread.php?t=72477)

Brad 12-04-2004 03:26 AM

OOP + vBulletin
 
Check out the chat log:

http://www.vbulletin.nl/community/showthread.php?t=8024

I wonder just how much of the backend will change :). The move to more OOP in the code will be a good one imho. :speechless:

AN-net 12-04-2004 03:45 AM

so basically more like $DB_site->xxx will be occuring, cause im not really sure what OOP is but im asuming $DB_site is OOP. can someone explain what OOP is>_<

edit: if they are going to use more OOP i believe vBulletin should announce it officially and write up some docs for developers so they can accordingly update their hacks so when the new version is released using more OOPs the vBulletin Hack community will be compatiable thus encouraging users to upgrade;)

filburt1 12-04-2004 04:19 AM

Quote:

Originally Posted by AN-net
so basically more like $DB_site->xxx will be occuring, cause im not really sure what OOP is but im asuming $DB_site is OOP. can someone explain what OOP is>_<

edit: if they are going to use more OOP i believe vBulletin should announce it officially and write up some docs for developers so they can accordingly update their hacks so when the new version is released using more OOPs the vBulletin Hack community will be compatiable thus encouraging users to upgrade;)

Object Oriented Programming. I suggest learning Java if you want to learn OOP. PHP doesn't lend itself to OO that well.

Jelsoft never has written documentation for developers and I don't expect it to change...but I would love it if they did.

Colin F 12-04-2004 05:59 AM

Quote:

Originally Posted by filburt1
Object Oriented Programming. I suggest learning Java if you want to learn OOP. PHP doesn't lend itself to OO that well.

Jelsoft never has written documentation for developers and I don't expect it to change...but I would love it if they did.

That's not exactly true.

There are a few documents in the vBulletin manual about coding standards for example...

Dean C 12-04-2004 09:17 AM

Quote:

Originally Posted by Colin F
That's not exactly true.

There are a few documents in the vBulletin manual about coding standards for example...

AN-Net, the design pattern for the mysql class doesn't lend itself to OOP. It's not really OOP as such, more like a bundled selection of functions.

AN-net 12-04-2004 10:54 AM

Quote:

Originally Posted by Dean C
AN-Net, the design pattern for the mysql class doesn't lend itself to OOP. It's not really OOP as such, more like a bundled selection of functions.

oh cause it kind of resembles OOP in a way....

Dean C 12-04-2004 11:10 AM

Well it is OOP, just the way it's used is not what OOP was designed to do :)

twoseven 12-04-2004 03:17 PM

in the discussion of the thread kier recommended some webpages to read and a book as well http://www.vbulletin.nl/community/sh...ad.php?p=80121 just if you didnt see it

sabret00the 12-05-2004 07:27 AM

in laymen terms what are OOP's and despite not lending themselves well to PHP what would be a few examples?

Dean C 12-05-2004 10:18 AM

Quote:

A method of computer programming where items of related data together with routines associated with it are treated as a single 'object' or item in program. For example, to implement an onscreen dialog box requires graphic images for the box and its two buttons, details of how they are to be arranged, and facility to detect which button has been pressed. All of these would combine into a self-sufficient object which would take as input, the name of the dialog, perhaps some text to be displayed and the names of the buttons, and return as output a code indicating which button had been pressed. The advantage of OOP is that manipulation of the defined object can be made easier for the programmer. Languages such as C++ provide special features to assist OOP. ( top )
Undoubtedly the best way to learn OOP is to get a book and practice it. An example:

PHP Code:

class hello_world
{
    
// we initliaze global variables to the methods here
    // note functions within a class are called methods
    // variables are called preferences (I think? :p)
    
var $string '';
    
    
// this function has the same name as the class so we can call it's arguements when
    // intializing the class
    
function hello_world($incoming$whowetalkinto)
    {
        
// in OOP the $this-> prefix allows you to make new variables which are global
        // to the class
        // you can reference the value of $this->who and $this->string anywhere in any method now
        
$this->who $whowetalkinto;
        
$this->string $incoming;

        
// calls another method to output :)
        
$this->output();
    }
    
    
// takes our global variables and spits them out
    
function output()
    {
        echo 
$this->string ' ' $this->who;
    }
}

// you initialize a class with the keyword: new
new hello_world('Hello''Dean');

// will output: Hello Dean 

Make sure you scroll and read the full comment :p


All times are GMT. The time now is 12: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.01171 seconds
  • Memory Usage 1,749KB
  • 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
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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