Using Ajax in Drupal 6

6
Nov

John K. VanDyk confirmed that Pro Drupal Development 2nd edition will be published early this summer. I don’t know about you but in Montreal it sure does not look like summer. We’re still in the dead of winter, and it’s one snowstorm after another.Anywho, I got busy last night and, on a Drupal 6 install, I worked through chapter sweet seventeen of the Pro Drupal Development 1st edition book. The title of the chapter is "Using jQuery".(Hey, here is an idea for a thread: name the one computer book you’ve actually read from cover to cover in your life. My answer: Pro Drupal Development, and probably just a few other books.)You’ll find attached to this post a working digg-like module, so different from the Drupal-5-compliant one provided with the book, that I don’t believe I’ll receive any email about me committing some copyright law infringement.So here are the eight changes you should bring to the module plus1 to make it work in Drupal 6.But before we delve into this, here is something you should know. If you’ve worked through the example at the beginning of the chapter where we add jQuery code to a node, and you have not seen the first paragraph fade in as it did in Drupal 5, quiet your mind. Do not be alarmed. (I was quite flabbergasted when it happened to me.) You’ll have to first hide the paragraph. When you think about it... the fact that this worked as is with an earlier version of the jQuery library is... well, a bug.In Drupal 5, after adding the following to a node, you would see the first paragraph fade in:<?phpdrupal_add_js('$(document).ready(function(){ $("#one").fadeIn("slow"); });', 'inline' );?><p id="one">Paragraph one</p><p>Paragraph two</p><p>Paragraph three</p>In Drupal 6, you have to hide the paragraph first, then fade it in.<?phpdrupal_add_js('$(document).ready(function(){ $("#one").hide().fadeIn("slow"); });', 'inline' );?><p id="one">Paragraph one</p><p>Paragraph two</p><p>Paragraph three</p>Or you may harness the full power of jQuery by selecting the first paragraph of the node’s content, and make that paragraph fade in for the duration of 5 seconds, ie: 5000 ms.<?phpdrupal_add_js('$(document).ready(function(){ $(".content p:first").hide().fadeIn(5000); });', 'inline' );?><p>Paragraph one</p><p>Paragraph two</p><p>Paragraph three</p>On with the show.1. Open and edit your plus1.install file. Table creation for modules has been abstracted into a Schema API in Drupal 6.In Drupal 5, we created our table {plus_1} this way:<?php// $Id$/*** Implementation of hook_install().*/function plus1_install() {  switch ($GLOBALS['db_type']) {    case 'mysql':    case 'mysqli':      db_query("CREATE TABLE {plus1_vote} (        uid int NOT NULL default '0',        nid int NOT NULL default '0',        vote tinyint NOT NULL default '0',        created int NOT NULL default '0',        PRIMARY KEY (uid,nid),        KEY score (vote),        KEY nid (nid),        KEY uid (uid)      ) /*!40100 DEFAULT CHARACTER SET UTF8 */");      break;    case 'pgsql':      db_query("CREATE TABLE {plus1_vote} (        uid int NOT NULL default '0',        nid int NOT NULL default '0',        vote tinyint NOT NULL default '0',        created int NOT NULL default '0',        PRIMARY KEY (uid,nid)      );");      db_query("CREATE INDEX {plus1_vote}_score_idx ON {plus1_vote} (vote);");      db_query("CREATE INDEX {plus1_vote}_nid_idx ON {plus1_vote} (nid);");      db_query("CREATE INDEX {plus1_vote}_uid_idx ON {plus1_vote} (uid);");      break;  }}?>In Drupal 6, we do this instead:<?php// $Id$/*** Implementation of hook_install().*/function plus1_install() {  // Create tables.  drupal_install_schema('plus1');}/*** Implementation of hook_schema().*/function plus1_schema() {  $schema['plus1_vote'] = array(    'description' => t('The table used by the Plus1 module.'),    'fields' => array(      'uid' => array(        'description' => t('The primary identifier for the voter.'),        'type' => 'int',        'unsigned' => TRUE,        'not null' => TRUE),      'nid' => array(        'description' => t('The node that gets a vote.'),        'type' => 'int',        'unsigned' => TRUE,        'not null' => TRUE),      'vote' => array(        'description' => t('The vote.'),        'type' => 'int',        'size' => 'tiny',        'unsigned' => TRUE,        'not null' => TRUE),      'created' => array(        'description' => t('The timestamp of when the voter voted.'),        'type' => 'int',        'unsigned' => TRUE,        'not null' => TRUE)),    'primary key' => array(      'uid',      'nid'),    'indexes' => array(      'score' => array('vote')),  );  return $schema;}/*** Implementation of hook_uninstall().*/function plus1_uninstall() {  // Remove tables.  drupal_uninstall_schema('plus1');}?>Note that we’re creating a composite key as primary key. The voter and the node he votes for will always come in a unique combination. In other words, you can give a thumbs up only once for a any given content.2. We then modify our plus1.info file.In Drupal 5:name = Plus 1description = "A +1 voting widget for nodes. "version = "$Name$"In Drupal 6:; $Id$name = Plus 1description = "A +1 voting widget for nodes."core = 6.x('Version' is deprecated in Drupal 6.)3. We change our use of the menu hook in plus1.module.In Drupal 5 we had:/*** Implementation of hook_menu().*/function plus1_menu($may_cache) { $items = array(); if ($may_cache) { $items[] = array( 'path' => 'plus1/vote', 'callback' => 'plus1_vote', 'type' => MENU_CALLBACK, 'access' => user_access('rate content'), ); } return $items;}In Drupal 6, we do the following:/*** Implementation of hook_menu().*/function plus1_menu() { $items['plus1/vote/%'] = array( 'title' => 'Vote', 'page callback' => 'plus1_vote', // 'plus1' is the 0th arg. in the path, 'vote' is the 1st, // and the node id is the 2nd... // hence, we pass array(2) to 'page arguments' 'page arguments' => array(2), // where my wildcard is 'access arguments' => array('rate content'), // always use MENU_CALLBACK for ajax requests 'type' => MENU_CALLBACK, ); return $items;}?>Note that this symbol: % is a wildcard for the node hii-dee.4. We modify the callback function plus1_vote($nid).We have a new and improved way to write JSON in Drupal 6. We use the new function drupal_json($var = NULL). It sets the header for the JavaScript output to 'Content-Type: text/javascript; charset=utf-8'.In Drupal 5:/* This print statement will return results * to the jQuery's request. */print drupal_to_js(array( 'score' => $score, 'voted' => t('You voted'), ));In Drupal 6:/* This print statement will return results * to the jQuery's request. */print drupal_json(array( 'score' => $score, 'voted' => t('You voted'), ));5. We register our theme function.In Drupal 6, all modules must register all their theme functions via the new hook hook_theme().Therefore, we add the following function to our plus1.module file./*** Implementation of hook_theme().*/function plus1_theme() { return array( 'plus1_widget' => array( 'arguments' => array('nid', 'score', 'is_author', 'voted'), ), );}6. We modify our theme function theme_plus1_widget($nid, $score, $is_author, $voted) to account for the change in signature of the function l() in Drupal 6.In Drupal 5:<?php$output .= l(t('Vote'), "plus1/vote/$nid", array('class' => 'plus1-link'));?>?>In Drupal 6:<?php$output .= l(t('Vote'), "plus1/vote/$nid", array('attributes' => array('class' => 'plus1-link')));?>7. We thoroughly clean up our act when it comes to our jQuery.In the source code of our Drupal 5-compliant version, the file jquery.plus1.js contained this:// $Id$// Global killswitch: only run if we are in a supported browser.if (Drupal.jsEnabled) { $(document).ready(function(){ $('a.plus1-link').click(function(){ var voteSaved = function (data) { var result = Drupal.parseJson(data); $('div.score').fadeIn('slow').html(result['score']); $('div.vote').html(result['voted']); } $.get(this.href, null, voteSaved); return false; }); });}In Drupal 6, we will NOT use the method Drupal.parseJson — that function is deprecated in Drupal 6. We’ll use the jQuery.getJSON method instead.// $Id$// Global killswitch: only run if we are in a supported browser.if (Drupal.jsEnabled) { $(function(){ $('a.plus1-link').click(function(){ $.getJSON(this.href, function(json){ $('div.score').hide().fadeIn('slow').html(json.score); $('div.vote').html(json.voted); }); return false; }); });}8. Then we’ll go and read about this wonderful jQuery method jQuery.getJSON. For your convenience…This module has been committed to Drupal CVS. The link to the project page is http://drupal.org/project/plus1.Heshan Wanigasooriya

