SlideShare une entreprise Scribd logo
1  sur  63
Télécharger pour lire hors ligne
INTRO TO DRUPAL

                          February 23, 2013



Douglas C. Hoffman
drupal.org douglaschoffman
@douglaschoffman
linkedin.com/in/douglaschoffman
doug@sagetree.net
doug@customersuccessmarketing.com
AGENDA
•   Drupal Overview
•   Site Building
•   Theming
•   Module Development
•   Q & A
ADVENTURE TRAVEL
Tours
Guides
Map
Blog
About
Feedback
Contact Us
WHAT DO THESE THREE THINGS 
    HAVE IN COMMON?




douglaschoffman.com/downloads.html
http://www.youtube.com/watch?v=rF1X12PE6PY
WHAT IS DRUPAL? DRIES BUYTAERT
Dries started a small
bulletin board for 
his friends. He called
it "dorp" the Dutch 
word for village, but 
a typo when he 
registered the domain made it drop.org. 
In 2001, Dries released it as open source and 
named it Drupal which is Dutch for drop.
WHO, WHAT & WHERE IS DRUPAL?
DRUPAL POWERS 20% OF TOP 10,000
WHO, WHAT & WHERE IS DRUPAL?




                          The Economist
20‐30 million page views per month and 3‐4 million unique visitors per month
                       Over 3 million registered users
                 Posting rate exceeds a comment per minute
WHO, WHAT & WHERE IS DRUPAL?




             Fast Company
       15 million unique visitors per month
WHO, WHAT & WHERE IS DRUPAL?




                 Symantec Connect
         3,000,000+ unique page views each month
            More than 206,000+ registered users
 Content base with 600,000+ combined nodes and comment 
WHO, WHAT & WHERE IS DRUPAL?




                       WhiteHouse.org
                       Other Government Sites
 Dept. of Commerce, World Economic forum, US House of Representatives
WHO, WHAT & WHERE IS DRUPAL?




                           Federal IT Dashboard
       Federal government technology investment information ‐ $75 billion budget
Contributed back to the Drupal open source organization ‐ http://drupal.org/node/1100308
WHO, WHAT & WHERE IS DRUPAL?
THE CMS LANDSCAPE
• Drupal – “Enterprise Class” 
  but not for the faint of heart!
• Joomla – Chaotic code base, 
  big in government
• WordPress – Blogging, smaller sites, 
  easier to get up and running, but doesn’t 
  scale nor have the enterprise 
  development tools
• SharePoint – Corporate intranets
SITE BUILD IN 7 EASY STEPS
Step 1 – Install Drupal, Modules and Libs
Step 2 – Content types, Fields and Taxonomy
Step 3 – User, Roles and Permissions
Step 4 – Themes, Blocks, Regions and Menus
Step 5 – Views
Step 6 – Other stuff: Image Styles, Pathauto,
     Webforms and CAPTCHA
Step 7 ‐ Themes
STEP 1 – GET DRUPAL RUNNING
      Setup a development environment
       Create an empty mySQL database
 Download Drupal core, modules and themes
         Download javascript libraries
Load files into your development environment
         Run Drupal installation script
             Setup WYSISYG editor
LAMP/WAMP/MAMP ARCHITECTURE
  L – Linux
W – Windows
M – Mac OS
 A – Apache 
 M – MySQL
   P – PHP
ARCHITECTURE – DON’T HACK CORE!
ARCHITECTURE – DON’T HACK CORE!
LOCAL DEVELOPMENT ENVIRONMENT




WAMP Server   Acquia Dev Desktop
DRUPAL MODULES
STEP 2 – CONTENT TYPES, FIELDS
        AND TAXONOMY
STEP 2 – CONTENT TYPES, FIELDS
        AND TAXONOMY
STEP 3 – USERS, ROLES,
  AND PERMISSIONS
STEP 4 – THEMES, BLOCKS,
  REGIONS AND MENUS
STEP 4 – THEMES, BLOCKS,
  REGIONS AND MENUS
STEP 4 – THEMES, BLOCKS,
  REGIONS AND MENUS
STEP 4 – THEMES, BLOCKS,
  REGIONS AND MENUS
STEP 4 – THEMES, BLOCKS,
  REGIONS AND MENUS
