SlideShare a Scribd company logo
1 of 67
J and Beyond Conference The Netherlands, May 2011 www.jandbeyond.org Joomla!  FrameworkS kung Fu Oleg nesterov
Why you can believe me
What is this about? High Quality Code Not Repeating Yourself
WHY It’s IMportant
WHY It’s IMportant 70% spaghetti code
Agenda What is a framework? Developing with Joomla 1.5 framework. Other frameworks for Joomla.
WHAT IS A FRAMEWORK
A set of tools which allows you to concentrate on the business logic of your  app while it takes up everything else!
GENERAL ARCHITECTURE
GENERAL ARCHITECTURE
SECURITY
SECURITY
DATABASE MANAGEMENT
DATABASE MANAGEMENT
PATTERNS: MVC, Factory, etc.
PATTERNS: MVC, Factory, etc.
FILES & CLASSES MANAGEMENT
FILES & CLASSES MANAGEMENT
DISPATCHING
DISPATCHING
ROUTINE TASKS
ROUTINE TASKS
OVERRIDE IT
OVERRIDE IT
FULLFIL 3 OF MY WISHES 1. Give me a full-featured webshop, 2. test it, 3. and beer please.
Why you can believe me WHAT J! FW OFFERS
Why you can believe me WHAT J! FW OFFERS
YOU CAN CREATE GOOD CODE WITH JOOMLA!
Why you can believe me J! GENERAL ARCHITECTURE Application Base Cache Client DatabaseDocumentEnvironmentError Event File system Filter HTML Installer LanguageMailPlugin Registry Session Template UserUtilities and more… … not bad
Why you can believe me SECURITY FILTER INPUT, ESCAPE OUTPUT! JRequest JDatabase::Quote, getEscaped, int http://shiflett.org/blog/2005/feb/my-top-two-php-security-practices http://docs.joomla.org/Developers#Security
Why you can believe me Files INCLUDING JLoader jimport require_once
AUTOLOADING System Plugin Loader Class registers
COMPONENT DISPATCHING Joomla 1.5 way
COMPONENT DISPATCHING MAIN CONTROLLER Controller 1 Controller 2 … Controller n Joomla 1.5 way
COMPONENT DISPATCHING MAIN CONTROLLER In fact:  0 controllers Joomla 1.5 way
COMPONENT DISPATCHING MASTER CONTROLLER Controller 1 Controller 2 … Controller n http://docs.joomla.org/JController_and_its_subclass_usage_overview Joomla 1.6 way
COMPONENT DISPATCHING BASE DISPATCHER Component Dispatcher dispatch()
COMPONENT DISPATCHING MyDispatcher::dispatch(array('component_name' => mycp', 'default_view' => ‘my‘ )); 1 line of code
MVC Model Controller View User
NO FRAMEWORK WILL HELP YOU IF YOU DON’T UNDERSTAND MVC!
СONTROLLER IS THE BOSS!
Controller Getting request data; Getting model & view instances; Updating model states; Calling model action methods (e.g. delete, save, remove); Calling view methods to render a template. Database tasks; Manipulating model data; Rendering templates.
MODEL IS A HARD WORKER!
MODEL Storing a state; Performing database tasks;  Formatting data; …all other data tasks. Getting request data; Rendering templates.
VIEW IS A STYLIST!
VIEW Rendering templates
MVC IN JOOMLA! JCONTROLLER JMODEL JVIEW
REAL MVC WITH J? A simple list with filtering
REAL MVC WITH J? request Controller Model state model with updated state View display()
REAL MVC WITH J? request Controller Model state model with updated state View no state display()
REAL MVC WITH J! Make JController::getModel method to store a model
1 DB TABLE = 1 MVC
A TYPICAL J! PAGE
A TYPICAL J! PAGE BORING TASKS 
SEND BORING TASKS TO YOUR FRAMEWORK
Boring tasks It’s all about CRUD, both on the back-end & front-end
Boring tasks IT’s all about lists & forms
Boring tasks Base Classes code
WHERE TO STORE IT? SYSTEM PLUGIN LIBRARIES FOLDER COMPONENT
BENEFITS FROM PHP 5.x Magic methods, Interfaces, Exceptions, … it’s high time to implement them!
NOOKU FRAMEWORK: A MUST SEE FOR EVERY J! DEVELOPER!
Why you can believe me NOOKU FW KLoader, KFactory, Mixins, HMVC, … That is awesome!
CMSLAYER: A DIOSCOURI’S CODEBASE FOR LOADING EXTENSIONS ON DIFFERENT SYSTEMS!
CMSLAYER INTERFACE Implementation 1 Implementation 2 Implementation n cmsLayer interface cmsLayer base
CMSLAYER CODEBASE Feature1 Feature 2 Feature n cmsLayer base
CMSLAYER Joomla! Drupal WP cmsLayer product
Why you can believe me THANKS FOR COMING! http://twitter.com/onesterov http://onesterov.com http://www.slideshare.net/onesterov http://mindk.com nesterov.oleg@gmail.com WRITE GOOD CODE & BE HAPPY

More Related Content

What's hot (9)

Html Server Button Control VB
Html Server Button Control VBHtml Server Button Control VB
Html Server Button Control VB
 
Zend Framework Modular Project Setup
Zend Framework Modular Project SetupZend Framework Modular Project Setup
Zend Framework Modular Project Setup
 
Html Server Image Control VB
Html Server Image Control VBHtml Server Image Control VB
Html Server Image Control VB
 
Codeigniter simple explanation
Codeigniter simple explanation Codeigniter simple explanation
Codeigniter simple explanation
 
Introduction to Mantis
Introduction to MantisIntroduction to Mantis
Introduction to Mantis
 
Spec & Test Helper
Spec & Test HelperSpec & Test Helper
Spec & Test Helper
 
Joomla Custom Fields - the next level
Joomla Custom Fields - the next level Joomla Custom Fields - the next level
Joomla Custom Fields - the next level
 
Design your tests to behave - An introduction To BDD!
Design your tests to behave - An introduction To BDD!Design your tests to behave - An introduction To BDD!
Design your tests to behave - An introduction To BDD!
 
My sql udf,views
My sql udf,viewsMy sql udf,views
My sql udf,views
 

Similar to Joomla Frameworks Kung Fu

Introduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniterIntroduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniter
Pongsakorn U-chupala
 
Joomla Day India 2009 Business Logic With The Mvc
Joomla Day India 2009   Business Logic With The MvcJoomla Day India 2009   Business Logic With The Mvc
Joomla Day India 2009 Business Logic With The Mvc
Amit Kumar Singh
 
Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...
Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...
Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...
Nicholas Dionysopoulos
 
* DJANGO - The Python Framework - Low Kian Seong, Developer
    * DJANGO - The Python Framework - Low Kian Seong, Developer    * DJANGO - The Python Framework - Low Kian Seong, Developer
* DJANGO - The Python Framework - Low Kian Seong, Developer
Linuxmalaysia Malaysia
 

Similar to Joomla Frameworks Kung Fu (20)

Advance Component Development by Azrul Rahim
Advance Component Development by Azrul RahimAdvance Component Development by Azrul Rahim
Advance Component Development by Azrul Rahim
 
ASP.NET MVC Presentation
ASP.NET MVC PresentationASP.NET MVC Presentation
ASP.NET MVC Presentation
 
Introduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniterIntroduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniter
 
Developing Java Web Applications
Developing Java Web ApplicationsDeveloping Java Web Applications
Developing Java Web Applications
 
Get things done with Yii - quickly build webapplications
Get things done with Yii - quickly build webapplicationsGet things done with Yii - quickly build webapplications
Get things done with Yii - quickly build webapplications
 
ASP.NET MVC 5 Building Your First Web Application (A Beginner S Guide
ASP.NET MVC 5  Building Your First Web Application (A Beginner S GuideASP.NET MVC 5  Building Your First Web Application (A Beginner S Guide
ASP.NET MVC 5 Building Your First Web Application (A Beginner S Guide
 
Asp.Net Mvc Dev Days09
Asp.Net Mvc Dev Days09Asp.Net Mvc Dev Days09
Asp.Net Mvc Dev Days09
 
Joomla Day India 2009 Business Logic With The Mvc
Joomla Day India 2009   Business Logic With The MvcJoomla Day India 2009   Business Logic With The Mvc
Joomla Day India 2009 Business Logic With The Mvc
 
Drupal Deployment
Drupal DeploymentDrupal Deployment
Drupal Deployment
 
Model View Madness
Model View MadnessModel View Madness
Model View Madness
 
MVC From Beginner to Advance in Indian Style by - Indiandotnet
MVC From Beginner to Advance in Indian Style by - IndiandotnetMVC From Beginner to Advance in Indian Style by - Indiandotnet
MVC From Beginner to Advance in Indian Style by - Indiandotnet
 
Code Quality Practice and Tools
Code Quality Practice and ToolsCode Quality Practice and Tools
Code Quality Practice and Tools
 
OA Framwork Presentation.pptx
OA Framwork Presentation.pptxOA Framwork Presentation.pptx
OA Framwork Presentation.pptx
 
Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...
Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...
Joomla! Frappe - Κατασκευή εφαρμογών για το Joomla! χωρίς να τραβάτε τα μαλιά...
 
Eclipse MVC
Eclipse MVCEclipse MVC
Eclipse MVC
 
Architecting Applications Using Apache Wicket Java2 Days 2009
Architecting Applications Using Apache Wicket   Java2 Days 2009Architecting Applications Using Apache Wicket   Java2 Days 2009
Architecting Applications Using Apache Wicket Java2 Days 2009
 
Intro to AngularJs
Intro to AngularJsIntro to AngularJs
Intro to AngularJs
 
III - Better angularjs
III - Better angularjsIII - Better angularjs
III - Better angularjs
 
2012 07 24 backbone_1
2012 07 24 backbone_12012 07 24 backbone_1
2012 07 24 backbone_1
 
* DJANGO - The Python Framework - Low Kian Seong, Developer
    * DJANGO - The Python Framework - Low Kian Seong, Developer    * DJANGO - The Python Framework - Low Kian Seong, Developer
* DJANGO - The Python Framework - Low Kian Seong, Developer
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Recently uploaded (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

Joomla Frameworks Kung Fu