SlideShare una empresa de Scribd logo
1 de 23
Descargar para leer sin conexión
Drupal   VS   WordPress




Walter Ebert
http://www.schipulcon.com/photos/841/in/9/
http://news.deviousmedia.com/which-open-source-backend-platform-suits-your
Top 6 Publishing Systeme in Europa
 ●   Platz 1 WordPress: 429.766 Installationen
 ●   Platz 2 Joomla!: 358.935 Installationen
 ●   Platz 3 publishme.se: 246.863 Installationen
 ●   Platz 4 FrontPage: 161.888 Installationen
 ●   Platz 5 TYPO3: 145.414 Installationen
 ●   Platz 6 Drupal: 67.496 Installationen




http://t3n.de/news/cmscrawlercom-veroffentlicht-womit-europa-347717/
http://www.drupalgardens.com/




http://wordpress.com/
http://www.microsoft.com/web/webmatrix/
GNU General Public License, version 2
               GPLv2
System Requirements

Drupal                        WordPress
●   PHP 5.2.5                 ●   PHP 5.2.4
●   MySQL, PostgreSQL,        ●   MySQL
    SQLite (MS SQL, Oracle)
Programmierung mit
      Hooks

    anstatt von
       OOP
Hooks

Drupal                                     WordPress
function hook_init() {                     function spam_friends( $post_ID ) {
  if (drupal_is_front_page()) {              $friends = 'bob@mail.me,susi@mail.me';
    drupal_add_css(                          wp_mail(
      drupal_get_path('module', 'foo') .        $friends,
      '/foo.css');                              'Update',
  }                                             'I just updated my blog'
}                                            );

                                             return $post_ID;
                                           }
                                           add_action('publish_post','spam_friends');

                                           Mittels anonieme Funktionen (PHP5.3):
                                           add_action('wp_head', function() {
                                             echo 'something';
                                           });

                                           add_filter('the_title', function($title) {
                                             return '<b>'. $title. '</b>';
                                           });
Dashboard

Drupal      WordPress
„Frontend“

Drupal       WordPress
Inhalte

Drupal         WordPress
●   Nodes      ●   Posts
●   Entities
Inhaltstypen

Drupal         WordPress
               add_action( 'init', 'create_post_type' );

               function create_post_type() {
                 register_post_type( 'acme_product',
                    array(
                       'labels' => array(
                          'name' => __( 'Products' ),
                          'singular_name' => __( 'Product' )
                       ),
                    'public' => true,
                    'has_archive' => true,
                    )
                 );
               }
Theming

Drupal                          WordPress




http://drupal.org/node/171194   http://yoast.com/wordpress-theme-anatomy/
Theming

Drupal Konfiguration                          WordPress
                                                                  Konvention
bartik.info                                   style.css           (+ programmierung)
name = Bartik                                 /*
description = A flexible, recolorable theme   Theme Name: Twenty Eleven
with many regions.                            Theme URI:
package = Core                                http://wordpress.org/extend/themes/twentyeleven
version = VERSION                             Author: the WordPress team
core = 7.x                                    Author URI: http://wordpress.org/
                                              Description: The 2011 theme for WordPress ...
stylesheets[all][] =   css/layout.css         Version: 1.2
stylesheets[all][] =   css/style.css          License: GNU General Public License
stylesheets[all][] =   css/colors.css         License URI: license.txt
stylesheets[print][]   = css/print.css        Tags: dark, light, white, black, gray, ...
                                              */
regions[header] = Header
regions[help] = Help                          html, body, div, span, applet, object, iframe,
regions[page_top] = Page top                  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
regions[page_bottom] = Page bottom            a, abbr, acronym, address, big, cite, code,
regions[highlighted] = Highlighted            del, dfn, em, font, ins, kbd, q, s, samp,
                                              small, strike, strong, sub, sup, tt, var,