Share this
9.25
Average: 9.3 (4 votes)
Your rating: None

9 comments

4
Jul

 Really it is very hard to

8

 Really it is very hard to believe that it looked like winter in Montreal in summer. The weather doesn't stop surprising people. Many thanksfor the information. As for me, I've also found some nice tutorials : http://www.videorolls.com/watch/tutorials/27 . Usually they are very informative.

8
Jul

Hi there, I dont know if I am

Hi there, I dont know if I am writing in a proper board but I have got a problem with activation, link i receive in email is not working... http://www.heidisoft.com/?d5013679a51a24259f8f864fd0f,

30
Aug

`` Women in summer would like

``
Women in summer would like to become beautiful. Everything can grab other's eyes is their best friends.Products make them beauty and confident is their favourite. Look in the street,you can see many different types of make up to show women's personality.
Welcome to the shop, the following is our products, free shipping.
Soccer Shoes Cheap Soccer Shoes Nike Soccer Shoes Adidas Soccer Shoes Nike Soccer Shoes sale Adidas Soccer Shoes sale UGG UGGs UGG Boot UGG Boots UGG Boots Sale Cheap UGG Boots UGG Boots Cheap Women UGG boots ugg boots cardy ugg cardy boots Timberland Timberland sale Timberland boots Timberland boots online Timberland on sale New timberland boots UGG UGG boots UGG boots sale UGG boots short Short ugg Short ugg boots Ugg boots tall Nike Air Nike Air Max Nike Air Max Shoes Nike SB Nike Dunk Nike Dunk SB Nike Dunk SB Shoes Nike Shox Nike Shox Shoes Women Bags Women Bags Sale Women Handbags Women Handbags Sale Women New Bags Cheap Bags Cheap Bags On Sale New women bags New women bags sale New women bags sale online Louis Vuitton Handbags Gucci bags Nike Nike Shoes Nike Shoes Sale Nike running Nike running shoes Nike trainers Nike trainers shoes Timberland Timberland boots Timberland boots sale Timberland boot Timberland boot sale Timberland boots cheap Men timberlands MBT MBT Shoes MBT Chapa GTX MBT Men Shoes MBT Women Shoes Discount MBT Shoes LV Handbags Gucci Handbags Chanel Handbags Chloe Handbags D&G Handbags Dior Handbags Fendi Handbags Hermes Handbags Jimmy Choo Bags Marc Jacobs Bags Miu Miu Handbags Mulberry Bags Prada Handbags Versace Handbags Yves Saint Laurent Balenciaga Bags Burberry Handbags LV Handbags Gucci Handbags Chanel Handbags Chloe Handbags D&G Handbags Dior Handbags Fendi Handbags Hermes Handbags Jimmy Choo Bags Marc Jacobs Bags Miu Miu Handbags Mulberry Bags Prada Handbags Versace Handbags Yves Saint Laurent Balenciaga Bags Burberry Handbags
Those who want to become most beautiful in the world should try them. Just ones can make you different. Girls who want to grab your boyfriends's heart is necessary to use them.

