SlideShare ist ein Scribd-Unternehmen logo
1 von 26
USING FEATURES
        Badiu Alexandru




   So you’ll have more free time too


       Drupalcamp Bucharest 2011
MIGHT HAVE
HAPPENED TO YOU
• The dev – staging – production issue
• You build the site
• Client wants new stuff
• You build it on dev, passes staging
• Replicate on live site
• Write update functions, manual exporting of
  views, cck


             Drupalcamp Bucharest 2011
MIGHT HAVE
HAPPENED TO YOU
• The “I’ve done this before” issue
• You build some feature for client A
• Along comes client B who wants the same
  thing
• Take code, exported views, cck, push to dev
• Work
• Replicate on prod


             Drupalcamp Bucharest 2011
MIGHT HAVE
HAPPENED TO YOU
• The “Is there anyone editing file x.module?”
  issue
• You work on a large project
• Each dev pushes code to a repository or no
  repo at all
• What about database changes?
• Export views, cck and push them as well
• Make sure each dev imports stuff after each
  update

             Drupalcamp Bucharest 2011
MIGHT HAVE
HAPPENED TO YOU
• The “What the f**k do I do now?” issue
• Drupal is hard for beginners
• Lots of modules
• Building a feature requires multiple modules
  usually and some knowledge about them
• Drupal recipes are good



             Drupalcamp Bucharest 2011
DO YOU SEE A
       PATTERN?
• Wouldn’t it be nice if you had a repository of
  “modules” that create functionality a little
  bit more than “list all blog posts” or “have a
  block with latest promoted posts in category
  A”?
• Learn the open source way
• Instant gratification
• Uuuu, this is cool


              Drupalcamp Bucharest 2011
DO YOU SEE A
       PATTERN??
• Wouldn’t it be nice if you could avoid all the
  manual exporting and importing of new
  features / changes and just package
  functionality in a “module” that can be
  updated?
• Modules are code, code can be put into
  versioning control (and you should do it)
• Database changes can’t (easily)


              Drupalcamp Bucharest 2011
DO YOU SEE A
       PATTERN?

• Made some code or db changes?
• Just click to generate a new version of the
  “module“
• Check in, others check out, update is done
• Less wrinkles and teeth grinding




             Drupalcamp Bucharest 2011
SO WHAT IS THE
      PROBLEM?
• This is not necessarily a Drupal only
  problem
• It’s the nature of web development and the
  way we do it
• Coding != Site building
• If only products of site building could be
  exported…
• Oh wait


             Drupalcamp Bucharest 2011
SO WHAT IS THE
   PROBLEM?




   Drupalcamp Bucharest 2011
EXPORTAB
• Exportables are ways of, well, exporting
  things from Drupal into code bits
• Pioneered by Views, CCK is also using this
• Imagecache, Spaces, Context, Strongarm
• Is this enough?
• No, replication is still a… not a piece of cake
• Lots of missing modules (like taxonomy)


              Drupalcamp Bucharest 2011
MODULAR
• It can also help if your site functionality is
  broken into a modular design
• Like maybe prefixing presets and views with
  blog_ or joblistings_
• Or use image_blog_medium rather than
  image_blog_300x50
• Or have site_blog.module and
  site_listings.module rather than that gigantic
  site.module
• These are nice first steps

              Drupalcamp Bucharest 2011
MODULAR
• What about blocks?
• Block visibility: php code or list of pages? Both?
  Complex conditions?
• What about menus?
• I want this menu to appear when you’re on a blog
  post but I want this other menu to appear on
  listings.
• Sitewide conditions: this should appear only if
  none of the conditions for the other “sections” are
  met


               Drupalcamp Bucharest 2011
CONTEXT
•   Built by Development Seed
•   You create sections for your site
•   They are triggered by various conditions
•   They enable blocks, activate menus
•   They can be global
•   They can act as failbacks
•   They stack
•   http://drupal.org/project/context

                Drupalcamp Bucharest 2011
ALMOST
• We can organize “visual” bits and pieces of
  our site using contexts
• We can use the same organization to name
  the products of our various site building
  tools
• We can follow a modular approach when
  developing our modules