STEP 5 – VIEWS
STEP 5 – VIEWS
STEP 5 – VIEWS
STEP 5 – VIEWS
STEP 5 – VIEWS
STEP 5 – VIEWS
STEP 6 – IMAGE STYLES, PATHAUTO, 
   WEBFORMS AND CAPTCHA
STEP 6 – IMAGE STYLES, PATHAUTO, 
   WEBFORMS AND CAPTCHA
STEP 6 – IMAGE STYLES, PATHAUTO, 
   WEBFORMS AND CAPTCHA
STEP 6 – IMAGE STYLES, PATHAUTO, 
   WEBFORMS AND CAPTCHA
STEP 7 – PICK A THEME

         Contributed Themes
             Starter Themes
         Themes from scratch
         PHPTemplate Engine
Templates files and template suggestions
              Template.php
STEP 7 – PICK A THEME
SOME THEMES ARE COMPLETE
STEP 7 – PICK A THEME
SOME THEMES ARE STARTING POINTS
STEP 7 – PICK A THEME
SOME ARE ADMINISTRATION THEMES
STEP 7 – PICK A THEME

   CSS
 Images
Javascript
Templates
STEP 7 – PICK A THEME
   THEME .INFO FILE
Step 7 – Pick a Theme
STEP 7 – PICK A THEME
Page.tpl.php
Page.front.tpl.php
Node.tpl.php
Block.tpl.php
Comment.tpl.php
STEP 7 – PICK A THEME
       TEMPLATES = PHP + HTML
<div id="header‐region"  class="clear‐block">
 <?php print $header; ?>
 </div>

PHP Variables:
$header, $content, $footer…
STEP 7 – PICK A THEME
MODULE DEVELOPMENT
               Drupal Hook System
.info file + .module file + .install file (optional)
          DRUSH, DRUSH MAKE and GIT

     EZRA GILDESGAME (ACQUIA) PRESENTATION
http://chicago2011.drupal.org/sessions/introd
         uction‐module‐development
MODULE DEVELOPMENT
http://api.drupal.org/api/drupal
MODULE DEVELOPMENT
http://api.drupal.org/api/drupal/developer%21topics%21forms_api_reference.html/7
MODULE DEVELOPMENT
MODULE DEVELOPMENT
MODULE DEVELOPMENT
MODULE DEVELOPMENT
    Features
MODULE DEVELOPMENT
 Examples Module
DISTRIBUTIONS
           Full fledged applications
•   COD, Commons, OpenPublish, 
    OpenAtrium, Pressflow, OpenChurch, 
    OpenPublic, Acquia Drupal, Panopoly
•   EDU – ELMS, Julio, Open Academy, Open 
    Scholar… 
•   Pub – OpenPublish, NodeStream, 
    ProsePoint…
•   Nonprofits – CiviCRM, OpenAid, 
    OpenOutreach…
RESOURCES
• Drupalize.com
• BuildAModule.com
•
GLOSSARY
D.O – DRUPAL.ORG
MODULES, LIBRARIES AND THEMES – CORE, CONTRIB, CUSTOM
D6 (CCK), D7 (ENTITIES AND FIELDS), D8
NODES – TITLE (H1) AND BODY
COMMENTS – JUST WHAT YOU THINK THEY ARE! 
TAXONOMY – CATEGORIZATION LISTS
CONTENT TYPES – CUSTOMIZE NODES WITH FIELDS
MEDIA IMAGE STYLES – IMAGE PRESETS
PAGES – JUST WHAT YOU THINK THEY ARE!
REGIONS – AREAS OF THE PAGE (DIV)
BLOCKS – OBJECTS THAT CAN BE PLACED IN REGIONS
MENUS – MAIN, MANAGEMENT, NAVIGATION, USER, CUSTOM
VIEWS – LISTS OF CONTENT
USERS, ROLES AND PERMISSIONS
GET INVOLVED
  Create an account on Drupal.org
    Participate in your local DUG
Become a Drupal Association member
         Go to more camps!
THANKS! 
     ENJOY SCALE!
douglaschoffman.com/downloads.html
 scale.customersuccessmarketing.com

Contenu connexe

En vedette