8
Jul

Hi there, I dont know if I am

Hi there, I dont know if I am writing in a proper board but I have got a problem with activation, link i receive in email is not working... http://heidisoft.com/?157ae72e82145585fd4012d6c5e,

9
Jul

(No subject)

No se buy prednisone si ornata medicina le meloxicam hacer da

9
Aug

A sophisticated and classy

A sophisticated and classy messenger tote from <a href="http://www.coachshop711.com/">cheap Coach handbags</a>, made from khaki signature jacquard fabric trimmed with gold leather and brass hardware. This stylish hobo bag by <a href="http://www.coachshop711.com/">Coach outlet</a> is a perfect combination between signature jacquard fabric and a trendy metallic leather handle make a bold. <a href="http://www.coachshop711.com/">Coach bags</a> gorgeous chocolate patent leather, contrast stitching and polished brass hardware make <a href="http://www.coachshop711.com/">Coach handbags outlet </a> an elegant, minimalist choice to go with any attire. t also features leather rounded handles, four protective brass feet on base of bag.
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> 

1
Sep

When I was asked to give a

When I was asked to give a write-up, on the bailey ugg boots uk topic “Life is Beautiful” I smiled. I believed it was a simple topic with a very simple uggs bailey button boots proposition. With a firm belief in myself, I tried to pen a few cheap ugg boots argyle words. I found myself helpless as I had fiddled away precious ugg argyle knit time. Apparently an innocuous proposition made me ponder, which began in a listless uggs classic cardy way and later took a definite direction.As my thought process gained some ugg classic cardy tall ground, I could not fathom the depth of this topic nor scale the height of it. At one sundance ugg boots time I thought it could be dealt by filling the write up with ugg sundance boots anecdotes of my life and thus proving Life is Beautiful. The very next instance made me shudder, as a serious topic should be dealt tall uggs on sale philosophically. A chain developed with one approach giving way to the other.This approach classic tall uggs closely follows the philosophical ugg boots sale uk approach with a beauty of its own. To appreciate the beauty of life one can relish the uggs boots works of artists and writers of renaissance ugg boots online store uk period. Be it Da Vinci with the ethereal Mona Lisa, Rembrandt or Monet with Water Lillies brought out the essence of ugg boots from usa life. http://www.uggsbailey.co.uk/sitemap.html LIJ<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