• If only we could package all these changes
  into a module.

             Drupalcamp Bucharest 2011
FEATURES
• The Features module does exactly that
• It takes different clues as to what you want
  to package
• There’s the manual way too (it’s not perfect)
• It exports automatically whatever it can (not
  all modules use exportables)
• It adds it’s magic
• Generates a “feature” which is actually a
  module

              Drupalcamp Bucharest 2011
FEATURES
• The module contains all the necessary bits and
  pieces about your views, content types, presets
  etc
• Contains code to activate them (create or update
  them) and deactivate them
• Knows about dependencies so it won’t break the
  site
• It’s a module so you can hack away
• Once you add more stuff: click click => new
  version of the module


               Drupalcamp Bucharest 2011
FEATURES
• It doesn’t use update functions
• But you can write your own
• Doesn’t script site building, uses
  exportables
• This means that not all modules work
• Menu and Taxonomy have issues
• Webform creates actual nodes
• Feed nodes, ToS and Privacy Policy pages
• UUID for content

             Drupalcamp Bucharest 2011
FEATURES
•   Context, Spaces, Boxes, Strongarm, Page
    Manager (CTools)
•   ImageCache
•   Views
•   http://drupal.org/taxonomy/term/11478
•   CCK, Content types, Input filters,
    Permissions

              Drupalcamp Bucharest 2011
YOUR
•   You have two options to integrate
•   CTools Export API (recommended)
•   Features hooks
•   Before that you might have to
    prepare


            Drupalcamp Bucharest 2011
SHARE
• A feature can be installed on any other site
  that has the required modules
• You can put it on d.org
• Features server: repository of features
• Internal or external
• Get notified of updates
• List of repos: http://groups.drupal.org/
  node/50278


              Drupalcamp Bucharest 2011
BASIC
• Simple demo
   We are going to build a blog feature
   Use a context to “group” it
   Create a content type for it
   Make it use a vocabulary
   Create a listing and a block using views
   Package it using Features
   Deploy it on another site


              Drupalcamp Bucharest 2011
BASIC
•   We’re going to use BuildKit
•   Drupal install profile with Features
•   drush make "http://drupalcode.org/
    project/buildkit.git/blob_plain/refs/
    tags/7.x-2.0-beta2:/distro.make"
    sitedir


             Drupalcamp Bucharest 2011
ADVANCE
• The next step: the Spaces module
• Again, Development Seed
• Makes a Drupal site act like multiple sites
• Makes features spaces aware: selective
  enabling of features on a per group basis




              Drupalcamp Bucharest 2011
RESOURCE
• http://drupal.org/project/features
• http://drupal.org/project/buildkit
• http://drupal.org/project/kit
• http://drupal.org/project/context
• http://drupal.org/project/spaces
• http://drupal.org/project/uuid_features
• http://groups.drupal.org/packaging-
  deployment
• http://developmentseed.org/tags/features

            Drupalcamp Bucharest 2011
THANK
   andu@ctrlz.ro
   http://ctrlz.ro




Drupalcamp Bucharest 2011

Weitere ähnliche Inhalte

Was ist angesagt?

OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020Howard Greenberg
 
MWLUG 2015 - An Introduction to MVC
MWLUG 2015 - An Introduction to MVCMWLUG 2015 - An Introduction to MVC
MWLUG 2015 - An Introduction to MVCUlrich Krause
 
Untangling - fall2017 - week 7
Untangling - fall2017 - week 7Untangling - fall2017 - week 7
Untangling - fall2017 - week 7Derek Jacoby
 
Untangling - fall2017 - week6
Untangling - fall2017 - week6Untangling - fall2017 - week6
Untangling - fall2017 - week6Derek Jacoby
 
Bootstrap4XPages
Bootstrap4XPagesBootstrap4XPages
Bootstrap4XPagesTeamstudio
 
UKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUlrich Krause
 
Drupal's competition
Drupal's competitionDrupal's competition
Drupal's competitionAngela Byron
 
Untangling - fall2017 - week5
Untangling - fall2017 - week5Untangling - fall2017 - week5
Untangling - fall2017 - week5Derek Jacoby
 
