SlideShare a Scribd company logo
code4lib SIG Spring Forum
     March 16, 2011
symfony basics

 Full stack framework
 Build apps very simple (as we're about to do), or very
 complex
 Current version 1.4 (v2.0 is being released... soon.)

 PHP5
 OOP (see also Zandstra-> )
History of symfony

  first blog post - October 2005

  1.0 - January 2007
  1.1 - June 2008
  1.2 - December 2008 - new forms system
  1.3/1.4 - November 2009

  2.0 - now
Community

 symfony forums
 symfony email list (helpful??)
Components

 ORM
   Propel
   Doctrine
   none

 Testing
    Unit: lime (??); phpunit plugins available
    Functional: symfony native

 SwiftMailer for email generation

 Forms & validation, routing, input sanitizing, output
 escaping, I18n, access restrictions, ...... and your stuff --
 fully extensible
Plugins

DRT - don't repeat them
http://www.symfony-project.org/plugins/

   sfPropelGuard / sfDoctrineGuard
   sfFormExtra (reCAPTCHA, TinyMCE, jQuery forms, ...)
   tjSolrDoctrineBehavior
       Automatically index records on create/update
       Doctrine::getTable('MyTableName')
       ->search( $querystring )
Crash course

Build a subject guides app

  Create data schema
  Generate backend admin forms
  Apply custom validation
  Add plugin for TinyMCE (WYSIWYG editor)
  Create basic frontend

Ready??!

More Related Content

PDF
CNIT 127: Ch 2: Stack Overflows in Linux
PDF
CNIT 127 Ch 3: Shellcode
PDF
CNIT 127: Ch 8: Windows overflows (Part 1)
PDF
CNIT 127 Ch 3: Shellcode
PDF
CNIT 127: 3: Shellcode
PDF
Web Frameworks
PDF
EmeraldView lightning talk at code4lib 2010
PDF
HipHop VM: overclocking Symfony
CNIT 127: Ch 2: Stack Overflows in Linux
CNIT 127 Ch 3: Shellcode
CNIT 127: Ch 8: Windows overflows (Part 1)
CNIT 127 Ch 3: Shellcode
CNIT 127: 3: Shellcode
Web Frameworks
EmeraldView lightning talk at code4lib 2010
HipHop VM: overclocking Symfony

Similar to Symfony (20)

PDF
Fabien Potencier "Symfony 4 in action"
PDF
Lets play with Symfony2
PPS
Simplify your professional web development with symfony
PDF
Symfony 4: A new way to develop applications #phpsrb
PDF
Symfony 4 Workshop - Limenius
PPT
Integrating symfony and Zend Framework (PHPBarcelona 2009)
KEY
Using symfony to save time, effort and sanity
PDF
Symfony 4: A new way to develop applications #ipc19
PDF
Symfony2 San Francisco Meetup 2009
PPTX
Symfony 2
PDF
symfony_from_scratch
PDF
symfony_from_scratch
PDF
Symfony 2.0 on PHP 5.3
PDF
Exploring Symfony2
PPT
Integrating symfony and Zend Framework
PPT
симфони это не страшно
PDF
Drupal symfony
PPT
Symfony: A Brief Introduction
PPTX
Symfony2 Introduction Presentation
Fabien Potencier "Symfony 4 in action"
Lets play with Symfony2
Simplify your professional web development with symfony
Symfony 4: A new way to develop applications #phpsrb
Symfony 4 Workshop - Limenius
Integrating symfony and Zend Framework (PHPBarcelona 2009)
Using symfony to save time, effort and sanity
Symfony 4: A new way to develop applications #ipc19
Symfony2 San Francisco Meetup 2009
Symfony 2
symfony_from_scratch
symfony_from_scratch
Symfony 2.0 on PHP 5.3
Exploring Symfony2
Integrating symfony and Zend Framework
симфони это не страшно
Drupal symfony
Symfony: A Brief Introduction
Symfony2 Introduction Presentation
Ad

Recently uploaded (20)

PDF
Approach and Philosophy of On baking technology
PDF
Machine learning based COVID-19 study performance prediction
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPT
Teaching material agriculture food technology
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
MYSQL Presentation for SQL database connectivity
Approach and Philosophy of On baking technology
Machine learning based COVID-19 study performance prediction
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
sap open course for s4hana steps from ECC to s4
Mobile App Security Testing_ A Comprehensive Guide.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Reach Out and Touch Someone: Haptics and Empathic Computing
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Per capita expenditure prediction using model stacking based on satellite ima...
Encapsulation_ Review paper, used for researhc scholars
Dropbox Q2 2025 Financial Results & Investor Presentation
“AI and Expert System Decision Support & Business Intelligence Systems”
Teaching material agriculture food technology
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
NewMind AI Weekly Chronicles - August'25 Week I
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
MYSQL Presentation for SQL database connectivity
Ad

Symfony

  • 1. code4lib SIG Spring Forum March 16, 2011
  • 2. symfony basics Full stack framework Build apps very simple (as we're about to do), or very complex Current version 1.4 (v2.0 is being released... soon.) PHP5 OOP (see also Zandstra-> )
  • 3. History of symfony first blog post - October 2005 1.0 - January 2007 1.1 - June 2008 1.2 - December 2008 - new forms system 1.3/1.4 - November 2009 2.0 - now
  • 4. Community symfony forums symfony email list (helpful??)
  • 5. Components ORM Propel Doctrine none Testing Unit: lime (??); phpunit plugins available Functional: symfony native SwiftMailer for email generation Forms & validation, routing, input sanitizing, output escaping, I18n, access restrictions, ...... and your stuff -- fully extensible
  • 6. Plugins DRT - don't repeat them http://www.symfony-project.org/plugins/ sfPropelGuard / sfDoctrineGuard sfFormExtra (reCAPTCHA, TinyMCE, jQuery forms, ...) tjSolrDoctrineBehavior Automatically index records on create/update Doctrine::getTable('MyTableName') ->search( $querystring )
  • 7. Crash course Build a subject guides app Create data schema Generate backend admin forms Apply custom validation Add plugin for TinyMCE (WYSIWYG editor) Create basic frontend Ready??!