Drupal content editor flexibility
Drupal content editor flexibilityDrupal content editor flexibility
Drupal content editor flexibility
hernanibf
 
Putting "Phings" together - how to automate your life
Putting "Phings" together - how to automate your lifePutting "Phings" together - how to automate your life
Putting "Phings" together - how to automate your life
Boyan Borisov
 
Memcache and Drupal - Vaibhav Jain
Memcache and Drupal - Vaibhav JainMemcache and Drupal - Vaibhav Jain
Memcache and Drupal - Vaibhav Jain
Drupal Camp Delhi
 

En vedette (20)

Case study on FishHub.org
Case study on FishHub.orgCase study on FishHub.org
Case study on FishHub.org
 
Managing Content in Drupal with Workbench
Managing Content in Drupal with WorkbenchManaging Content in Drupal with Workbench
Managing Content in Drupal with Workbench
 
Enterprise Drupal Migrations: Lessons From Large-Scale Migrations
Enterprise Drupal Migrations: Lessons From Large-Scale MigrationsEnterprise Drupal Migrations: Lessons From Large-Scale Migrations
Enterprise Drupal Migrations: Lessons From Large-Scale Migrations
 
Tuning Drupal for Scale and Performance
Tuning Drupal for Scale and PerformanceTuning Drupal for Scale and Performance
Tuning Drupal for Scale and Performance
 
Better editorial experience in Drupal 7
Better editorial experience in Drupal 7Better editorial experience in Drupal 7
Better editorial experience in Drupal 7
 
Drupal content editor flexibility
Drupal content editor flexibilityDrupal content editor flexibility
Drupal content editor flexibility
 
What is Drupal - For Content Editors
What is Drupal - For Content EditorsWhat is Drupal - For Content Editors
What is Drupal - For Content Editors
 
Supersize me: Making Drupal go large
Supersize me: Making Drupal go largeSupersize me: Making Drupal go large
Supersize me: Making Drupal go large
 
Drupal Caching For Dummies
Drupal Caching For DummiesDrupal Caching For Dummies
Drupal Caching For Dummies
 
Designing enterprise drupal
Designing enterprise drupalDesigning enterprise drupal
Designing enterprise drupal
 
Drupal in the Enterprise, IBM and Norwegian Cruise Line
Drupal in the Enterprise, IBM and Norwegian Cruise LineDrupal in the Enterprise, IBM and Norwegian Cruise Line
Drupal in the Enterprise, IBM and Norwegian Cruise Line
 
First Steps in Drupal Code Driven Development
First Steps in Drupal Code Driven DevelopmentFirst Steps in Drupal Code Driven Development
First Steps in Drupal Code Driven Development
 
Better editorial experience in Drupal 7
Better editorial experience in Drupal 7Better editorial experience in Drupal 7
Better editorial experience in Drupal 7
 
Putting "Phings" together - how to automate your life
Putting "Phings" together - how to automate your lifePutting "Phings" together - how to automate your life
Putting "Phings" together - how to automate your life
 
Large Scale Drupal - Behind the Scenes
Large Scale Drupal - Behind the ScenesLarge Scale Drupal - Behind the Scenes
Large Scale Drupal - Behind the Scenes
 
Scaling drupal horizontally and in cloud
Scaling drupal horizontally and in cloudScaling drupal horizontally and in cloud
Scaling drupal horizontally and in cloud
 
Memcache and Drupal - Vaibhav Jain
Memcache and Drupal - Vaibhav JainMemcache and Drupal - Vaibhav Jain
Memcache and Drupal - Vaibhav Jain
 
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
 
Drupal Continuous Integration with Jenkins - The Basics
Drupal Continuous Integration with Jenkins - The BasicsDrupal Continuous Integration with Jenkins - The Basics
Drupal Continuous Integration with Jenkins - The Basics
 
Successes and Challenges When Managing Large Scale Drupal Projects
Successes and Challenges When Managing Large Scale Drupal ProjectsSuccesses and Challenges When Managing Large Scale Drupal Projects
Successes and Challenges When Managing Large Scale Drupal Projects
 

Similaire à Scale Conference "Intro to Drupal" Douglas C. Hoffman