XPages -Beyond the Basics
XPages -Beyond the BasicsXPages -Beyond the Basics
XPages -Beyond the BasicsUlrich Krause
 
ILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates EverywhereILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates EverywhereKevin Pettitt
 
Evolution of Drupal and the Drupal community
Evolution of Drupal and the Drupal communityEvolution of Drupal and the Drupal community
Evolution of Drupal and the Drupal communityAngela Byron
 
Dd13.2013.milano.open ntf
Dd13.2013.milano.open ntfDd13.2013.milano.open ntf
Dd13.2013.milano.open ntfUlrich Krause
 
Upgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and GotchasUpgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and GotchasSuzanne Dergacheva
 
Chocolatey + Artifactory = A Sweet Solution for Managing Windows
Chocolatey + Artifactory = A Sweet Solution for Managing WindowsChocolatey + Artifactory = A Sweet Solution for Managing Windows
Chocolatey + Artifactory = A Sweet Solution for Managing WindowsRob Reynolds
 
Site Building Checklist DrupalCamp Ottawa
Site Building Checklist DrupalCamp OttawaSite Building Checklist DrupalCamp Ottawa
Site Building Checklist DrupalCamp OttawaSuzanne Dergacheva
 
OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021Howard Greenberg
 
Preventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The StartPreventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The StartAcquia
 
Modern Software Management on Windows with Chocolatey and Puppet
Modern Software Management on Windows with Chocolatey and PuppetModern Software Management on Windows with Chocolatey and Puppet
Modern Software Management on Windows with Chocolatey and PuppetRob Reynolds
 
Drupal 8: Most common beginner mistakes
Drupal 8: Most common beginner mistakesDrupal 8: Most common beginner mistakes
Drupal 8: Most common beginner mistakesIztok Smolic
 
Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017
Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017
Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017Rob Reynolds
 

Was ist angesagt? (20)

OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020
 
MWLUG 2015 - An Introduction to MVC
MWLUG 2015 - An Introduction to MVCMWLUG 2015 - An Introduction to MVC
MWLUG 2015 - An Introduction to MVC
 
Untangling - fall2017 - week 7
Untangling - fall2017 - week 7Untangling - fall2017 - week 7
Untangling - fall2017 - week 7
 
Untangling - fall2017 - week6
Untangling - fall2017 - week6Untangling - fall2017 - week6
Untangling - fall2017 - week6
 
Bootstrap4XPages
Bootstrap4XPagesBootstrap4XPages
Bootstrap4XPages
 
UKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basics
 
Drupal's competition
Drupal's competitionDrupal's competition
Drupal's competition
 
Untangling - fall2017 - week5
Untangling - fall2017 - week5Untangling - fall2017 - week5
Untangling - fall2017 - week5
 
XPages -Beyond the Basics
XPages -Beyond the BasicsXPages -Beyond the Basics
XPages -Beyond the Basics
 
ILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates EverywhereILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates Everywhere
 
Evolution of Drupal and the Drupal community
Evolution of Drupal and the Drupal communityEvolution of Drupal and the Drupal community
Evolution of Drupal and the Drupal community
 
Dd13.2013.milano.open ntf
Dd13.2013.milano.open ntfDd13.2013.milano.open ntf
Dd13.2013.milano.open ntf
 
Upgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and GotchasUpgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and Gotchas
 
Chocolatey + Artifactory = A Sweet Solution for Managing Windows
Chocolatey + Artifactory = A Sweet Solution for Managing WindowsChocolatey + Artifactory = A Sweet Solution for Managing Windows
Chocolatey + Artifactory = A Sweet Solution for Managing Windows
 
Site Building Checklist DrupalCamp Ottawa
Site Building Checklist DrupalCamp OttawaSite Building Checklist DrupalCamp Ottawa
Site Building Checklist DrupalCamp Ottawa
 
OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021
 
Preventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The StartPreventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The Start
 
Modern Software Management on Windows with Chocolatey and Puppet
Modern Software Management on Windows with Chocolatey and PuppetModern Software Management on Windows with Chocolatey and Puppet
Modern Software Management on Windows with Chocolatey and Puppet
 