regions[featured] = Featured                  dl, dt, dd, ol, ul, li,
regions[content] = Content                    fieldset, form, label, legend,
regions[sidebar_first] = Sidebar first        table, caption, tbody, tfoot, thead, tr, th, td {
Themes

Drupal   WordPress
Fields

Drupal   WordPress
Erweiterungen

Drupal          WordPress
Benutzerverwaltung

Drupal               WordPress
Entwicklung

Drupal                       WordPress
●   drupal.org               ●   wordpress.org
●   Repository: Git          ●   Repository: Das Internet
                                 aber offiziell Subversion
●   Vollständige
    Dokumentation            ●   Ausgiebige
●   Übersetzungen: Gettext       Dokumentation
                             ●   Übersetzungen: Gettext
http://drupal.org/user/5665
Walter Ebert

        @wltrd
  www.walterebert.de
 drupal.org/user/699574
searchmeetupfrankfurt.de

Más contenido relacionado

La actualidad más candente

Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minsChandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
wpnepal
 
Worcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsWorcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20mins
Chandra Prakash Thapa
 
Huong dan cai dat hadoop
Huong dan cai dat hadoopHuong dan cai dat hadoop
Huong dan cai dat hadoop
Quỳnh Phan
 
My sql presentation
My sql presentationMy sql presentation
My sql presentation
Nikhil Jain
 
Puppet Camp Amsterdam 2015: Manifests of Future Past
Puppet Camp Amsterdam 2015: Manifests of Future PastPuppet Camp Amsterdam 2015: Manifests of Future Past
Puppet Camp Amsterdam 2015: Manifests of Future Past
Puppet
 

La actualidad más candente (20)

The Origin of Lithium
The Origin of LithiumThe Origin of Lithium
The Origin of Lithium
 
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minsChandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
 
How to use MongoDB with CakePHP
How to use MongoDB with CakePHPHow to use MongoDB with CakePHP
How to use MongoDB with CakePHP
 
Worcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsWorcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20mins
 
Let's write secure Drupal code! - DrupalCamp Oslo, 2018
Let's write secure Drupal code! - DrupalCamp Oslo, 2018Let's write secure Drupal code! - DrupalCamp Oslo, 2018
Let's write secure Drupal code! - DrupalCamp Oslo, 2018
 
Firefox addons
Firefox addonsFirefox addons
Firefox addons
 
[WLDN] Supercharging word press development in 2018
[WLDN] Supercharging word press development in 2018[WLDN] Supercharging word press development in 2018
[WLDN] Supercharging word press development in 2018
 
Introducción rápida a SQL
Introducción rápida a SQLIntroducción rápida a SQL
Introducción rápida a SQL
 
Let's write secure Drupal code! - Drupal Camp Poland 2019
Let's write secure Drupal code! - Drupal Camp Poland 2019Let's write secure Drupal code! - Drupal Camp Poland 2019
Let's write secure Drupal code! - Drupal Camp Poland 2019
 
Lithium: The Framework for People Who Hate Frameworks
Lithium: The Framework for People Who Hate FrameworksLithium: The Framework for People Who Hate Frameworks
Lithium: The Framework for People Who Hate Frameworks
 
WordPress Cuztom Helper
WordPress Cuztom HelperWordPress Cuztom Helper
WordPress Cuztom Helper
 
Drupal module development
Drupal module developmentDrupal module development
Drupal module development
 
Huong dan cai dat hadoop
Huong dan cai dat hadoopHuong dan cai dat hadoop
Huong dan cai dat hadoop
 
Lithium Best
Lithium Best Lithium Best
Lithium Best
 
My sql presentation
My sql presentationMy sql presentation
My sql presentation
 
Let's write secure drupal code! - Drupal Camp Pannonia 2019
Let's write secure drupal code! - Drupal Camp Pannonia 2019Let's write secure drupal code! - Drupal Camp Pannonia 2019
Let's write secure drupal code! - Drupal Camp Pannonia 2019
 
Building Lithium Apps
Building Lithium AppsBuilding Lithium Apps
Building Lithium Apps
 
Drupal Module Development
Drupal Module DevelopmentDrupal Module Development
Drupal Module Development
 
Puppet Camp Amsterdam 2015: Manifests of Future Past
Puppet Camp Amsterdam 2015: Manifests of Future PastPuppet Camp Amsterdam 2015: Manifests of Future Past
Puppet Camp Amsterdam 2015: Manifests of Future Past
 
Resource Routing in ExpressionEngine
Resource Routing in ExpressionEngineResource Routing in ExpressionEngine
Resource Routing in ExpressionEngine
 

Similar a Drupal vs WordPress

Laying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme developmentLaying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme development
Tammy Hart
 
10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)
10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)
10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)
arcware
 

Similar a Drupal vs WordPress (20)

Debugging in drupal 8
Debugging in drupal 8Debugging in drupal 8
Debugging in drupal 8
 
Childthemes ottawa-word camp-1919
Childthemes ottawa-word camp-1919Childthemes ottawa-word camp-1919
Childthemes ottawa-word camp-1919
 
Laying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme developmentLaying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme development
 