Build Custom Surveys and Forms Natively in Drupal Gardens
Build Custom Surveys and Forms Natively in Drupal GardensBuild Custom Surveys and Forms Natively in Drupal Gardens
Build Custom Surveys and Forms Natively in Drupal Gardens
Acquia
 
Drupal Gardens Overview
Drupal Gardens OverviewDrupal Gardens Overview
Drupal Gardens Overview
Acquia
 

Similaire à Scale Conference "Intro to Drupal" Douglas C. Hoffman (20)

Drupal
DrupalDrupal
Drupal
 
Brief Intro to Drupal
Brief Intro to DrupalBrief Intro to Drupal
Brief Intro to Drupal
 
Build Custom Surveys and Forms Natively in Drupal Gardens
Build Custom Surveys and Forms Natively in Drupal GardensBuild Custom Surveys and Forms Natively in Drupal Gardens
Build Custom Surveys and Forms Natively in Drupal Gardens
 
History of Drupal: From Drop 1.0 to Drupal 8
History of Drupal: From Drop 1.0 to Drupal 8History of Drupal: From Drop 1.0 to Drupal 8
History of Drupal: From Drop 1.0 to Drupal 8
 
Drupal
DrupalDrupal
Drupal
 
Beyond the Beginner - Path Ways to Advanced Drupal Levels & Businesses
Beyond the Beginner - Path Ways to Advanced Drupal Levels & BusinessesBeyond the Beginner - Path Ways to Advanced Drupal Levels & Businesses
Beyond the Beginner - Path Ways to Advanced Drupal Levels & Businesses
 
Drupal Experience Sharing at Prime College
Drupal Experience Sharing at Prime CollegeDrupal Experience Sharing at Prime College
Drupal Experience Sharing at Prime College
 
Drupal Experience Sharing At Prime College
Drupal Experience Sharing At Prime CollegeDrupal Experience Sharing At Prime College
Drupal Experience Sharing At Prime College
 
DrupalCon Austin - Absolute Beginner's Guide to Drupal
DrupalCon Austin - Absolute Beginner's Guide to DrupalDrupalCon Austin - Absolute Beginner's Guide to Drupal
DrupalCon Austin - Absolute Beginner's Guide to Drupal
 
Drupal an introduction
Drupal an introductionDrupal an introduction
Drupal an introduction
 
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Intro
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal IntroDrupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Intro
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Intro
 
DrupalCon Chicago 2011 ReportBack (11/03/30 - G. Bedford)
DrupalCon Chicago 2011 ReportBack (11/03/30 - G. Bedford)DrupalCon Chicago 2011 ReportBack (11/03/30 - G. Bedford)
DrupalCon Chicago 2011 ReportBack (11/03/30 - G. Bedford)
 
Drupal Workshop
Drupal WorkshopDrupal Workshop
Drupal Workshop
 
Drupal introduction
Drupal introductionDrupal introduction
Drupal introduction
 
Why and When to use Drupal by Luc Bezier - Drupalcamp Cebu 2018
Why and When to use Drupal by Luc Bezier - Drupalcamp Cebu 2018Why and When to use Drupal by Luc Bezier - Drupalcamp Cebu 2018
Why and When to use Drupal by Luc Bezier - Drupalcamp Cebu 2018
 
Absolute Beginners Guide to Drupal
Absolute Beginners Guide to DrupalAbsolute Beginners Guide to Drupal
Absolute Beginners Guide to Drupal
 
Drupal4uic 2008 04 25
Drupal4uic 2008 04 25Drupal4uic 2008 04 25
Drupal4uic 2008 04 25
 
Drupal Gardens Overview
Drupal Gardens OverviewDrupal Gardens Overview
Drupal Gardens Overview
 
What is Drupal? And Why is it Useful? Webinar
What is Drupal? And Why is it Useful? WebinarWhat is Drupal? And Why is it Useful? Webinar
What is Drupal? And Why is it Useful? Webinar
 
Drupal distros - Tweaks at eotw
Drupal distros - Tweaks at eotwDrupal distros - Tweaks at eotw
Drupal distros - Tweaks at eotw
 

Dernier

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
 

Dernier (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
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...
 
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
 

Scale Conference "Intro to Drupal" Douglas C. Hoffman