SlideShare a Scribd company logo
Drupal Code: Day 1
where am i, and how did i get all these arrays
Hi. I’m eaton.
Drupal Development
Drupal is...




http://www.flickr.com/photos/druclimb/282597447/
Drupal is...




                                      Drupal Core



http://www.flickr.com/photos/druclimb/282597447/
Drupal is...



                                                       Node
                                      Drupal Core
                                                       User

http://www.flickr.com/photos/druclimb/282597447/
Drupal is...

                          Views                   Five Star   CCK


                                                              Node
                                      Drupal Core
                                                              User

http://www.flickr.com/photos/druclimb/282597447/
Drupal is...
                                                  Theme


                          Views                   Five Star   CCK


                                                              Node
                                      Drupal Core
                                                              User

http://www.flickr.com/photos/druclimb/282597447/
Drupal is...
                                                  Theme


                          Views                   Five Star   CCK


                                                              Node
                                      Drupal Core
                                                              User

http://www.flickr.com/photos/druclimb/282597447/
name = Demo
description = Just a simple demo module.
core = 6.x

function demo_nodeapi(&$node, $op) {
  global $user;
  if ($op == ‘view’) {
    if ($node->uid == $user->uid) {
      $node->title . ‘ [YOUR ARTICLE]’;
    }
  }
}




       demo.info       demo.module
name = Tricky
description = A slightly trickier module.
core = 6.x

