Jump to content

SNN

Friends
  • Posts

    11
  • Joined

  • Last visited

Reputation Activity

  1. Like
    SNN reacted to Matt in IPB vs. vBulletin   
    Hello,

    It's worth quickly noting that this forum is a pre-sales forum so only staff can approve posts in it and make direct replies. If you would like, I can move this into our feedback area which will receive more attention from the community.

    In a nutshell, IP.Board is PHP 5 OOP utilizing a front controller system with an underlying registry to service database connections, incoming variables, viewing member data and caches. The controller files are responsible for collecting content and then pushing it to the display later where HTML logic and special tags format the data.

    The display controller is abstracted so you can write your own handler for different formats. IP.Board ships with a handler for HTML and XML but you can just as easily write a layer that handles WAP or anything else you need.

    As for coding advantages, well, that's a very good question. IP.Board 3 is a brand new framework written from the ground up. And it is important to note that it is a framework that you can use. The forums are effectively just an application inside the framework. As is the Blog, Gallery and Calendar, etc. What this means is that you can utilize this power when writing your own applications. There is almost no need to make hacks or edit code. There are integration points in almost every area; searching, sessions, member sync, etc. it's all there for your use.

    We have good and solid database abstraction, good real re-useable classes for common tasks (managing XML, importing skins, etc). We have several static classes for text wrangling and member management. I could go on.

    There is also a hook system that allows you to insert code in almost every IF and FOREACH block within the default templates. You can also override the basic controller classes very easily.

    Put short, IP.Board is not a procedural mess of code that requires open heart surgery to apply basic modifications.


    $newMember = IPSMember::create( $data ); IPSMember::load( $memberID, 'all' ); $member = IPSMember::buildDisplayData( $member ); $photo = IPSMember::buildProfilePhoto( $member ); IPSMember::save( $memberId, $memberData );








  2. Like
    SNN reacted to bfarber in IPB vs. vBulletin   
    You can do virtually anything with IPB, with the right amount of knowledge/assistance.

    For instance, if your banner rotation script is just a php script, you can easily do includes in our template system.



    {parse include="/home/site/public_html/myphpscript.php"}

    That will include myphpscript.php and put it's output where you insert that tag into the skin template.

    Dropdown menus - you can do that too with a little custom skin work. Look at our member dropdown at the top of the page - can easily replicate that to other areas.
  3. Like
    SNN reacted to Mat Barrie in IPB vs. vBulletin   
    Official community mods is right here on this forum: http://community.invisionpower.com/index.php?app=ccs

    You will be able to browse mods, but not download. You might also not have access to read articles (but can get an idea from the titles)
×
×
  • Create New...