Drupal 8: Most common beginner mistakes
Drupal 8: Most common beginner mistakesDrupal 8: Most common beginner mistakes
Drupal 8: Most common beginner mistakes
 
Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017
Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017
Software Management with PowerShell DSC and Chocolatey - PowerShell Summit 2017
 

Ähnlich wie Using Features

Drupal Presentation for CapitalCamp 2011: Features Driven Development
Drupal Presentation for CapitalCamp 2011: Features Driven DevelopmentDrupal Presentation for CapitalCamp 2011: Features Driven Development
Drupal Presentation for CapitalCamp 2011: Features Driven DevelopmentMediacurrent
 
Drupal 8 deeper dive
Drupal 8 deeper diveDrupal 8 deeper dive
Drupal 8 deeper diveAmazee Labs
 
Everything You Need to Know About the Top Changes in Drupal 8
Everything You Need to Know About the Top Changes in Drupal 8Everything You Need to Know About the Top Changes in Drupal 8
Everything You Need to Know About the Top Changes in Drupal 8Acquia
 
Drupal upgrades and migrations. BAD Camp 2013 version
Drupal upgrades and migrations. BAD Camp 2013 versionDrupal upgrades and migrations. BAD Camp 2013 version
Drupal upgrades and migrations. BAD Camp 2013 versionDavid Lanier
 
Dipping Your Toe into Drupal 8 Module Development
Dipping Your Toe into Drupal 8 Module DevelopmentDipping Your Toe into Drupal 8 Module Development
Dipping Your Toe into Drupal 8 Module DevelopmentSuzanne Dergacheva
 
Drupal 8 - Build Week Update
Drupal 8 - Build Week UpdateDrupal 8 - Build Week Update
Drupal 8 - Build Week UpdateAngela Byron
 
Creating a Reusable Drupal Website for Higher Education - Webinar
Creating a Reusable Drupal Website for Higher Education - WebinarCreating a Reusable Drupal Website for Higher Education - Webinar
Creating a Reusable Drupal Website for Higher Education - WebinarSuzanne Dergacheva
 
Panopoly - Boulder DBUG 13 Nov 2013
Panopoly - Boulder DBUG 13 Nov 2013Panopoly - Boulder DBUG 13 Nov 2013
Panopoly - Boulder DBUG 13 Nov 2013Robert Dickert
 
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011camp_drupal_ua
 
Phase2 Large Drupal Multisites (gta case study)
Phase2   Large Drupal Multisites (gta case study)Phase2   Large Drupal Multisites (gta case study)
Phase2 Large Drupal Multisites (gta case study)Phase2
 
Creating a Reusable Drupal Website for Higher Education - at USG Tech Day
Creating a Reusable Drupal Website for Higher Education - at USG Tech DayCreating a Reusable Drupal Website for Higher Education - at USG Tech Day
Creating a Reusable Drupal Website for Higher Education - at USG Tech DaySuzanne Dergacheva
 
Your first d8 module
Your first d8 moduleYour first d8 module
Your first d8 moduletedbow
 
Fastest Way to DRUPAL
Fastest Way to DRUPALFastest Way to DRUPAL
Fastest Way to DRUPALBrahm
 
Top 20 mistakes you will make on your 1st Drupal project
Top 20 mistakes you will make on your 1st Drupal projectTop 20 mistakes you will make on your 1st Drupal project
Top 20 mistakes you will make on your 1st Drupal projectIztok Smolic
 
Features, Exportables & You
Features, Exportables & YouFeatures, Exportables & You
Features, Exportables & Youjskulski
 
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...Eric Sembrat
 
Staging and Deployment
Staging and DeploymentStaging and Deployment
Staging and Deploymentheyrocker
 

Ähnlich wie Using Features (20)

Last Call Media Drupal 8 Case Study
Last Call Media Drupal 8 Case StudyLast Call Media Drupal 8 Case Study
Last Call Media Drupal 8 Case Study
 
Drupal Presentation for CapitalCamp 2011: Features Driven Development
Drupal Presentation for CapitalCamp 2011: Features Driven DevelopmentDrupal Presentation for CapitalCamp 2011: Features Driven Development
Drupal Presentation for CapitalCamp 2011: Features Driven Development
 