3
Sep

linda It's unfortunate that

linda It's unfortunate that those who could best benefit from the Gucci Shoes Sale won't read it.
They'll simply see it as an dunk
low
on a sacred icon. It's too bad, because probably at least 47 percent of
the electorate believes a good bit of the shox shoes and nike shox shoes myth 鈥?not a
comforting thought. The author's Air
Jordan Shoes
and Air Jordans
are reasonable look at the huge discrepancy between what Reagan supposedly did
and his actual ugg classic boots. It
is not Reagan bashing, though certainly some much-needed balance is achieved in
assessing Michael Jordan Shoes's
presidency. He is most assuredly correct to suggest that if we are to have a Coach Handbags at a bright future,
we must, at the very least Cheap
Jordans
, move beyond myths. The book does tend to be a bit Cheap MBT Shoes and repetitious.

9
Sep

cheap ghd ghd iv styler ghd

cheap ghd ghd iv styler ghd flat iron cheap ghds ghd for sale ghd hair straightener cheap ghd hair straightener ghd cheap ghd mk4 straighteners ghd straighteners ghd straighteners sale ghd hair straighteners cheap ghd straighteners discount ghd discount ghd straighteners ghd hair straightener sale green envy ghd ghd green envy green envy ghd iv styler ghd iv green envy styler green envy ghd straighteners purple indulgence ghd ghd purple indulgence purple indulgence ghd iv styler ghd iv purple indulgence styler purple indulgence ghd straighteners red lust ghd ghd red lust red lust ghd iv styler ghd iv red lust styler red lust ghd straighteners blue serenity ghd ghd blue serenity blue serenity ghd iv styler ghd iv blue serenity styler blue serenity ghd straighteners Limited Edition ghd precious gift set precious ghd iv styler limited edition precious ghd limited edition gift sest ghd precious gift set ghd precious cheap ghd precious cheap ghd precious limited edition ghd precious limited edition limited edition ghd precious Precious ghd straighteners Limited Editon ghd straighteners pink ghd pink ghd iv styler pink ghd limited edition pink ghd hair straightener pink ghd straighteners pink ghd limited edition ghd mini ghd iv mini styler ghd mini straighteners gold ghd ghd iv gold styler gold ghd iv limited edition gold ghd iv styler gold ghd straighteners ghd kiss ghd iv kiss styler pink ghd iv kiss styler ghd kiss straighteners pink kiss ghd hair straightener hot pink ghd ghd iv hot pink styler hot pink ghd iv styler hot pink ghd straighteners purple ghd ghd iv purple styler purple ghd limited edition purple ghd iv styler limited edition purple ghd straighteners purple ghd straighteners ghd iv salon styler ghd salon straighteners ghd black ghd iv black styler black ghd straighteners ghd dark ghd iv dark styler pure black ghd straighteners pure black ghd iv styler white ghd straighteners pure white ghd iv styler ghd rare ghd rare straighteners ghd benefit ghd benefit straighteners cheap ghd ghd iv styler ghd flat iron cheap ghds ghd for sale ghd hair straightener cheap ghd hair straightener ghd cheap ghd mk4 straighteners ghd straighteners ghd straighteners sale ghd hair straighteners cheap ghd straighteners discount ghd discount ghd straighteners ghd hair straightener sale green envy ghd ghd green envy green envy ghd iv styler ghd iv green envy styler green envy ghd straighteners purple indulgence ghd ghd purple indulgence purple indulgence ghd iv styler ghd iv purple indulgence styler purple indulgence ghd straighteners red lust ghd ghd red lust red lust ghd iv styler ghd iv red lust styler red lust ghd straighteners blue serenity ghd ghd blue serenity blue serenity ghd iv styler ghd iv blue serenity styler blue serenity ghd straighteners Limited Edition ghd precious gift set precious ghd iv styler limited edition precious ghd limited edition gift sest ghd precious gift set ghd precious cheap ghd precious cheap ghd precious limited edition ghd precious limited edition limited edition ghd precious Precious ghd straighteners Limited Editon ghd straighteners pink ghd pink ghd iv styler pink ghd limited edition pink ghd hair straightener pink ghd straighteners pink ghd limited edition ghd mini ghd iv mini styler ghd mini straighteners gold ghd ghd iv gold styler gold ghd iv limited edition gold ghd iv styler gold ghd straighteners ghd kiss ghd iv kiss styler pink ghd iv kiss styler ghd kiss straighteners pink kiss ghd hair straightener hot pink ghd ghd iv hot pink styler hot pink ghd iv styler hot pink ghd straighteners purple ghd ghd iv purple styler purple ghd limited edition purple ghd iv styler limited edition purple ghd straighteners purple ghd straighteners ghd iv salon styler ghd salon straighteners ghd black ghd iv black styler black ghd straighteners ghd dark ghd iv dark styler pure black ghd straighteners pure black ghd iv styler white ghd straighteners pure white ghd iv styler ghd rare ghd rare straighteners ghd benefit ghd benefit straighteners cheap ghd ghd iv styler ghd flat iron cheap ghds ghd for sale ghd hair straightener cheap ghd hair straightener ghd cheap ghd mk4 straighteners ghd straighteners ghd straighteners sale ghd hair straighteners cheap ghd straighteners discount ghd discount ghd straighteners ghd hair straightener sale green envy ghd ghd green envy green envy ghd iv styler ghd iv green envy styler green envy ghd straighteners purple indulgence ghd ghd purple indulgence purple indulgence ghd iv styler ghd iv purple indulgence styler purple indulgence ghd straighteners red lust ghd ghd red lust red lust ghd iv styler ghd iv red lust styler red lust ghd straighteners blue serenity ghd ghd blue serenity blue serenity ghd iv styler ghd iv blue serenity styler blue serenity ghd straighteners Limited Edition ghd precious gift set precious ghd iv styler limited edition precious ghd limited edition gift sest ghd precious gift set ghd precious cheap ghd precious cheap ghd precious limited edition ghd precious limited edition limited edition ghd precious Precious ghd straighteners Limited Editon ghd straighteners pink ghd pink ghd iv styler pink ghd limited edition pink ghd hair straightener pink ghd straighteners pink ghd limited edition ghd mini ghd iv mini styler ghd mini straighteners gold ghd ghd iv gold styler gold ghd iv limited edition gold ghd iv styler gold ghd straighteners ghd kiss ghd iv kiss styler pink ghd iv kiss styler ghd kiss straighteners pink kiss ghd hair straightener hot pink ghd ghd iv hot pink styler hot pink ghd iv styler hot pink ghd straighteners purple ghd ghd iv purple styler purple ghd limited edition purple ghd iv styler limited edition purple ghd straighteners purple ghd straighteners ghd iv salon styler ghd salon straighteners ghd black ghd iv black styler black ghd straighteners ghd dark ghd iv dark styler pure black ghd straighteners pure black ghd iv styler white ghd straighteners pure white ghd iv styler ghd rare ghd rare straighteners ghd benefit ghd benefit straighteners cheap ghd ghd iv styler ghd flat iron cheap ghds ghd for sale ghd hair straightener cheap ghd hair straightener ghd cheap ghd mk4 straighteners ghd straighteners ghd straighteners sale ghd hair straighteners cheap ghd straighteners discount ghd discount ghd straighteners ghd hair straightener sale green envy ghd ghd green envy green envy ghd iv styler ghd iv green envy styler green envy ghd straighteners purple indulgence ghd ghd purple indulgence purple indulgence ghd iv styler ghd iv purple indulgence styler purple indulgence ghd straighteners red lust ghd ghd red lust red lust ghd iv styler ghd iv red lust styler red lust ghd straighteners blue serenity ghd ghd blue serenity blue serenity ghd iv styler ghd iv blue serenity styler blue serenity ghd straighteners Limited Edition ghd precious gift set precious ghd iv styler limited edition precious ghd limited edition gift sest ghd precious gift set ghd precious cheap ghd precious cheap ghd precious limited edition ghd precious limited edition limited edition ghd precious Precious ghd straighteners Limited Editon ghd straighteners pink ghd pink ghd iv styler pink ghd limited edition pink ghd hair straightener pink ghd straighteners pink ghd limited edition ghd mini ghd iv mini styler ghd mini straighteners gold ghd ghd iv gold styler gold ghd iv limited edition gold ghd iv styler gold ghd straighteners ghd kiss ghd iv kiss styler pink ghd iv kiss styler ghd kiss straighteners pink kiss ghd hair straightener hot pink ghd ghd iv hot pink styler hot pink ghd iv styler hot pink ghd straighteners purple ghd ghd iv purple styler purple ghd limited edition purple ghd iv styler limited edition purple ghd straighteners purple ghd straighteners ghd iv salon styler ghd salon straighteners ghd black ghd iv black styler black ghd straighteners ghd dark ghd iv dark styler pure black ghd straighteners pure black ghd iv styler white ghd straighteners pure white ghd iv styler ghd rare ghd rare straighteners ghd benefit ghd benefit straighteners

Post new comment

 
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.

Donate to Us


Activity Stream

Monthly archive

Who's online

There are currently 0 users and 18 guests online.
Theme designed by Donny Carette - Powered by Drupal - copyright © 2010