Supercharging WordPress Development in 2018
Supercharging WordPress Development in 2018Supercharging WordPress Development in 2018
Supercharging WordPress Development in 2018
 
D7 theming what's new - London
D7 theming what's new - LondonD7 theming what's new - London
D7 theming what's new - London
 
8 things to know about theming in drupal 8
8 things to know about theming in drupal 88 things to know about theming in drupal 8
8 things to know about theming in drupal 8
 
Как получить чёрный пояс по WordPress?
Как получить чёрный пояс по WordPress?Как получить чёрный пояс по WordPress?
Как получить чёрный пояс по WordPress?
 
Drupal Module Development - OSI Days 2010
Drupal Module Development - OSI Days 2010Drupal Module Development - OSI Days 2010
Drupal Module Development - OSI Days 2010
 
Drupal 8 Hooks
Drupal 8 HooksDrupal 8 Hooks
Drupal 8 Hooks
 
The Way to Theme Enlightenment
The Way to Theme EnlightenmentThe Way to Theme Enlightenment
The Way to Theme Enlightenment
 
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?
 
関西PHP勉強会 php5.4つまみぐい
関西PHP勉強会 php5.4つまみぐい関西PHP勉強会 php5.4つまみぐい
関西PHP勉強会 php5.4つまみぐい
 
Drupal Camp Porto - Developing with Drupal: First Steps
Drupal Camp Porto - Developing with Drupal: First StepsDrupal Camp Porto - Developing with Drupal: First Steps
Drupal Camp Porto - Developing with Drupal: First Steps
 
Tornadoweb
TornadowebTornadoweb
Tornadoweb
 
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014 (PPT)
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014 (PPT)Hardcore URL Routing for WordPress - WordCamp Atlanta 2014 (PPT)
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014 (PPT)
 
Php on the desktop and php gtk2
Php on the desktop and php gtk2Php on the desktop and php gtk2
Php on the desktop and php gtk2
 
Drupal 7 Theming - Behind the scenes
Drupal 7 Theming - Behind the scenes Drupal 7 Theming - Behind the scenes
Drupal 7 Theming - Behind the scenes
 
Zend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_ToolZend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_Tool
 
The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017
 
10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)
10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)
10 Things Every Plugin Developer Should Know (WordCamp Atlanta 2013)
 

Más de Walter Ebert

Más de Walter Ebert (20)

FrOSCon 2023: WordPress als ActivityPub-Instanz
FrOSCon 2023: WordPress als ActivityPub-InstanzFrOSCon 2023: WordPress als ActivityPub-Instanz
FrOSCon 2023: WordPress als ActivityPub-Instanz
 
Hero Video Performance - DrupalCamp Ruhr
Hero Video Performance - DrupalCamp RuhrHero Video Performance - DrupalCamp Ruhr
Hero Video Performance - DrupalCamp Ruhr
 
Sicherheit für WordPress
Sicherheit für WordPressSicherheit für WordPress
Sicherheit für WordPress
 
WordPress aufräumen - WordCamp Stuttgart
WordPress aufräumen - WordCamp StuttgartWordPress aufräumen - WordCamp Stuttgart
WordPress aufräumen - WordCamp Stuttgart
 
WordPress aufräumen
WordPress aufräumenWordPress aufräumen
WordPress aufräumen
 
Hero Video Performance
Hero Video PerformanceHero Video Performance
Hero Video Performance
 
WordPress-Webseiten umziehen / online stellen
WordPress-Webseiten umziehen / online stellenWordPress-Webseiten umziehen / online stellen
WordPress-Webseiten umziehen / online stellen
 
Using browser settings for performance
Using browser settings for performanceUsing browser settings for performance
Using browser settings for performance
 
Das richtige WordPress-Theme finden
Das richtige WordPress-Theme findenDas richtige WordPress-Theme finden
Das richtige WordPress-Theme finden
 
WordPress Health Check - WordCamp Würzburg
WordPress Health Check - WordCamp WürzburgWordPress Health Check - WordCamp Würzburg
WordPress Health Check - WordCamp Würzburg
 
WordPress Health Check
WordPress Health CheckWordPress Health Check
WordPress Health Check
 
Making WordPress fast(er)
Making WordPress fast(er)Making WordPress fast(er)
Making WordPress fast(er)
 
Testumgebungen für WordPress
Testumgebungen für WordPressTestumgebungen für WordPress
Testumgebungen für WordPress
 
Modernism in Web Design
Modernism in Web DesignModernism in Web Design
Modernism in Web Design
 
