SlideShare a Scribd company logo
Creating a Symfony 2
Application from a
Drupal Perspective
Robyn Green
February 26, 2014
Robyn Green
●

Senior Developer and Themer for
Mediacurrent.

●

Bachelor of Science in Journalism,
Computer Science from University of
Central Arkansas.

●

Background in Media, news agencies.

●

Web app and Front End developer since
1996.

●

Live in Little Rock, Arkansas.

●

Build AngularJS, XCode, Django/Python
projects in my spare time.
What’s Going On?
● Why we talking about Symfony?
● What does this have to do with Drupal?
● Hasn’t this been covered already?
The Fine Print
● This is a high level presentation
○ There is no Symfony Apples === Drupal Oranges
The Fine Print
● This is a high level presentation
○ There is no Symfony Apples === Drupal Oranges Drupal
Blueberries
The Fine Print
● This is a high level presentation
○ There is no Symfony Apples === Drupal Oranges Drupal
Blueberries

● Won’t be going over Drupal 8
● No Drupal 7 to Drupal 8 module conversions
I solemnly swear to not rant and rave about best practices, my
opinion or procedural PHP vs MVC/OOP beyond what’s required
for Symfony 2 examples.
What Will You Do?
Build a simple Symfony 2 site using Drupal
terminology. (with examples … maybe)
MVC
Symfony: PHP web application framework using MVC
Drupal doesn’t have any sort of strict MVC requirement.

Example: PHP and SQL queries in theme tpl files.
MVC
Symfony: PHP web application framework using MVC

M: Model
● V: View
● C: Controller
●
MVC “Drupal”
Symfony: PHP web application framework using MVC
● M: Model
○ Content Types
● V: View
○ Theme template tpl files
● C: Controller
○ Modules
Lock and (down)load
Let’s create a basic site in Symfony and Drupal

Drush vs Composer
Both are CLI tools
You can install Drupal via Drush
You can install Symfony via Composer
Drush is 100% Drupal
Composer is a dependency manager for PHP. It owes
allegiance to no one
Lock and (down)load
Lock and (down)load
Lock and (down)load
Lock and (down)load
Lock and (down)load
We need to configure Symfony first
Load config.php

Fix any Problems, most likely permissions
Lock and (down)load
Plug in your database information
Lock and (down)load
Lock and (down)load
Note the URL: app_dev.php
Symfony has a built-in development environment toggle that
defaults to enabled.
This runs a different URL based on the environment
parameter set
If You Build It, They Will Come
Basic Recipe site should have … recipes
●
●
●
●
●

Title
Category
Ingredients
Instructions
Ratings. Maybe.
If You Build It, They Will Come
In Drupal, this is pretty standard*

*Field Collection and Fivestar contrib modules used
If You Build It, They Will Come
Let’s see that again, but in Symfony this
time.
If You Build It, They Will Come
Building a Bundle

php app/console generate:bundle --namespace=Tutorial/CoreBundle --format=yml
If You Build It, They Will Come

Warning: Namespace Discussions Ahead
If You Build It, They Will Come
Building a Bundle

php app/console generate:bundle --namespace=Tutorial/CoreBundle --format=yml

Namespaces. There are standards to how this is done and Drupal is currently
using PSR-0 but heavily debating a move to PSR-4.
Symfony as of 2.4 still uses PSR-0, 1 or 2.
http://symfony.com/doc/current/contributing/code/standards.html
If You Build It, They Will Come
Building a Bundle

php app/console generate:bundle --namespace=Tutorial/CoreBundle --format=yml

Tutorial here is the vendor name.
CoreBundle is the package name.
If You Build It, They Will Come
Building a Bundle

php app/console generate:bundle --namespace=Recipes/WebBundle --format=yml

YAML Format. From Symfony’s own documentation:
“YAML, YAML Ain't Markup Language, is a human friendly data serialization
standard for all programming languages.”
If You Build It, They Will Come
YAML

Drupal 7 Module .info

YAML
If You Build It, They Will Come
Ignore Acme - default example
We’ve got a Tutorial directory
CoreBundle falls under that
Everything related to that
bundle is in here
Symfony Content Types
That’s all great, but what about our Drupal
Content Type?
●

We have to declare the bundle before
we can generate the entity.