Drupal 8 deeper dive
Drupal 8 deeper diveDrupal 8 deeper dive
Drupal 8 deeper dive
 
Everything You Need to Know About the Top Changes in Drupal 8
Everything You Need to Know About the Top Changes in Drupal 8Everything You Need to Know About the Top Changes in Drupal 8
Everything You Need to Know About the Top Changes in Drupal 8
 
Drupal upgrades and migrations. BAD Camp 2013 version
Drupal upgrades and migrations. BAD Camp 2013 versionDrupal upgrades and migrations. BAD Camp 2013 version
Drupal upgrades and migrations. BAD Camp 2013 version
 
Dipping Your Toe into Drupal 8 Module Development
Dipping Your Toe into Drupal 8 Module DevelopmentDipping Your Toe into Drupal 8 Module Development
Dipping Your Toe into Drupal 8 Module Development
 
Drupal 8 - Build Week Update
Drupal 8 - Build Week UpdateDrupal 8 - Build Week Update
Drupal 8 - Build Week Update
 
Top modules
Top modulesTop modules
Top modules
 
Creating a Reusable Drupal Website for Higher Education - Webinar
Creating a Reusable Drupal Website for Higher Education - WebinarCreating a Reusable Drupal Website for Higher Education - Webinar
Creating a Reusable Drupal Website for Higher Education - Webinar
 
Panopoly - Boulder DBUG 13 Nov 2013
Panopoly - Boulder DBUG 13 Nov 2013Panopoly - Boulder DBUG 13 Nov 2013
Panopoly - Boulder DBUG 13 Nov 2013
 
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
 
Phase2 Large Drupal Multisites (gta case study)
Phase2   Large Drupal Multisites (gta case study)Phase2   Large Drupal Multisites (gta case study)
Phase2 Large Drupal Multisites (gta case study)
 
Creating a Reusable Drupal Website for Higher Education - at USG Tech Day
Creating a Reusable Drupal Website for Higher Education - at USG Tech DayCreating a Reusable Drupal Website for Higher Education - at USG Tech Day
Creating a Reusable Drupal Website for Higher Education - at USG Tech Day
 
Your first d8 module
Your first d8 moduleYour first d8 module
Your first d8 module
 
Fastest Way to DRUPAL
Fastest Way to DRUPALFastest Way to DRUPAL
Fastest Way to DRUPAL
 
Top 20 mistakes you will make on your 1st Drupal project
Top 20 mistakes you will make on your 1st Drupal projectTop 20 mistakes you will make on your 1st Drupal project
Top 20 mistakes you will make on your 1st Drupal project
 
Features, Exportables & You
Features, Exportables & YouFeatures, Exportables & You
Features, Exportables & You
 
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...
 
Agile sites2
Agile sites2Agile sites2
Agile sites2
 
Staging and Deployment
Staging and DeploymentStaging and Deployment
Staging and Deployment
 

Mehr von Alexandru Badiu

Behavior Driven Development with Drupal
Behavior Driven Development with DrupalBehavior Driven Development with Drupal
Behavior Driven Development with DrupalAlexandru Badiu
 
Drupal as a first class mobile platform
Drupal as a first class mobile platformDrupal as a first class mobile platform
Drupal as a first class mobile platformAlexandru Badiu
 
Cloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloudCloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloudAlexandru Badiu
 
Cloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloudCloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloudAlexandru Badiu
 
Learning the basics of the Drupal API
Learning the basics of the Drupal APILearning the basics of the Drupal API
Learning the basics of the Drupal APIAlexandru Badiu
 
What's new in the Drupal 7 API?
What's new in the Drupal 7 API?What's new in the Drupal 7 API?
What's new in the Drupal 7 API?Alexandru Badiu
 
Drupal, Android and iPhone
Drupal, Android and iPhoneDrupal, Android and iPhone
Drupal, Android and iPhoneAlexandru Badiu
 
Concepte de programare functionala in Javascript
Concepte de programare functionala in JavascriptConcepte de programare functionala in Javascript
Concepte de programare functionala in JavascriptAlexandru Badiu
 

Mehr von Alexandru Badiu (14)