WordPress Multisite
WordPress MultisiteWordPress Multisite
WordPress Multisite
 
Weniger aus Bilder holen
Weniger aus Bilder holenWeniger aus Bilder holen
Weniger aus Bilder holen
 
WordPress mit Composer und Git verwalten
WordPress mit Composer und Git verwaltenWordPress mit Composer und Git verwalten
WordPress mit Composer und Git verwalten
 
High Performance Images
High Performance ImagesHigh Performance Images
High Performance Images
 
HTTPS + Let's Encrypt
HTTPS + Let's EncryptHTTPS + Let's Encrypt
HTTPS + Let's Encrypt
 
WordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFMWordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFM
 

Último

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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

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
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
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...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
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...
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
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...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 

Drupal vs WordPress

  • 1. Drupal VS WordPress Walter Ebert
  • 4. Top 6 Publishing Systeme in Europa ● Platz 1 WordPress: 429.766 Installationen ● Platz 2 Joomla!: 358.935 Installationen ● Platz 3 publishme.se: 246.863 Installationen ● Platz 4 FrontPage: 161.888 Installationen ● Platz 5 TYPO3: 145.414 Installationen ● Platz 6 Drupal: 67.496 Installationen http://t3n.de/news/cmscrawlercom-veroffentlicht-womit-europa-347717/
  • 7. GNU General Public License, version 2 GPLv2
  • 8. System Requirements Drupal WordPress ● PHP 5.2.5 ● PHP 5.2.4 ● MySQL, PostgreSQL, ● MySQL SQLite (MS SQL, Oracle)
  • 9. Programmierung mit Hooks anstatt von OOP
  • 10. Hooks Drupal WordPress function hook_init() { function spam_friends( $post_ID ) { if (drupal_is_front_page()) { $friends = 'bob@mail.me,susi@mail.me'; drupal_add_css( wp_mail( drupal_get_path('module', 'foo') . $friends, '/foo.css'); 'Update', } 'I just updated my blog' } ); return $post_ID; } add_action('publish_post','spam_friends'); Mittels anonieme Funktionen (PHP5.3): add_action('wp_head', function() { echo 'something'; }); add_filter('the_title', function($title) { return '<b>'. $title. '</b>'; });
  • 11. Dashboard Drupal WordPress
  • 13. Inhalte Drupal WordPress ● Nodes ● Posts ● Entities
  • 14. Inhaltstypen Drupal WordPress add_action( 'init', 'create_post_type' ); function create_post_type() { register_post_type( 'acme_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true, ) ); }
  • 15. Theming Drupal WordPress http://drupal.org/node/171194 http://yoast.com/wordpress-theme-anatomy/
  • 16. Theming Drupal Konfiguration WordPress Konvention bartik.info style.css (+ programmierung) name = Bartik /* description = A flexible, recolorable theme Theme Name: Twenty Eleven with many regions. Theme URI: package = Core http://wordpress.org/extend/themes/twentyeleven version = VERSION Author: the WordPress team core = 7.x Author URI: http://wordpress.org/ Description: The 2011 theme for WordPress ... stylesheets[all][] = css/layout.css Version: 1.2 stylesheets[all][] = css/style.css License: GNU General Public License stylesheets[all][] = css/colors.css License URI: license.txt stylesheets[print][] = css/print.css Tags: dark, light, white, black, gray, ... */ regions[header] = Header regions[help] = Help html, body, div, span, applet, object, iframe, regions[page_top] = Page top h1, h2, h3, h4, h5, h6, p, blockquote, pre, regions[page_bottom] = Page bottom a, abbr, acronym, address, big, cite, code, regions[highlighted] = Highlighted del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, regions[featured] = Featured dl, dt, dd, ol, ul, li, regions[content] = Content fieldset, form, label, legend, regions[sidebar_first] = Sidebar first table, caption, tbody, tfoot, thead, tr, th, td {
  • 17. Themes Drupal WordPress
  • 18. Fields Drupal WordPress
  • 19. Erweiterungen Drupal WordPress
  • 21. Entwicklung Drupal WordPress ● drupal.org ● wordpress.org ● Repository: Git ● Repository: Das Internet aber offiziell Subversion ● Vollständige Dokumentation ● Ausgiebige ● Übersetzungen: Gettext Dokumentation ● Übersetzungen: Gettext
  • 23. Walter Ebert @wltrd www.walterebert.de drupal.org/user/699574 searchmeetupfrankfurt.de