Don’t get confused with between Models, Entities,
Bundles and Content Types.
Symfony Content Types
Building an Entity
php app/console doctrine:generate:entity --entity="TutorialCoreBundle:recipe"

The console is going to ask us about fields in this entity. Let’s
treat it like our content type*

*we can pass fields in the command as a shortcut, but we’ll keep it simple here.
Symfony Content Types
Symfony Content Types
What does this look like in Drupal?
Symfony Content Types
Building an Entity
Think about relationships when deciding fields.
Ingredients is better as its own Entity, not on it’s own as a
Field. We’ll establish a Many-to-Many relationship.
Categories as well.
Symfony Content Types
Building an Entity
Drupal: Nodereferences, Taxonomy, even Images - anything
that needs a complex set of its own fields or data is perhaps
better suited as its own Entity in Symfony
We have to tell Symfony these items will have a relationship
In Drupal, the power of the community has done this for us
with modules like Entity Reference and Node Reference
Symfony Content Types
Building an Entity
ManyToMany
OneToMany
ManyToOne
OneToOne
These relationships are extremely powerful, and
unfortunately beyond the scope of what we can cover here.
Symfony Content Types
Building an Entity
What do the fields in this Entity look like?
src/Tutorial/CoreBundle/Entity/recipe.php
/**
* @var string
*
* @ORMColumn(name="category", type="string", length=255)
*/
private $category;
Symfony Content Types
Building an Entity
So that’s it, we have our content type minus the
different relationships?
Not quite.
Symfony Content Types
Building an Entity
We have to tell Symfony to update our schema:
php app/console doctrine:schema:update --force
One Data Entry to Rule Them All
Drupal
One Data Entry to Rule Them All
Symfony

Remember, this is just a framework.
Also, don’t do mysql inserts directly like that. It’s hard to
establish relationships by hand.
One Data Entry to Rule Them All
$RecipeObj = new Recipe();
$RecipeObj->setTitle(“Yummy Recipe”);
$RecipeObj->setInstructions(“Some set of instructions”);
$RecipeObj->setCategory($CategoryObj);
$RecipeObj->setRating(2.5);
$em = $this->getDoctrine()->getManager();
$em->persist($RecipeObj);
$em->flush();
My First Symfony Site
How do we let Symfony know about our
new bundle?
Routing
src/Tutorial/CoreBundle/Resources/routing.yml
My First Symfony Site
By Default, our bundle routing looks like this:
tutorial_core_homepage:
pattern: /hello/{name}
defaults: { _controller: TutorialCoreBundle:Default:index }

Which we can access here:
http://localhost/symfony/web/app_dev.php/hello/test
My First Symfony Site
By Default, our bundle routing looks like this:
tutorial_core_homepage:
pattern: /hello/{name}
defaults: { _controller: TutorialCoreBundle:Default:index }

Which we can access here:
http://localhost/symfony/web/app_dev.php/hello/test
My First Symfony Site

Imagine trying to build a custom Drupal module
page and not implementing hook_menu()
This is the same logic behind Symfony routing
My First Symfony Site
My First Symfony Site
Let’s open
src/Tutorial/CoreBundle/Resources/routing.yml

pattern:

/hello/{name}

Change To
pattern:

/