Behavior Driven Development with Drupal
Behavior Driven Development with DrupalBehavior Driven Development with Drupal
Behavior Driven Development with Drupal
 
Drupal 8
Drupal 8Drupal 8
Drupal 8
 
Drupal as a first class mobile platform
Drupal as a first class mobile platformDrupal as a first class mobile platform
Drupal as a first class mobile platform
 
Cloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloudCloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloud
 
REST Drupal
REST DrupalREST Drupal
REST Drupal
 
Cloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloudCloud to the rescue? How I learned to stop worrying and love the cloud
Cloud to the rescue? How I learned to stop worrying and love the cloud
 
Learning the basics of the Drupal API
Learning the basics of the Drupal APILearning the basics of the Drupal API
Learning the basics of the Drupal API
 
What's new in the Drupal 7 API?
What's new in the Drupal 7 API?What's new in the Drupal 7 API?
What's new in the Drupal 7 API?
 
Drupal, Android and iPhone
Drupal, Android and iPhoneDrupal, Android and iPhone
Drupal, Android and iPhone
 
Publish and Subscribe
Publish and SubscribePublish and Subscribe
Publish and Subscribe
 
Using Features
Using FeaturesUsing Features
Using Features
 
Concepte de programare functionala in Javascript
Concepte de programare functionala in JavascriptConcepte de programare functionala in Javascript
Concepte de programare functionala in Javascript
 
Drupal and Solr
Drupal and SolrDrupal and Solr
Drupal and Solr
 
Prezentare Wurbe
Prezentare WurbePrezentare Wurbe
Prezentare Wurbe
 

Kürzlich hochgeladen

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 

Kürzlich hochgeladen (20)

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 