function tricky_form_alter(&form, $form_state, $id) {
  if ($id == ‘node_form’) {
    $title[‘#required’] = FALSE;
  }
}

function tricky_install() {
  drupal_set_message(‘You just installed Tricky!’);
}




  tricky.info     tricky.module       tricky.install
views.info   views.module      views.inc         user.inc         node.inc       blog.inc




comment.inc      ui.info       ui.module        arguments.inc    handlers.inc     filters.inc




 query.inc     sprout.info   sprout.module        forum.inc     views.pages.inc   table.inc




views.install sprout.install sprout.admin.inc    sprout.inc     CHANGELOG         README
views.info   views.module      views.inc         user.inc         node.inc       blog.inc




comment.inc      ui.info       ui.module        arguments.inc    handlers.inc     filters.inc




 query.inc     sprout.info   sprout.module        forum.inc     views.pages.inc   table.inc




views.install sprout.install sprout.admin.inc    sprout.inc     CHANGELOG         README
views.info   views.module      views.inc         user.inc         node.inc       blog.inc




comment.inc      ui.info       ui.module        arguments.inc    handlers.inc     filters.inc




 query.inc     sprout.info   sprout.module        forum.inc     views.pages.inc   table.inc




views.install sprout.install sprout.admin.inc    sprout.inc     CHANGELOG         README
under
                                                  the hood
http://www.flickr.com/photos/sprakope/143770402/
I’d like welcome.html!
I’d like welcome.html!
I’ll go get that html file!
I’ll go get that html file!
I’ll go get that html file!
      .htaccess says to check…
         index.php?q=welcome.html
Index.php? I’ve got that.
Index.php? I’ve got that.


          bootstrap.inc menu.inc   random




             mysql       user
Here are all my URLs…
function mymodule_menu() {
     $items['about'] = array(
      'title' => 'About us',
      'description' => 'A description of us.',
      'page callback' => 'mymodule_about',
      'access arguments' => array('access content'),
     );
     return $items;
   }



Here are all my URLs…
function mymodule_menu() {
     $items['about'] = array(
      'title' => 'About us',
      'description' => 'A description of us.',
      'page callback' => 'mymodule_about',
      'access arguments' => array('access content'),
     );
     return $items;
   }



Here are all my URLs…
What’s the best match?
What’s the best match?
      Is welcome.html an alias?
        Does anyone handle the path?
          Does the user have access?
I’ll build the contents.
function mymodule_about($subpage = ‘legal’) {
     if ($subpage == ‘legal’) {
       return “We don’t have lawyers yet.”;
     }
     if ($subpage == ‘welcome’) {
       return “Welcome to our web site!”;
     }
   }



I’ll build the contents.
function mymodule_about($subpage = ‘legal’) {
     if ($subpage == ‘legal’) {
       return “We don’t have lawyers yet.”;
     }
     if ($subpage == ‘welcome’) {
       return “Welcome to our web site!”;
     }
   }



I’ll build the contents.
I’ll take that HTML...
I’ll take that HTML...
I’ll take that HTML...
I’ll take that HTML...
Here’s index.php…
     Eh, looks like welcome.html…
don’t                            use a
                 hack.                            hook!


http://www.flickr.com/photos/lanier67/185311136/
Drupal Development
A list of content types
 A user is           is being built
registering
      A node is being   Content is being
         displayed         searched

The menu is                 Links are being
 being built                   displayed
          The database is
           being queried A comment is
                          being posted
   A form is being
      processed
module_invoke_all(‘foo’)
yourmodule_foo()
theirmodule_foo()
         mymodule_foo()
    yourmodule_foo()
hismodule_foo()
       hermodule_foo()
function demo_nodeapi(&$node, $op) {
  global $user;
  if ($op == ‘view’ && $node->uid == $user->uid) {
    $node->title . ‘ [YOUR ARTICLE]’;
  }
}


function demo_form_alter(&form, $form_state, $id) {
  if ($id == ‘node_form’) {
    $title[‘#required’] = FALSE;
  }
}
Drupal Development
i
i

    ?
i

    ?
i

    ?
i
    All w i t h o u t
  h a ng ing Dr u p a l’s
c
      o w n c o de !
                     ?
Don’t. Hack. Core.
Don’t. Hack. Core.
let’s see
                                                    a module!
http://www.flickr.com/photos/gonzales2010/8632116/
name = Birthday
description = Wishes users a happy birthday.
requirements[] = user
core = 6.x
name = Birthday
description = Wishes users a happy birthday.
requirements[] = user
core = 6.x
/**
 * Allows users to save their birthday,
 * and congratulates them on the big day.
 */

function birthday_menu() {
  $items['admin/settings/birthdays'] = array(
   'title' => 'Birthday settings',
   'description' => 'Settings for birthdays.',
   'page callback' => 'birthday_page',
   'access arguments' => array('administer users'),
  );
  return $items;
}

function birthday_page() {
  return drupal_get_form('birthday_form');
}
/**
 * Allows users to save their birthday,
 * and congratulates them on the big day.
 */

function birthday_menu() {
  $items['admin/settings/birthdays'] = array(
   'title' => 'Birthday settings',
   'description' => 'Settings for birthdays.',
   'page callback' => 'birthday_page',
   'access arguments' => array('administer users'),
  );
  return $items;
}

function birthday_page() {
  return drupal_get_form('birthday_form');
}
function birthday_form() {
  $form['birthday_age'] = array(
   '#type' => 'checkbox',
   '#title' => t(quot;Show users how old they are.quot;),
   '#default_value' => variable_get('age', TRUE),
  );
  $form['submit'] = array(
   '#type' => 'submit',
   '#value' => t('Save settings'),
  );
  return $form;
}

function birthday_form_submit($form, $form_state) {
  $values = $form_state['values'];
  variable_set('age', $values['birthday_age']);
  drupal_set_message(t('Birthday settings saved.'));
}
function birthday_form() {
  $form['birthday_age'] = array(
   '#type' => 'checkbox',
   '#title' => t(quot;Show users how old they are.quot;),
   '#default_value' => variable_get('age', TRUE),
  );
  $form['submit'] = array(
   '#type' => 'submit',
   '#value' => t('Save settings'),
  );
  return $form;
}

function birthday_form_submit($form, $form_state) {
  $values = $form_state['values'];
  variable_set('age', $values['birthday_age']);
  drupal_set_message(t('Birthday settings saved.'));
}
function birthday_user($op, &$edit, &$account) {
  if ($op == 'view' && $day = $account->birthday) {
    $timestamp = mktime(0, 0, 0,
          $day['month'], $day['day'], $day['year']);
    $account->content['birthday'] = array(
     '#type' => 'item',
     '#title' => t('Birthday'),
     '#value' => date('l, F jS, Y', $timestamp));
  }
  elseif ($op == 'form') {
    $form['birthday'] = array(
     '#type' => 'date',
     '#title' => t('Birthday'),
     '#default_value' => $account->birthday);
    return $form;
  }
}
function birthday_user($op, &$edit, &$account) {
  if ($op == 'view' && $day = $account->birthday) {
    $timestamp = mktime(0, 0, 0,
          $day['month'], $day['day'], $day['year']);
    $account->content['birthday'] = array(
     '#type' => 'item',
     '#title' => t('Birthday'),
     '#value' => date('l, F jS, Y', $timestamp));
  }
  elseif ($op == 'form') {
    $form['birthday'] = array(
     '#type' => 'date',
     '#title' => t('Birthday'),
     '#default_value' => $account->birthday);
    return $form;
  }
}
function birthday_user($op, &$edit, &$account) {
  if ($op == 'view' && $day = $account->birthday) {
    $timestamp = mktime(0, 0, 0,
          $day['month'], $day['day'], $day['year']);
    $account->content['birthday'] = array(
     '#type' => 'item',
     '#title' => t('Birthday'),
     '#value' => date('l, F jS, Y', $timestamp));
  }
  elseif ($op == 'form') {
    $form['birthday'] = array(
     '#type' => 'date',
     '#title' => t('Birthday'),
     '#default_value' => $account->birthday);
    return $form;
  }
}
function birthday_block($op = 'list') {
 global $user;
   if ($op == 'list') {
   $block['congrats']['info'] = t('Birthday');
   return $block;
 }
 elseif ($op == 'view' && $day = $user->birthday) {
   if ($day['month']==date('n') && $day['day']==date('j')) {
    $message = t(quot;It's your birthday! it's your birthday!quot;);
    if (variable_get('age', TRUE)) {
      $age = date('Y') - $day['year'];
      $message .= t(quot; You're %age.quot;, array('%age' => $age));
    }

         $block['subject'] = t('Happy birthday!');
         $block['content'] = $message . birthday_song();
         return $block;
     }
 }
}
function birthday_block($op = 'list') {
 global $user;
   if ($op == 'list') {
   $block['congrats']['info'] = t('Birthday');
   return $block;
 }
 elseif ($op == 'view' && $day = $user->birthday) {
   if ($day['month']==date('n') && $day['day']==date('j')) {
    $message = t(quot;It's your birthday! it's your birthday!quot;);
    if (variable_get('age', TRUE)) {
      $age = date('Y') - $day['year'];
      $message .= t(quot; You're %age.quot;, array('%age' => $age));
    }

         $block['subject'] = t('Happy birthday!');
         $block['content'] = $message . birthday_song();
         return $block;
     }
 }
}
function birthday_block($op = 'list') {
 global $user;
   if ($op == 'list') {
   $block['congrats']['info'] = t('Birthday');
   return $block;
 }
 elseif ($op == 'view' && $day = $user->birthday) {
   if ($day['month']==date('n') && $day['day']==date('j')) {
    $message = t(quot;It's your birthday! it's your birthday!quot;);
    if (variable_get('age', TRUE)) {
      $age = date('Y') - $day['year'];
      $message .= t(quot; You're %age.quot;, array('%age' => $age));
    }

         $block['subject'] = t('Happy birthday!');
         $block['content'] = $message . birthday_song();
         return $block;
     }
 }
}
function birthday_song() {
 $path = drupal_get_path('module', 'birthday');
 $path .= '/birthday.mid ';
 $output = '<embed src=quot;' . $path . 'quot;;
 $output .= ' autostart=quot;truequot; loop=quot;truequot;';
 $output .= ' width=quot;2quot; height=quot;0quot;></embed>';

 return $output;
}
function birthday_song() {
 $path = drupal_get_path('module', 'birthday');
 $path .= '/birthday.mid ';
 $output = '<embed src=quot;' . $path . 'quot;;
 $output .= ' autostart=quot;truequot; loop=quot;truequot;';
 $output .= ' width=quot;2quot; height=quot;0quot;></embed>';

 return $output;
}
http://www.flickr.com/photos/thomashawk/2681744739
drupal manages the page




                      http://www.flickr.com/photos/thomashawk/2681744739
drupal manages the page
        modules build the content




                       http://www.flickr.com/photos/thomashawk/2681744739
drupal manages the page
            modules build the content
modules also respond to events




                           http://www.flickr.com/photos/thomashawk/2681744739
drupal manages the page
            modules build the content
modules also respond to events
              hack with hooks




                           http://www.flickr.com/photos/thomashawk/2681744739
api.drupal.org
   tinyurl.com/drupal-code
tinyurl.com/drupal-kickstart
 tinyurl.com/drupal-rocking

More Related Content

Drupal Development

  • 1. Drupal Code: Day 1 where am i, and how did i get all these arrays
  • 5. Drupal is... Drupal Core http://www.flickr.com/photos/druclimb/282597447/
  • 6. Drupal is... Node Drupal Core User http://www.flickr.com/photos/druclimb/282597447/
  • 7. Drupal is... Views Five Star CCK Node Drupal Core User http://www.flickr.com/photos/druclimb/282597447/
  • 8. Drupal is... Theme Views Five Star CCK Node Drupal Core User http://www.flickr.com/photos/druclimb/282597447/
  • 9. Drupal is... Theme Views Five Star CCK Node Drupal Core User http://www.flickr.com/photos/druclimb/282597447/
  • 10. name = Demo description = Just a simple demo module. core = 6.x function demo_nodeapi(&$node, $op) { global $user; if ($op == ‘view’) { if ($node->uid == $user->uid) { $node->title . ‘ [YOUR ARTICLE]’; } } } demo.info demo.module
  • 11. name = Tricky description = A slightly trickier module. core = 6.x function tricky_form_alter(&form, $form_state, $id) { if ($id == ‘node_form’) { $title[‘#required’] = FALSE; } } function tricky_install() { drupal_set_message(‘You just installed Tricky!’); } tricky.info tricky.module tricky.install
  • 12. views.info views.module views.inc user.inc node.inc blog.inc comment.inc ui.info ui.module arguments.inc handlers.inc filters.inc query.inc sprout.info sprout.module forum.inc views.pages.inc table.inc views.install sprout.install sprout.admin.inc sprout.inc CHANGELOG README
  • 13. views.info views.module views.inc user.inc node.inc blog.inc comment.inc ui.info ui.module arguments.inc handlers.inc filters.inc query.inc sprout.info sprout.module forum.inc views.pages.inc table.inc views.install sprout.install sprout.admin.inc sprout.inc CHANGELOG README
  • 14. views.info views.module views.inc user.inc node.inc blog.inc comment.inc ui.info ui.module arguments.inc handlers.inc filters.inc query.inc sprout.info sprout.module forum.inc views.pages.inc table.inc views.install sprout.install sprout.admin.inc sprout.inc CHANGELOG README
  • 15. under the hood http://www.flickr.com/photos/sprakope/143770402/
  • 18. I’ll go get that html file!
  • 19. I’ll go get that html file!
  • 20. I’ll go get that html file! .htaccess says to check… index.php?q=welcome.html
  • 22. Index.php? I’ve got that. bootstrap.inc menu.inc random mysql user
  • 23. Here are all my URLs…
  • 24. function mymodule_menu() { $items['about'] = array( 'title' => 'About us', 'description' => 'A description of us.', 'page callback' => 'mymodule_about', 'access arguments' => array('access content'), ); return $items; } Here are all my URLs…
  • 25. function mymodule_menu() { $items['about'] = array( 'title' => 'About us', 'description' => 'A description of us.', 'page callback' => 'mymodule_about', 'access arguments' => array('access content'), ); return $items; } Here are all my URLs…
  • 27. What’s the best match? Is welcome.html an alias? Does anyone handle the path? Does the user have access?
  • 28. I’ll build the contents.
  • 29. function mymodule_about($subpage = ‘legal’) { if ($subpage == ‘legal’) { return “We don’t have lawyers yet.”; } if ($subpage == ‘welcome’) { return “Welcome to our web site!”; } } I’ll build the contents.
  • 30. function mymodule_about($subpage = ‘legal’) { if ($subpage == ‘legal’) { return “We don’t have lawyers yet.”; } if ($subpage == ‘welcome’) { return “Welcome to our web site!”; } } I’ll build the contents.
  • 31. I’ll take that HTML...
  • 32. I’ll take that HTML...
  • 33. I’ll take that HTML...
  • 34. I’ll take that HTML...
  • 35. Here’s index.php… Eh, looks like welcome.html…
  • 36. don’t use a hack. hook! http://www.flickr.com/photos/lanier67/185311136/
  • 38. A list of content types A user is is being built registering A node is being Content is being displayed searched The menu is Links are being being built displayed The database is being queried A comment is being posted A form is being processed
  • 41. theirmodule_foo() mymodule_foo() yourmodule_foo() hismodule_foo() hermodule_foo()
  • 42. function demo_nodeapi(&$node, $op) { global $user; if ($op == ‘view’ && $node->uid == $user->uid) { $node->title . ‘ [YOUR ARTICLE]’; } } function demo_form_alter(&form, $form_state, $id) { if ($id == ‘node_form’) { $title[‘#required’] = FALSE; } }
  • 44. i
  • 45. i ?
  • 46. i ?
  • 47. i ?
  • 48. i All w i t h o u t h a ng ing Dr u p a l’s c o w n c o de ! ?
  • 51. let’s see a module! http://www.flickr.com/photos/gonzales2010/8632116/
  • 52. name = Birthday description = Wishes users a happy birthday. requirements[] = user core = 6.x
  • 53. name = Birthday description = Wishes users a happy birthday. requirements[] = user core = 6.x
  • 54. /** * Allows users to save their birthday, * and congratulates them on the big day. */ function birthday_menu() { $items['admin/settings/birthdays'] = array( 'title' => 'Birthday settings', 'description' => 'Settings for birthdays.', 'page callback' => 'birthday_page', 'access arguments' => array('administer users'), ); return $items; } function birthday_page() { return drupal_get_form('birthday_form'); }
  • 55. /** * Allows users to save their birthday, * and congratulates them on the big day. */ function birthday_menu() { $items['admin/settings/birthdays'] = array( 'title' => 'Birthday settings', 'description' => 'Settings for birthdays.', 'page callback' => 'birthday_page', 'access arguments' => array('administer users'), ); return $items; } function birthday_page() { return drupal_get_form('birthday_form'); }
  • 56. function birthday_form() { $form['birthday_age'] = array( '#type' => 'checkbox', '#title' => t(quot;Show users how old they are.quot;), '#default_value' => variable_get('age', TRUE), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Save settings'), ); return $form; } function birthday_form_submit($form, $form_state) { $values = $form_state['values']; variable_set('age', $values['birthday_age']); drupal_set_message(t('Birthday settings saved.')); }
  • 57. function birthday_form() { $form['birthday_age'] = array( '#type' => 'checkbox', '#title' => t(quot;Show users how old they are.quot;), '#default_value' => variable_get('age', TRUE), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Save settings'), ); return $form; } function birthday_form_submit($form, $form_state) { $values = $form_state['values']; variable_set('age', $values['birthday_age']); drupal_set_message(t('Birthday settings saved.')); }
  • 58. function birthday_user($op, &$edit, &$account) { if ($op == 'view' && $day = $account->birthday) { $timestamp = mktime(0, 0, 0, $day['month'], $day['day'], $day['year']); $account->content['birthday'] = array( '#type' => 'item', '#title' => t('Birthday'), '#value' => date('l, F jS, Y', $timestamp)); } elseif ($op == 'form') { $form['birthday'] = array( '#type' => 'date', '#title' => t('Birthday'), '#default_value' => $account->birthday); return $form; } }
  • 59. function birthday_user($op, &$edit, &$account) { if ($op == 'view' && $day = $account->birthday) { $timestamp = mktime(0, 0, 0, $day['month'], $day['day'], $day['year']); $account->content['birthday'] = array( '#type' => 'item', '#title' => t('Birthday'), '#value' => date('l, F jS, Y', $timestamp)); } elseif ($op == 'form') { $form['birthday'] = array( '#type' => 'date', '#title' => t('Birthday'), '#default_value' => $account->birthday); return $form; } }
  • 60. function birthday_user($op, &$edit, &$account) { if ($op == 'view' && $day = $account->birthday) { $timestamp = mktime(0, 0, 0, $day['month'], $day['day'], $day['year']); $account->content['birthday'] = array( '#type' => 'item', '#title' => t('Birthday'), '#value' => date('l, F jS, Y', $timestamp)); } elseif ($op == 'form') { $form['birthday'] = array( '#type' => 'date', '#title' => t('Birthday'), '#default_value' => $account->birthday); return $form; } }
  • 61. function birthday_block($op = 'list') { global $user; if ($op == 'list') { $block['congrats']['info'] = t('Birthday'); return $block; } elseif ($op == 'view' && $day = $user->birthday) { if ($day['month']==date('n') && $day['day']==date('j')) { $message = t(quot;It's your birthday! it's your birthday!quot;); if (variable_get('age', TRUE)) { $age = date('Y') - $day['year']; $message .= t(quot; You're %age.quot;, array('%age' => $age)); } $block['subject'] = t('Happy birthday!'); $block['content'] = $message . birthday_song(); return $block; } } }
  • 62. function birthday_block($op = 'list') { global $user; if ($op == 'list') { $block['congrats']['info'] = t('Birthday'); return $block; } elseif ($op == 'view' && $day = $user->birthday) { if ($day['month']==date('n') && $day['day']==date('j')) { $message = t(quot;It's your birthday! it's your birthday!quot;); if (variable_get('age', TRUE)) { $age = date('Y') - $day['year']; $message .= t(quot; You're %age.quot;, array('%age' => $age)); } $block['subject'] = t('Happy birthday!'); $block['content'] = $message . birthday_song(); return $block; } } }
  • 63. function birthday_block($op = 'list') { global $user; if ($op == 'list') { $block['congrats']['info'] = t('Birthday'); return $block; } elseif ($op == 'view' && $day = $user->birthday) { if ($day['month']==date('n') && $day['day']==date('j')) { $message = t(quot;It's your birthday! it's your birthday!quot;); if (variable_get('age', TRUE)) { $age = date('Y') - $day['year']; $message .= t(quot; You're %age.quot;, array('%age' => $age)); } $block['subject'] = t('Happy birthday!'); $block['content'] = $message . birthday_song(); return $block; } } }
  • 64. function birthday_song() { $path = drupal_get_path('module', 'birthday'); $path .= '/birthday.mid '; $output = '<embed src=quot;' . $path . 'quot;; $output .= ' autostart=quot;truequot; loop=quot;truequot;'; $output .= ' width=quot;2quot; height=quot;0quot;></embed>'; return $output; }
  • 65. function birthday_song() { $path = drupal_get_path('module', 'birthday'); $path .= '/birthday.mid '; $output = '<embed src=quot;' . $path . 'quot;; $output .= ' autostart=quot;truequot; loop=quot;truequot;'; $output .= ' width=quot;2quot; height=quot;0quot;></embed>'; return $output; }
  • 67. drupal manages the page http://www.flickr.com/photos/thomashawk/2681744739
  • 68. drupal manages the page modules build the content http://www.flickr.com/photos/thomashawk/2681744739
  • 69. drupal manages the page modules build the content modules also respond to events http://www.flickr.com/photos/thomashawk/2681744739
  • 70. drupal manages the page modules build the content modules also respond to events hack with hooks http://www.flickr.com/photos/thomashawk/2681744739
  • 71. api.drupal.org tinyurl.com/drupal-code tinyurl.com/drupal-kickstart tinyurl.com/drupal-rocking

Editor's Notes

  1. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  2. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  3. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  4. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  5. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  6. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  7. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  8. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  9. Core - bootstrap, route incoming page requests to modules Modules - Build page content and respond to events Many third-party modules, some build on top of other modules Theme - Turn data from modules into HTML. We&#x2019;ll be concentrating on the module side of things today.
  10. This is a module. Two files, A few lines of code. In Drupal, that&#x2019;s all you need to customize the behavior of the system and add new functionality.
  11. A little more complicated. Shorter function, has an .install file.
  12. This is a module, too. Views, one of Drupal&#x2019;s most popular, contains over 400 files, over a meg of code and inline docs. Don&#x2019;t worry, there&#x2019;s a middle ground. We&#x2019;re going to cover what they have in common.
  13. This is a module, too. Views, one of Drupal&#x2019;s most popular, contains over 400 files, over a meg of code and inline docs. Don&#x2019;t worry, there&#x2019;s a middle ground. We&#x2019;re going to cover what they have in common.
  14. Part 1: user with a web browser makes a request. sends a URL, optionally a cookie. http://www.mysite.com/articles/welcome.html
  15. Apache intercepts the request. Possibly routes it to other servers What folder should I look in for foo.com? Normally, it would then check /articles for a welcome.html file and send it back. .htaccess turns foo.com/blah into foo.com/index.php?q=blah ...And PHP takes over.
  16. Apache intercepts the request. Possibly routes it to other servers What folder should I look in for foo.com? Normally, it would then check /articles for a welcome.html file and send it back. .htaccess turns foo.com/blah into foo.com/index.php?q=blah ...And PHP takes over.
  17. Apache intercepts the request. Possibly routes it to other servers What folder should I look in for foo.com? Normally, it would then check /articles for a welcome.html file and send it back. .htaccess turns foo.com/blah into foo.com/index.php?q=blah ...And PHP takes over.
  18. Apache intercepts the request. Possibly routes it to other servers What folder should I look in for foo.com? Normally, it would then check /articles for a welcome.html file and send it back. .htaccess turns foo.com/blah into foo.com/index.php?q=blah ...And PHP takes over.
  19. Bootstrap All page requests go through index.php (front-side controller) Bootstrap Drupal core, load essential includes What site am I running? connect to database Is there a cookie? Load the user. Now, ask for menu items...
  20. Bootstrap All page requests go through index.php (front-side controller) Bootstrap Drupal core, load essential includes What site am I running? connect to database Is there a cookie? Load the user. Now, ask for menu items...
  21. Bootstrap All page requests go through index.php (front-side controller) Bootstrap Drupal core, load essential includes What site am I running? connect to database Is there a cookie? Load the user. Now, ask for menu items...
  22. Bootstrap All page requests go through index.php (front-side controller) Bootstrap Drupal core, load essential includes What site am I running? connect to database Is there a cookie? Load the user. Now, ask for menu items...
  23. Bootstrap All page requests go through index.php (front-side controller) Bootstrap Drupal core, load essential includes What site am I running? connect to database Is there a cookie? Load the user. Now, ask for menu items...
  24. The module Why, yes! Here&#x2019;s a list of all the URLs I can handle. Explain each line. See api.drupal.org This is called a hook. We&#x2019;ll get to this later.
  25. The module Why, yes! Here&#x2019;s a list of all the URLs I can handle. Explain each line. See api.drupal.org This is called a hook. We&#x2019;ll get to this later.
  26. Traffic Cop Is welcome.html an SEO-friendly alias? (about/welcome vs. welcome.html) Find the best match. (about) Run access checks. Call the function, passing along unused pieces of the path
  27. Grunt work Module&#x2019;s function gets called. Extra params passed along. That&#x2019;s how node module works -- &#x2018;node&#x2019; plus a wildcard Can do anything now: print out JSON and exit(), etc. To build a normal page, build HTML and return it.
  28. Grunt work Module&#x2019;s function gets called. Extra params passed along. That&#x2019;s how node module works -- &#x2018;node&#x2019; plus a wildcard Can do anything now: print out JSON and exit(), etc. To build a normal page, build HTML and return it.
  29. Presentation Checks for 404, 403, and empty page. index.php now has the contents of the page. theme(&#x2018;page&#x2019;, $content) Sidebar blocks get loaded, the theme system is given a chance to add CSS and JS, etc.
  30. Presentation Checks for 404, 403, and empty page. index.php now has the contents of the page. theme(&#x2018;page&#x2019;, $content) Sidebar blocks get loaded, the theme system is given a chance to add CSS and JS, etc.
  31. Presentation Checks for 404, 403, and empty page. index.php now has the contents of the page. theme(&#x2018;page&#x2019;, $content) Sidebar blocks get loaded, the theme system is given a chance to add CSS and JS, etc.
  32. Oh, look. Welcome.html! Apache gets back the fully rendered HTML. Sweet. Document gets fired back to the user. The user&#x2019;s browser renders it -- and they click on the next link and the process starts all over again.
  33. Important detail: when drupal asked about menus and modules responded, we saw a hook. hooks are everywhere: when pieces of content load, when a db query is run, when a user logs in&#x2026; that&#x2019;s a drupal event. module_invoke_all(&#x2018;hook&#x2019;) => for modules()&#x2026; <name>_menu() Modules can create their own hooks just by calling module_invoke_all()
  34. As a Drupal page is built, events are firing nonstop.
  35. As a Drupal page is built, events are firing nonstop.
  36. As a Drupal page is built, events are firing nonstop.
  37. As a Drupal page is built, events are firing nonstop.
  38. As a Drupal page is built, events are firing nonstop.
  39. As a Drupal page is built, events are firing nonstop.
  40. As a Drupal page is built, events are firing nonstop.
  41. As a Drupal page is built, events are firing nonstop.
  42. As a Drupal page is built, events are firing nonstop.
  43. Hooks can announce what&#x2019;s going on Allow modules to answer questions Allow modules to extend functionality Allow modules to change existing workflows
  44. Hooks can announce what&#x2019;s going on Allow modules to answer questions Allow modules to extend functionality Allow modules to change existing workflows
  45. Hooks can announce what&#x2019;s going on Allow modules to answer questions Allow modules to extend functionality Allow modules to change existing workflows
  46. Hooks can announce what&#x2019;s going on Allow modules to answer questions Allow modules to extend functionality Allow modules to change existing workflows
  47. Hooks can announce what&#x2019;s going on Allow modules to answer questions Allow modules to extend functionality Allow modules to change existing workflows
  48. What does &#x201C;hacking core&#x201D; mean? Why is it bad?
  49. What does &#x201C;hacking core&#x201D; mean? Why is it bad?