We might as well set it to our homepage.
My First Symfony Site
Because we’ve removed the {name} placeholder,
we have to update our Controller and Twig.
src/Tutorial/CoreBundle/Controller/DefaultController.php
$recipes = $this->getDoctrine()
->getRepository(TutorialCoreBundle:recipe')
->findBy(array(), array('name' => 'asc'));
return $this->render('TutorialCoreBundle:Default:index.html.
twig',
array('recipes' => $recipes));
My First Symfony Site
What did we just do?
getRepository(TutorialCoreBunder:recipe')
->findBy(array(), array('name' => 'asc'))

Is basically the same as building a View
- of node.type = ‘recipe’
- sort by node.title, asc
But instead of outputting formatting or building a block, we’re
just storing a collection of objects.
My First Symfony Site
What did we just do?
We pass that $recipes collection on to Twig
My First Symfony Site
Twig index.html.twig
●

Drupal’s page.tpl.php

●

We can add whatever markup we need, but no PHP

●

Even better, define a base.html.twig and extend it

●

Extend allows us to use all the features of the parent, but
override when necessary

{% extends 'TutorialCoreBundle:Default:base.html.twig' %}
My First Symfony Site
Twig index.html.twig
<div>
{% for recipe in recipes %}
<h1>{{ recipe.title }}</h1>
{% endfor %}
</div>
My First Symfony Site
Twig index.html.twig
My First Symfony Site
Drupal page.tpl.php
My First Symfony Site
Twig
My First Symfony Site
Twig
One last thing ...
My First Symfony Site
Twig index.html.twig
My First Symfony Site
Twig index.html.twig
Except, that wasn’t Twig
That was Django. Python.
My First Symfony Site
Django index.html
My First Symfony Site
Twig index.html.twig
Because the backend logic is decoupled from the front
end display, the markup structure is so similar any
themer or front end developer can pick up these
templates without first having to learn the backend
code.
Thank You!

Questions?
@Mediacurrent

Mediacurrent.com

slideshare.net/mediacurrent

More Related Content

PDF
PDF
Symfony internals [english]
PDF
Symfony 2
PDF
High Quality Symfony Bundles tutorial - Dutch PHP Conference 2014
PDF
PHP 5.3 in practice
PDF
Symfony Components 2.0 on PHP 5.3
PDF
Symfony tips and tricks
PDF
Symfony 2.0 on PHP 5.3
Symfony internals [english]
Symfony 2
High Quality Symfony Bundles tutorial - Dutch PHP Conference 2014
PHP 5.3 in practice
Symfony Components 2.0 on PHP 5.3
Symfony tips and tricks
Symfony 2.0 on PHP 5.3

What's hot (19)

PDF
A dive into Symfony 4
PPTX
Symfony2 Introduction Presentation
PDF
Symfony & Javascript. Combining the best of two worlds
PDF
The Coolest Symfony Components you’ve never heard of - DrupalCon 2017
PDF
Symfony Components
PDF
Keeping it small - Getting to know the Slim PHP micro framework
KEY
Keeping it small: Getting to know the Slim micro framework
PDF
PHP 良好實踐 (Best Practice)
PDF
Symfony Guard Authentication: Fun with API Token, Social Login, JWT and more
PPT
Short Intro to PHP and MySQL
PDF
Keeping it Small: Getting to know the Slim Micro Framework
PDF
Symfony2 San Francisco Meetup 2009
ODP
Symfony CMF - PHP Conference Brazil 2011
PDF
PHP 5.3 Overview
PDF
Ruby on Rails at PROMPT ISEL '11
PDF
O que vem por aí com Rails 3
PDF
Symfony console: build awesome command line scripts with ease
PDF
ReactPHP
A dive into Symfony 4
Symfony2 Introduction Presentation
Symfony & Javascript. Combining the best of two worlds
The Coolest Symfony Components you’ve never heard of - DrupalCon 2017
Symfony Components
Keeping it small - Getting to know the Slim PHP micro framework
Keeping it small: Getting to know the Slim micro framework
PHP 良好實踐 (Best Practice)
Symfony Guard Authentication: Fun with API Token, Social Login, JWT and more
Short Intro to PHP and MySQL
Keeping it Small: Getting to know the Slim Micro Framework
Symfony2 San Francisco Meetup 2009
Symfony CMF - PHP Conference Brazil 2011
PHP 5.3 Overview
Ruby on Rails at PROMPT ISEL '11
O que vem por aí com Rails 3
Symfony console: build awesome command line scripts with ease
ReactPHP
Ad

Similar to Create a Symfony Application from a Drupal Perspective (20)

PDF
Hands-on with the Symfony2 Framework
PDF
The Naked Bundle - Symfony Usergroup Belgium
PDF
The Naked Bundle - Symfony Barcelona
PDF
The Naked Bundle - Symfony Live London 2014
PDF
Sympal - Symfony CMS Preview
PDF
Symfony finally swiped right on envvars
PDF
Fabien Potencier "Symfony 4 in action"
PDF
Using HttpKernelInterface for Painless Integration
PPTX
Ran Mizrahi - Symfony2 meets Drupal8
PPTX
Oop's in php
PDF
Creating a modern web application using Symfony API Platform Atlanta
PDF
Symfony quick tour_2.3
PDF
PHP Frameworks: I want to break free (IPC Berlin 2024)
PDF
Symfony tips and tricks
PDF
Create Your Own Framework by Fabien Potencier
PDF
Symfony 4 & Flex news
PDF
C 10 Pocket Reference Instant Help For C 10 Programmers First Early Release 1...
PDF
Symfony 4: A new way to develop applications #phpsrb
PDF
The Naked Bundle - Tryout
PDF
The Symfony CLI
Hands-on with the Symfony2 Framework
The Naked Bundle - Symfony Usergroup Belgium
The Naked Bundle - Symfony Barcelona
The Naked Bundle - Symfony Live London 2014
Sympal - Symfony CMS Preview
Symfony finally swiped right on envvars
Fabien Potencier "Symfony 4 in action"
Using HttpKernelInterface for Painless Integration
Ran Mizrahi - Symfony2 meets Drupal8
Oop's in php
Creating a modern web application using Symfony API Platform Atlanta
Symfony quick tour_2.3
PHP Frameworks: I want to break free (IPC Berlin 2024)
Symfony tips and tricks
Create Your Own Framework by Fabien Potencier
Symfony 4 & Flex news
C 10 Pocket Reference Instant Help For C 10 Programmers First Early Release 1...
Symfony 4: A new way to develop applications #phpsrb
The Naked Bundle - Tryout
The Symfony CLI
Ad

More from Acquia (20)

PDF
Acquia_Adcetera Webinar_Marketing Automation.pdf
PDF
Acquia Webinar Deck - 9_13 .pdf
PDF
Taking Your Multi-Site Management at Scale to the Next Level
PDF
CDP for Retail Webinar with Appnovation - Q2 2022.pdf
PDF
May Partner Bootcamp 2022
PDF
April Partner Bootcamp 2022
PDF
How to Unify Brand Experience: A Hootsuite Story
PDF
Using Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CX
PDF
Improve Code Quality and Time to Market: 100% Cloud-Based Development Workflow
PDF
September Partner Bootcamp
PDF
August partner bootcamp
PDF
July 2021 Partner Bootcamp
PDF
May Partner Bootcamp
PDF
DRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASY
PDF
Work While You Sleep: The CMO’s Guide to a 24/7/365 Lead Machine
PDF
Acquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B Leads
PDF
April partner bootcamp deck cookieless future
PDF
How to enhance cx through personalised, automated solutions
PDF
DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...
PDF
Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021
Acquia_Adcetera Webinar_Marketing Automation.pdf
Acquia Webinar Deck - 9_13 .pdf
Taking Your Multi-Site Management at Scale to the Next Level
CDP for Retail Webinar with Appnovation - Q2 2022.pdf
May Partner Bootcamp 2022
April Partner Bootcamp 2022
How to Unify Brand Experience: A Hootsuite Story
Using Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CX
Improve Code Quality and Time to Market: 100% Cloud-Based Development Workflow
September Partner Bootcamp
August partner bootcamp
July 2021 Partner Bootcamp
May Partner Bootcamp
DRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASY
Work While You Sleep: The CMO’s Guide to a 24/7/365 Lead Machine
Acquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B Leads
April partner bootcamp deck cookieless future
How to enhance cx through personalised, automated solutions
DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...
Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021

Recently uploaded (20)

PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
Cloud computing and distributed systems.
DOCX
The AUB Centre for AI in Media Proposal.docx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
20250228 LYD VKU AI Blended-Learning.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Advanced methodologies resolving dimensionality complications for autism neur...
Encapsulation_ Review paper, used for researhc scholars
Building Integrated photovoltaic BIPV_UPV.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Understanding_Digital_Forensics_Presentation.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Network Security Unit 5.pdf for BCA BBA.
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Programs and apps: productivity, graphics, security and other tools
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Cloud computing and distributed systems.
The AUB Centre for AI in Media Proposal.docx

Create a Symfony Application from a Drupal Perspective

  • 1. Creating a Symfony 2 Application from a Drupal Perspective Robyn Green February 26, 2014
  • 2. Robyn Green ● Senior Developer and Themer for Mediacurrent. ● Bachelor of Science in Journalism, Computer Science from University of Central Arkansas. ● Background in Media, news agencies. ● Web app and Front End developer since 1996. ● Live in Little Rock, Arkansas. ● Build AngularJS, XCode, Django/Python projects in my spare time.
  • 3. What’s Going On? ● Why we talking about Symfony? ● What does this have to do with Drupal? ● Hasn’t this been covered already?
  • 4. The Fine Print ● This is a high level presentation ○ There is no Symfony Apples === Drupal Oranges
  • 5. The Fine Print ● This is a high level presentation ○ There is no Symfony Apples === Drupal Oranges Drupal Blueberries
  • 6. The Fine Print ● This is a high level presentation ○ There is no Symfony Apples === Drupal Oranges Drupal Blueberries ● Won’t be going over Drupal 8 ● No Drupal 7 to Drupal 8 module conversions I solemnly swear to not rant and rave about best practices, my opinion or procedural PHP vs MVC/OOP beyond what’s required for Symfony 2 examples.
  • 7. What Will You Do? Build a simple Symfony 2 site using Drupal terminology. (with examples … maybe)
  • 8. MVC Symfony: PHP web application framework using MVC Drupal doesn’t have any sort of strict MVC requirement. Example: PHP and SQL queries in theme tpl files.
  • 9. MVC Symfony: PHP web application framework using MVC M: Model ● V: View ● C: Controller ●
  • 10. MVC “Drupal” Symfony: PHP web application framework using MVC ● M: Model ○ Content Types ● V: View ○ Theme template tpl files ● C: Controller ○ Modules
  • 11. Lock and (down)load Let’s create a basic site in Symfony and Drupal Drush vs Composer Both are CLI tools You can install Drupal via Drush You can install Symfony via Composer Drush is 100% Drupal Composer is a dependency manager for PHP. It owes allegiance to no one
  • 16. Lock and (down)load We need to configure Symfony first Load config.php Fix any Problems, most likely permissions
  • 17. Lock and (down)load Plug in your database information
  • 19. Lock and (down)load Note the URL: app_dev.php Symfony has a built-in development environment toggle that defaults to enabled. This runs a different URL based on the environment parameter set
  • 20. If You Build It, They Will Come Basic Recipe site should have … recipes ● ● ● ● ● Title Category Ingredients Instructions Ratings. Maybe.
  • 21. If You Build It, They Will Come In Drupal, this is pretty standard* *Field Collection and Fivestar contrib modules used
  • 22. If You Build It, They Will Come Let’s see that again, but in Symfony this time.
  • 23. If You Build It, They Will Come Building a Bundle php app/console generate:bundle --namespace=Tutorial/CoreBundle --format=yml
  • 24. If You Build It, They Will Come Warning: Namespace Discussions Ahead
  • 25. If You Build It, They Will Come Building a Bundle php app/console generate:bundle --namespace=Tutorial/CoreBundle --format=yml Namespaces. There are standards to how this is done and Drupal is currently using PSR-0 but heavily debating a move to PSR-4. Symfony as of 2.4 still uses PSR-0, 1 or 2. http://symfony.com/doc/current/contributing/code/standards.html
  • 26. If You Build It, They Will Come Building a Bundle php app/console generate:bundle --namespace=Tutorial/CoreBundle --format=yml Tutorial here is the vendor name. CoreBundle is the package name.
  • 27. If You Build It, They Will Come Building a Bundle php app/console generate:bundle --namespace=Recipes/WebBundle --format=yml YAML Format. From Symfony’s own documentation: “YAML, YAML Ain't Markup Language, is a human friendly data serialization standard for all programming languages.”
  • 28. If You Build It, They Will Come YAML Drupal 7 Module .info YAML
  • 29. If You Build It, They Will Come Ignore Acme - default example We’ve got a Tutorial directory CoreBundle falls under that Everything related to that bundle is in here
  • 30. Symfony Content Types That’s all great, but what about our Drupal Content Type? ● We have to declare the bundle before we can generate the entity. Don’t get confused with between Models, Entities, Bundles and Content Types.
  • 31. Symfony Content Types Building an Entity php app/console doctrine:generate:entity --entity="TutorialCoreBundle:recipe" The console is going to ask us about fields in this entity. Let’s treat it like our content type* *we can pass fields in the command as a shortcut, but we’ll keep it simple here.
  • 33. Symfony Content Types What does this look like in Drupal?
  • 34. Symfony Content Types Building an Entity Think about relationships when deciding fields. Ingredients is better as its own Entity, not on it’s own as a Field. We’ll establish a Many-to-Many relationship. Categories as well.
  • 35. Symfony Content Types Building an Entity Drupal: Nodereferences, Taxonomy, even Images - anything that needs a complex set of its own fields or data is perhaps better suited as its own Entity in Symfony We have to tell Symfony these items will have a relationship In Drupal, the power of the community has done this for us with modules like Entity Reference and Node Reference
  • 36. Symfony Content Types Building an Entity ManyToMany OneToMany ManyToOne OneToOne These relationships are extremely powerful, and unfortunately beyond the scope of what we can cover here.
  • 37. Symfony Content Types Building an Entity What do the fields in this Entity look like? src/Tutorial/CoreBundle/Entity/recipe.php /** * @var string * * @ORMColumn(name="category", type="string", length=255) */ private $category;
  • 38. Symfony Content Types Building an Entity So that’s it, we have our content type minus the different relationships? Not quite.
  • 39. Symfony Content Types Building an Entity We have to tell Symfony to update our schema: php app/console doctrine:schema:update --force
  • 40. One Data Entry to Rule Them All Drupal
  • 41. One Data Entry to Rule Them All Symfony Remember, this is just a framework. Also, don’t do mysql inserts directly like that. It’s hard to establish relationships by hand.
  • 42. One Data Entry to Rule Them All $RecipeObj = new Recipe(); $RecipeObj->setTitle(“Yummy Recipe”); $RecipeObj->setInstructions(“Some set of instructions”); $RecipeObj->setCategory($CategoryObj); $RecipeObj->setRating(2.5); $em = $this->getDoctrine()->getManager(); $em->persist($RecipeObj); $em->flush();
  • 43. My First Symfony Site How do we let Symfony know about our new bundle? Routing src/Tutorial/CoreBundle/Resources/routing.yml
  • 44. My First Symfony Site By Default, our bundle routing looks like this: tutorial_core_homepage: pattern: /hello/{name} defaults: { _controller: TutorialCoreBundle:Default:index } Which we can access here: http://localhost/symfony/web/app_dev.php/hello/test
  • 45. My First Symfony Site By Default, our bundle routing looks like this: tutorial_core_homepage: pattern: /hello/{name} defaults: { _controller: TutorialCoreBundle:Default:index } Which we can access here: http://localhost/symfony/web/app_dev.php/hello/test
  • 46. My First Symfony Site Imagine trying to build a custom Drupal module page and not implementing hook_menu() This is the same logic behind Symfony routing
  • 48. My First Symfony Site Let’s open src/Tutorial/CoreBundle/Resources/routing.yml pattern: /hello/{name} Change To pattern: / We might as well set it to our homepage.
  • 49. My First Symfony Site Because we’ve removed the {name} placeholder, we have to update our Controller and Twig. src/Tutorial/CoreBundle/Controller/DefaultController.php $recipes = $this->getDoctrine() ->getRepository(TutorialCoreBundle:recipe') ->findBy(array(), array('name' => 'asc')); return $this->render('TutorialCoreBundle:Default:index.html. twig', array('recipes' => $recipes));
  • 50. My First Symfony Site What did we just do? getRepository(TutorialCoreBunder:recipe') ->findBy(array(), array('name' => 'asc')) Is basically the same as building a View - of node.type = ‘recipe’ - sort by node.title, asc But instead of outputting formatting or building a block, we’re just storing a collection of objects.
  • 51. My First Symfony Site What did we just do? We pass that $recipes collection on to Twig
  • 52. My First Symfony Site Twig index.html.twig ● Drupal’s page.tpl.php ● We can add whatever markup we need, but no PHP ● Even better, define a base.html.twig and extend it ● Extend allows us to use all the features of the parent, but override when necessary {% extends 'TutorialCoreBundle:Default:base.html.twig' %}
  • 53. My First Symfony Site Twig index.html.twig <div> {% for recipe in recipes %} <h1>{{ recipe.title }}</h1> {% endfor %} </div>
  • 54. My First Symfony Site Twig index.html.twig
  • 55. My First Symfony Site Drupal page.tpl.php
  • 56. My First Symfony Site Twig
  • 57. My First Symfony Site Twig One last thing ...
  • 58. My First Symfony Site Twig index.html.twig
  • 59. My First Symfony Site Twig index.html.twig Except, that wasn’t Twig That was Django. Python.
  • 60. My First Symfony Site Django index.html
  • 61. My First Symfony Site Twig index.html.twig Because the backend logic is decoupled from the front end display, the markup structure is so similar any themer or front end developer can pick up these templates without first having to learn the backend code.