Using Features

  • 1. USING FEATURES Badiu Alexandru So you’ll have more free time too Drupalcamp Bucharest 2011
  • 2. MIGHT HAVE HAPPENED TO YOU • The dev – staging – production issue • You build the site • Client wants new stuff • You build it on dev, passes staging • Replicate on live site • Write update functions, manual exporting of views, cck Drupalcamp Bucharest 2011
  • 3. MIGHT HAVE HAPPENED TO YOU • The “I’ve done this before” issue • You build some feature for client A • Along comes client B who wants the same thing • Take code, exported views, cck, push to dev • Work • Replicate on prod Drupalcamp Bucharest 2011
  • 4. MIGHT HAVE HAPPENED TO YOU • The “Is there anyone editing file x.module?” issue • You work on a large project • Each dev pushes code to a repository or no repo at all • What about database changes? • Export views, cck and push them as well • Make sure each dev imports stuff after each update Drupalcamp Bucharest 2011
  • 5. MIGHT HAVE HAPPENED TO YOU • The “What the f**k do I do now?” issue • Drupal is hard for beginners • Lots of modules • Building a feature requires multiple modules usually and some knowledge about them • Drupal recipes are good Drupalcamp Bucharest 2011
  • 6. DO YOU SEE A PATTERN? • Wouldn’t it be nice if you had a repository of “modules” that create functionality a little bit more than “list all blog posts” or “have a block with latest promoted posts in category A”? • Learn the open source way • Instant gratification • Uuuu, this is cool Drupalcamp Bucharest 2011
  • 7. DO YOU SEE A PATTERN?? • Wouldn’t it be nice if you could avoid all the manual exporting and importing of new features / changes and just package functionality in a “module” that can be updated? • Modules are code, code can be put into versioning control (and you should do it) • Database changes can’t (easily) Drupalcamp Bucharest 2011
  • 8. DO YOU SEE A PATTERN? • Made some code or db changes? • Just click to generate a new version of the “module“ • Check in, others check out, update is done • Less wrinkles and teeth grinding Drupalcamp Bucharest 2011
  • 9. SO WHAT IS THE PROBLEM? • This is not necessarily a Drupal only problem • It’s the nature of web development and the way we do it • Coding != Site building • If only products of site building could be exported… • Oh wait Drupalcamp Bucharest 2011
  • 10. SO WHAT IS THE PROBLEM? Drupalcamp Bucharest 2011
  • 11. EXPORTAB • Exportables are ways of, well, exporting things from Drupal into code bits • Pioneered by Views, CCK is also using this • Imagecache, Spaces, Context, Strongarm • Is this enough? • No, replication is still a… not a piece of cake • Lots of missing modules (like taxonomy) Drupalcamp Bucharest 2011
  • 12. MODULAR • It can also help if your site functionality is broken into a modular design • Like maybe prefixing presets and views with blog_ or joblistings_ • Or use image_blog_medium rather than image_blog_300x50 • Or have site_blog.module and site_listings.module rather than that gigantic site.module • These are nice first steps Drupalcamp Bucharest 2011
  • 13. MODULAR • What about blocks? • Block visibility: php code or list of pages? Both? Complex conditions? • What about menus? • I want this menu to appear when you’re on a blog post but I want this other menu to appear on listings. • Sitewide conditions: this should appear only if none of the conditions for the other “sections” are met Drupalcamp Bucharest 2011
  • 14. CONTEXT • Built by Development Seed • You create sections for your site • They are triggered by various conditions • They enable blocks, activate menus • They can be global • They can act as failbacks • They stack • http://drupal.org/project/context Drupalcamp Bucharest 2011
  • 15. ALMOST • We can organize “visual” bits and pieces of our site using contexts • We can use the same organization to name the products of our various site building tools • We can follow a modular approach when developing our modules • If only we could package all these changes into a module. Drupalcamp Bucharest 2011
  • 16. FEATURES • The Features module does exactly that • It takes different clues as to what you want to package • There’s the manual way too (it’s not perfect) • It exports automatically whatever it can (not all modules use exportables) • It adds it’s magic • Generates a “feature” which is actually a module Drupalcamp Bucharest 2011
  • 17. FEATURES • The module contains all the necessary bits and pieces about your views, content types, presets etc • Contains code to activate them (create or update them) and deactivate them • Knows about dependencies so it won’t break the site • It’s a module so you can hack away • Once you add more stuff: click click => new version of the module Drupalcamp Bucharest 2011
  • 18. FEATURES • It doesn’t use update functions • But you can write your own • Doesn’t script site building, uses exportables • This means that not all modules work • Menu and Taxonomy have issues • Webform creates actual nodes • Feed nodes, ToS and Privacy Policy pages • UUID for content Drupalcamp Bucharest 2011
  • 19. FEATURES • Context, Spaces, Boxes, Strongarm, Page Manager (CTools) • ImageCache • Views • http://drupal.org/taxonomy/term/11478 • CCK, Content types, Input filters, Permissions Drupalcamp Bucharest 2011
  • 20. YOUR • You have two options to integrate • CTools Export API (recommended) • Features hooks • Before that you might have to prepare Drupalcamp Bucharest 2011
  • 21. SHARE • A feature can be installed on any other site that has the required modules • You can put it on d.org • Features server: repository of features • Internal or external • Get notified of updates • List of repos: http://groups.drupal.org/ node/50278 Drupalcamp Bucharest 2011
  • 22. BASIC • Simple demo  We are going to build a blog feature  Use a context to “group” it  Create a content type for it  Make it use a vocabulary  Create a listing and a block using views  Package it using Features  Deploy it on another site Drupalcamp Bucharest 2011
  • 23. BASIC • We’re going to use BuildKit • Drupal install profile with Features • drush make "http://drupalcode.org/ project/buildkit.git/blob_plain/refs/ tags/7.x-2.0-beta2:/distro.make" sitedir Drupalcamp Bucharest 2011
  • 24. ADVANCE • The next step: the Spaces module • Again, Development Seed • Makes a Drupal site act like multiple sites • Makes features spaces aware: selective enabling of features on a per group basis Drupalcamp Bucharest 2011
  • 25. RESOURCE • http://drupal.org/project/features • http://drupal.org/project/buildkit • http://drupal.org/project/kit • http://drupal.org/project/context • http://drupal.org/project/spaces • http://drupal.org/project/uuid_features • http://groups.drupal.org/packaging- deployment • http://developmentseed.org/tags/features Drupalcamp Bucharest 2011
  • 26. THANK andu@ctrlz.ro http://ctrlz.ro Drupalcamp Bucharest 2011

Hinweis der Redaktion

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n