Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Drupal 5 Themes 65

Michael J. Ross writes "For any Web site based upon Drupal, an increasingly popular CMS, the styling of the site is controlled by whatever Drupal "theme" has been installed, enabled, and chosen, by the site administrator. Out of the box, Drupal offers only a handful of themes, and thus site administrators oftentimes will instead opt for a theme developed by a third-party. However, if the administrator cannot find one that exactly matches their needs or those of their client, then they will either have to pay someone to custom-build a theme, or learn how to do it themselves. Fortunately, creating a new theme or modifying an existing one, is not that difficult, as demonstrated in Drupal 5 Themes, by Ric Shreves." Read below for the rest of Michael's review.
Drupal 5 Themes
author Ric Shreves
pages 260
publisher Packt Publishing
rating 6/10
reviewer Michael J. Ross
ISBN 1847191827
summary A guide to modifying Drupal themes, and creating new ones.
The book was published on 22 December 2007, by Packt Publishing, under the ISBNs 1847191827 and 978-1847191823. It is a slender volume, at only 260 pages, and yet covers most of the basics, in eight chapters and one appendix: the basic elements of a Drupal theme, including the files involved; finding, installing, configuring, managing, and uninstalling themes; theme engines, with a focus upon the most commonly used one, PHPTemplate; style sheets and themeable functions; overriding CSS rules, Drupal functions, and template files; modifying an existing theme, using the popular Zen theme as an example; creating a new PHPTemplate-based theme from scratch, and how to extend it; creating a theme not based upon an engine; theming Drupal forms. On the book's Web page, visitors can download most of the sample code presented in the book, send the publisher feedback, ask the publisher a question, and download a sample chapter (number 3, "Working with Theme Engines") as a PDF file.

On the positive side of the ledger, Drupal 5 Themes is a solid introduction to Drupal theming, and the author takes his time in explaining the key concepts. Extensive use is made of sample code, in addition to screenshots of themed pages, admin pages, directory trees, and more.

On the negative side of the ledger, the book contains many small errors — even for a first edition. There are far too many misspellings: "new-comer" (page 8), "where ever" (page 10), "blocks manager" (on the same page — even the same paragraph!), "in depth" (as an adjective, on pages 23 and 24), "jump start," "down side" (both on page 27), "sites" (as a possessive, page 54), "some where" (page 87), and one that undermines the technical credibility of the author, "FavIcon" (page 50). Sadly, there are numerous other errata. For instance, on page 47, we stumble over "to the tailoring an existing theme." On page 10, "assemble to core" should instead read "assemble the core." In several instances, "comprise" is mistaken for "compose." The alert reader will spot other signs of sloppy editing: One pages 18-19, the author should have chosen either "Tables Free" or "CSS-based," and be consistent. The penultimate paragraph on page 123 has double periods. The synonym of "theme" that is posited, "template," is related, but not synonymous; but the common term "skin" isn't even mentioned. On page 188, "page-blog-tpl.php" contains a typo.

Some of the author's phrasing is quite awkward, e.g., "Dev Server" (page 120) apparently means a local Web server. In fact, throughout the book he flip-flops on using lowercase or title case for such terms as "block" and "region." The overuse of title case is also found throughout the book, with some of it almost laughable, e.g., "... the Big Picture." In terms of the writing style, it could certainly be improved, such as judicious use of commas where needed — particularly in the countless run-on sentences. In general, this book contains more errata and style gaffes than any other computer book I have ever seen, on an absolute basis — even worse per page, considering it has perhaps half the number of pages of the typical computer book.

Turning to the technical material itself, there are inconsistencies as well. For instance, some URLs contain root directory slashes, while others do not. Some menu breadcrumbs use ">" as a delimiter, while others use "|." Furthermore, the Drupal menu breadcrumbs (e.g., "administer>themes") should be in sentence case, not lowercase, to match Drupal's names. Fortunately, none of the aforementioned flaws prevent the reader from understanding the book's material, but they reveal insufficient effort in the writing and editing phases, and suggest that other, less obvious, mistakes were possibly made.

In terms of the book's production, it could be improved. Some of the images are highly pixelated — especially the screenshots of directory trees. What will perhaps be most annoying to some readers, is the publisher's use of a glossy black ink that causes each page to reflect one's reading light. One might initially hope that this is an unavoidable disadvantage of the publisher perhaps choosing an environmentally friendly ink, or some similar reason, but nowhere in the book is the type or choice of ink mentioned. This suggests the poor choice was made for economic and not ecologic reasons.

The chapter summaries add nothing to the discussion, and could be removed without loss.

We now turn to specific chapters. In Chapter 2, the author discusses how to install and configure themes, and also touches upon global configuration settings, as well as module and block management. This information is put to use in the second part of the chapter, which covers the customization of Garland, the default Drupal theme. Some of the material in this chapter could prove puzzling or even misleading to many readers. The author states that enabling a theme and setting it as the default, applies it to "both front end and back end of the site" (page 31). Actually, it only changes the front-end theme; the back-end theme is set via Administer > Site configuration > Administration theme; oddly, he actually acknowledges this much later. In the theme configuration screenshots in Chapter 2, the "gagarin" theme is missing, even though it was supposedly installed earlier. On page 40, the author instructs, "To access all the user permissions and configuration screens in one place, view your administrator console by module." But Administer > Site building > Modules is not where the administrator sets user permissions and blog configurations. In the discussion of page specific visibility settings, the third radio button option (entering PHP code to control the visibility of the block) is only displayed if the user has enabled "use PHP for block visibility" in Administer > User management > Access control. The figure caption on page 50 could give a reader the mistaken idea that Drupal renames the custom logo image to "garland_logo.gif" automatically, prior to the configuration settings being saved, which is mentioned afterwards. On page 58, the illustration shows PHP code that appears to contain an extraneous tag, , which is probably a holdover from the illustration on page 56; in fact, it breaks the code, because the presence of that string always effectively returns TRUE. On pages 86 and 87, the PHP code contains four back ticks, which should be replaced with straight apostrophes.

Theme engines, specifically PHPTemplate, is explored in Chapter 3. The author explains the primary functionality of the six files that constitute this built-in theme engine. These are illustrated by comparing two PHPTemplate themes — Garland versus Gagarin. The chapter concludes with brief overviews of three other theme engines, PHPTAL, Smarty, and PHP XTemplate.

Modifying a theme to customize a Drupal site, can be done in one of two ways, or a combination of the two, which is the typical approach: overriding default CSS rules, and overriding themeable functions. Chapters 4 and 5 explain how to do so, with the former containing a list of themeable functions organized by functionality. Chapter 5 covers the details of overriding Drupal CSS and functions, including a valuable discussion of the various options open to the developer for overriding functions, including step-by-step instructions. The chapter concludes with a brief explanation as to how to intercept template files.

Chapters 6 and 7 form the heart of the book, because they explain the details of modifying an existing theme and building a new one from scratch. Anyone interested in learning how to style their Drupal-based Web site with maximum flexibility, will find these two chapters of value. However, there are several pitfalls the reader will want to watch for: Early in Chapter 6, the author instructs the reader who is following along to rename the theme-specific functions in the template.php file from "zen_" to "tao_." Yet this is insufficient, because the page formatting for this new theme, tao, already differs from Zen's. This is likely due to the theme PHP files not finding one or more CSS files that still contain the name "zen." In fact, to completely replace the old theme name throughout Zen's code, one needs to change nine other PHP files. In the section describing how to set up the menus, the weights for the "Home" and "Contact Us" links are supposedly set to 10 and -10, respectively, which would place the former to the left of the latter; yet the illustration on page 148 shows the opposite. The "Blog Entries" weight should be -10 instead of 10. The weights for the footer navigation menu links appear to be equally messed up. In addition, both instances of "yourdomain" is followed by an erroneous space. Frankly, it is as if the book had never been technically edited.

Chapter 7, the longest in the book, is possibly the one that will receive the most study by readers who wish to learn the intricacies of making their own theme from the ground up. The author provides a step-by-step explanation as to what is involved in creating a new theme, and the advantages and disadvantages to alternative approaches. He uses a sample theme, "Bluewater," to illustrate the ideas. The problems with this material are fairly minor: The diagram caption on page 152 states that the elements within the CSS are ordered alphabetically, and yet no alphabetical ordering is apparent. In fact, the ordering doesn't even match that in the page.tpl.php file. In addition, page.tpl.php contains a couple curly quotes, though this does not affect its functionality. Aside from these issues, the discussion is quite thorough, and the reader ends up with a fully functional — though not especially attractive — Drupal theme. The chapter concludes with coverage of template variables, the use of multiple templates, dynamic theming, and developing a theme without the use of any theme engine. However, on page 188, the author states where you can find an example page but there's almost nothing on that page — as of this writing — aside from links to pornographic photos and video. Did the author intend for readers to find them? Either way, it signifies poor judgment on the part of the author.

For many PHP developers, working with form pages is oftentimes the most problematic part of creating a Web site. Fortunately, this book tackles the topic, in Chapter 8, as it pertains to Drupal sites.

In spite of the terribly sloppy writing and editing (both narrative and technical), Drupal developers interested in creating their own themes, or modifying those created by other developers, will find straightforward and detailed coverage in Drupal 5 Themes.

Michael J. Ross is a Web developer, writer, and freelance editor.

You can purchase Drupal 5 Themes from amazon.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.
This discussion has been archived. No new comments can be posted.

Drupal 5 Themes

Comments Filter:
  • If Drupal requires a 260 page book to make a theme, their theme system is TOO COMPLICATED.

    I used to use Postnuke for one of my sites. I designed my own theme for it, and it was pretty nice - you can see a PARTIALLY saved version of it here [archive.org]. I figured out how to make it by looking at the code for existing themes, which was not too dissimilar to standard HTML, and hacked around with it. In version .750 they switched to a new theme system called Xandria, breaking my old theme. I never managed to convert

    • by aitala ( 111068 )
      Actually its called Xanthia, but yah, it is not the greatest system in the world.

      I am moving from Post-Nuke to Drupal because Drupal is looking much better in terms of support, modules, and future plans.

      Post-Nuke had been planning its .8 release for years.. well it seems that way to me..

      Eric

    • Re: (Score:3, Insightful)

      by CastrTroy ( 595695 )
      I'm wondering why one would need a theme at all. Just edit the style sheets. If you look at what the people from CSS Zen Garden [csszengarden.com] do with just CSS changes, you'll wonder why you would ever need to change the HTML to create a new theme.
      • Re:Ugh. (Score:5, Insightful)

        by yelvington ( 8169 ) on Wednesday February 06, 2008 @04:03PM (#22324700) Homepage

        I'm wondering why one would need a theme at all.


        I'm wondering if you've ever done anything complex enough to require additional regions not provided in off-the-shelf themes or alternative layouts for multiple content types, or rearrangement of fields in complex content types or user profiles, or overriding microcomponents such as taxonomy links.

        Theming is not limited to simple reskinning. CSS is a tool. It shouldn't be your only tool.
      • Re:Ugh. (Score:4, Insightful)

        by mdavids ( 143296 ) on Wednesday February 06, 2008 @06:24PM (#22326432) Homepage

        ... which is exactly the thinking behind the Zen theme [drupal.org], which was in contention for being the default Drupal theme at the time Drupal 5 was being developed.

        Having used a stripped down version of Zen as my starting point for all my themes since Drupal 5 came out over a year ago, I can say that things never work out that simply on any non-trivial site. You always end up hacking HTML somewhere. On refection I think the price you pay for all the crufty wrapper divs needed to provide you with hooks for (almost, but never entirely) every CSS selector you might reasonably want in a theme is just too high. If Firebug is an absolute necessity for understanding your own markup, then you're doing something wrong.

        In Drupal 6, customising HTML output will become a lot easier for non-programmers, as a lot of stuff that previously required a PHP theme function to override, can now be overriden by template files in your theme directory.

    • Re: (Score:3, Informative)

      by ceejayoz ( 567949 )
      The instructions for the most basic methods of theme making for Drupal could be fit in a page. It's sufficient for a lot of people.

      Drupal's powerful enough, though, to allow all sorts of neat tricks - different node templates for different content types, overriding any of Drupal's hundreds of theme_xxx functions, etc. It's really a phenomenal system for creating your own customised CMS.
    • Re:Ugh. (Score:4, Informative)

      by caramelcarrot ( 778148 ) on Wednesday February 06, 2008 @03:45PM (#22324486)
      Having themed in Drupal it's definitely not too complex, I was able to piece together what I needed to do from samples around the internet, and a lot of it is quite intuitive.
    • Re: (Score:3, Informative)

      by Firehed ( 942385 )
      It really depends on how technical you are, and if you have any skill in reverse-engineering existing themes. I can't speak for Drupal, but my Wordpress theme-building experience involves looking up functions in existing themes (show the body of the post, date of post, blogroll, "meta" links, etc) and then dropping them in my own content. Often times, it means digging through the seven or eight different levels of functions to find out what argument I actually need to get the output I want, since apparent
    • Re: (Score:3, Insightful)

      by risk one ( 1013529 )

      You know that people have written 260 page books on using Google, right? People write big books about simple things. Drupal's theme system is rapidly converging on that sweet spot of being as simple as possible, but no simpler. If you know how to make a static website from valid xhtml and CSS, you can pick up the zen theme and start filling in the blanks.

      It's actually easier than writing CSS from scratch, because the major hassles (how do I do three column layout again? Why is ie rendering it like that?)

    • Re: (Score:3, Informative)

      by remmelt ( 837671 )
      Drupal can be themed on differents levels. From easy to hard:
      - some themes come with settings that can change colours in the admin backend
      - CSS level (download a theme or use the default, change around some CSS, done)
      - edit or create template pages, which use standard php
      - use a different template system such as smarty
      - edit or create theme_xxx() functions

      Especially if the book covers the creation of theme_ functions and their proper use, I can understand they use 260 pages to explain.

      Drupal has its weaknes
    • Drupal theming is still pretty hokey in a lot of ways (for example, the whole way it deals with external CSS files is very poorly thought-out), but this:

      I used to use Postnuke for one of my sites. I designed my own theme for it, and it was pretty nice

      ...strains my credibility :-) I've customized themes for most of the bigger open source CMS packages, and Postnuke was one of the very, very worst. Simply no flexibility at all--and this was during the .7xx phase.

      In terms of relative simplicity, Drupal themi

  • by trolltalk.com ( 1108067 ) on Wednesday February 06, 2008 @03:14PM (#22324098) Homepage Journal

    ... and then writes this:

    both instances of "yourdomain" is followed by an erroneous space. Frankly, it is as if the book had never been technically edited.

    • by Toonol ( 1057698 )
      ...both instances of "yourdomain" is followed by an erroneous space.

      The "is" is incorrect, but the "an" is fine. Am I missing something?
      • ...both instances of "yourdomain" is followed by an erroneous space.

        The "is" is incorrect, but the "an" is fine. Am I missing something?

        Yes - you are missing something. Once you replace "is" with "are", the "an" is extraneous. So, for that matter, is "erroneous"

        "... both instances of "yourdomain" are followed by space"

        You already know the author is citing this as a mistake - no need to be overly repetitive unless you're getting paid by the word.

        • by Raenex ( 947668 )

          followed by space
          Outer space? "a space" is correct, since you can have things like "two spaces", which makes "an" correct in the way it was used. The "is" vs "are" has nothing to do with it.
    • by Bogtha ( 906264 )

      Speaking of technical editing, why is it so common to see crap like yourdomain in books? The .example TLD along with example.com etc. have all been reserved for this purpose by RFC 2606 [ietf.org] so examples don't conflict with domains that are already in use. Isn't this the sort of thing a technical editor, as opposed to a normal editor, should pick up on? It just reminds me of the stupid novel [slashdot.org] and film [feardotcom.com] writers that title their works with domain names already in use by others. It's just not necessary.

      • by Scaba ( 183684 )

        Speaking of technical editing, why is it so common to see crap like yourdomain in books?

        How common is it? Do you have data?

        It just reminds me of the stupid novel and film writers that title their works with domain names already in use by others. It's just not necessary.

        Oh, I dunno. "Example.com" just doesn't have the same dark overtones that "Fear.com" does.

        • by osu-neko ( 2604 )

          How common is it?

          More common than it should be.

          Do you have data?

          The book in question provides one example. Since there should be no examples (see RFC 2606), the existence of one example provides sufficient data to prove the previous assertion to be true.

  • Wow, just in time for Drupal 6 to come out! heh

    Actually I might buy this book...

    Dr.E
    • by garcia ( 6573 )
      Why when you can view everything you need to know about Drupal themes (including version 6+) here [drupal.org]. You basically unpack the theme, put it in the themes directory, and go into the admin panel to enable it.

      There, I just condensed 260 pages that costs money into something free and easy to do. As far as modifying your CSS to find your custom needs, well, that's for a completely different book and one that I would actually read -- if it helped more than what I've been able to learn myself online.
      • by aitala ( 111068 )
        Well, I will probably stick to Drupal 5 for quite a while and am going to customize a third party Drupal theme (Denver) to make it do what I want...
        I need to be able to work my users into the new Drupal system since I've been using Post-Nuke for 6-7 years now.

        Dr.E
      • Why when you can view everything you need to know about Drupal themes (including version 6+) here [drupal.org]. You basically unpack the theme, put it in the themes directory, and go into the admin panel to enable it.

        There, I just condensed 260 pages that costs money into something free and easy to do. As far as modifying your CSS to find your custom needs, well, that's for a completely different book and one that I would actually read -- if it helped more than what I've been able to learn myself online.

        "Download phpBB" -- A book on writing a forum system in PHP "condensed" into 2 words!

      • i agree that the material is there for free if your willing to dig about or click through a few search results. however, i do find that a good book on the topic can save you a ton of time. i bought the Pro Drupal Dev [amazon.com] book from Apress to get up to speed on the intricacies of drupal and probably saved myself a months worth of mucking around on my own with google & exisiting code.

        the theme chapter in that is about 40 or 50 pages long but gives you more than enough to build complicated themes. normally i
      • Re: (Score:1, Troll)

        by xhrit ( 915936 )
        People will buy the book so they can...

        ...support teh community.

        ...put it on the bookshelf next to all the other programming books they have never read, just to impress all their non-programmer friends.

        ...read it on the bus on their way to work in a soulless code factory pumping out overpriced generic websites for clueless clients.

        ...have something to throw when you waste a day and a half learning to deal with drupal's idiosyncrasies.

        ...hold it in the corner crying after none ov the 300+ people on
  • The CMS I've been using for three years now just uses a basic HTML page as a theme, you add simple tag-based elements such as [*pagetitle*] or [*content*] to get the dynamic content for each page requested. You can just copy any web page's source and replace the relevant text output sections with these dynamic tags, for everything from menus and login forms to complex AJAX data grid displays.

    http://modxcms.com/ [modxcms.com]
    • I dunno. It took me maybe an hour or two at the most to hack an existing theme into something that looked pretty decent. Including creating the image in the header.

      • Agreed - I found it quite simple to do away with many of Drupal's output snippets, eg hard-coding things like the site's logo image. If you're capable of making your own template you probably don't need that stuff dynamically generated. I think I needed only four or five small PHP snippets in my HTML template.
    • by yelvington ( 8169 ) on Wednesday February 06, 2008 @04:21PM (#22324944) Homepage
      If you read the Drupal theme developer's guide [drupal.org] you'd know that basic Drupal theming works exactly that way. A page template is simply an HTML page with tags inserted where you want specific components to appear.

      The power of Drupal's approach to theming is that you can do as little, or as much, customization of detailed component formatting as you want.

      It's a site development platform, not simple blogware that lets you play with look and feel. This is why the Onion [theonion.com], HamptonRoads.com [hamptonroads.com], New York Observer [observer.com] and Ozzy Osborne's website [ozzyosbourne.com] can all run Drupal but not look or act like my weblog [yelvington.com] or JumpTV [jumptv.com].
      • by xhrit ( 915936 )
        Lets not forget the Quake Wars community site.

        http://community.enemyterritory.com/ [enemyterritory.com]

        I see that in the case ov your blog you took advantage ov Drupal's approach to theming and did as little customization of detailed component formatting as possible. Next time at least change teh favicon!!! :)
    • Indeed. You just create your own CSS and XHTML and go, no theming system to adapt to (or you can download free "themes" of course.) I've converted many sites to MODx very quickly.

      But CMS's are like operating systems to people I find. Reasons for loving or despising them are as varied as the individuals who use them. I hated all CMS's that I had to learn a templating system rather than being able to use standard HTML and that, together with MODx's modular, don't have to hack the core approach, and the wayfin
  • The author states that enabling a theme and setting it as the default, applies it to "both front end and back end of the site" (page 31). Actually, it only changes the front-end theme; the back-end theme is set via Administer > Site configuration > Administration theme; oddly, he actually acknowledges this much later.

    Actually, that setting DOES change both the main and admin theme, unless the admin theme setting is specifically changed to another theme. Its default is to follow the main theme setting.

  • ...another (Score:3, Informative)

    by richie2000 ( 159732 ) <rickard.olsson@gmail.com> on Wednesday February 06, 2008 @03:32PM (#22324326) Homepage Journal

    In the section describing how to set up the menus, the weights for the "Home" and "Contact Us" links are supposedly set to 10 and -10, respectively, which would place the former to the left of the latter; yet the illustration on page 148 shows the opposite.
    A menu item with a weight of -10 would always be displayed to the left/above one with a weight of 10. "Lighter" values float, "heavier" sink. A "Home" with a weight of 10 would therefore be displayed to the right of "Contact Us".
  • On Errors (Score:2, Informative)

    by seyyah ( 986027 )

    The alert reader will spot other signs of sloppy editing: One pages 18-19, the author should have chosen either "Tables Free" or "CSS-based," and be consistent.

    Pot calling the kettle black?

    In all seriousness, instead of blaming the author for these problems, the reviewer should be blaming the publisher. Where were the editors? As the quote shows, mistakes are easy to make, but when it comes to print, any half-decent publishing house should be catching them.

    • Re: (Score:1, Insightful)

      by Anonymous Coward
      In all seriousness, instead of blaming the author for these problems, the reviewer should be blaming the publisher.

      Uh, did you visit the reviewer's webpage as linked in the review? He's not the best at his job, either.
  • ... is (unless they've fixed this) that if you want to update your site, you have to update every incremental update to finally get the latest update. basically the whole updating thing is a lot more complicated than it should be.
    • ... is (unless they've fixed this) that if you want to update your site, you have to update every incremental update to finally get the latest update. basically the whole updating thing is a lot more complicated than it should be.

      I upgraded from 5.5 to 5.7 without hitting 5.6. Just removed the main drupal directory, replaced it with the 5.7 directory, then moved the files (uploads) and 3rd party modules back into place. Then visited their update scripts. By far the most painless upgrade experience I've ever seen on an PHP-based item.

      I don't claim to be an expert on Drupal, and I did try this on a test server first.

    • by dvessel ( 971554 )
      Point updates you can skip. Major updates do need to be hit. For example, going from 4.8 to 6.0 can cause trouble. It's possible but you have to know what your doing. 5.0 to 5.7 shouldn't be a problem and I don't remember that ever being an issue.
  • Drupal is a nice example of how a piece of junk software can become popular. Their code structure looks like OO, but it isn't. Instead, they use their own hooking system, which makes the software slow (talking about hundreds of DB queries to build a simple page) and more complex then necessary. No offense, but the fact that Drupal is popular tells me more about the programming skills of the average webdeveloper then it tells me about the quality of Drupal.
    • Re: (Score:3, Informative)

      by yelvington ( 8169 )
      From http://api.drupal.org/api/file/developer/topics/oop.html [drupal.org]:

      Drupal often gets criticized by newcomers who believe that object-oriented programming (OOP) is always the best way to design software architecture, and since they do not see the word "class" in the Drupal code, it must be inferior to other solutions. In fact, it is true that Drupal does not use many of the OOP features of PHP, but it is a mistake to think that the use of classes is synonymous with object-oriented design. This article will cover

      • Cache system or no cache system, why does Drupal query the database 20x more than I would do to build a simple page??
    • Their code structure looks like OO, but it isn't.

      How does it look like OO? It's functional. It doesn't pretend to be object oriented. Maybe you're confusing modular code layout with classes?

      Instead, they use their own hooking system, which makes the software slow (talking about hundreds of DB queries to build a simple page) and more complex then necessary.

      What does the choice of building a custom hooking system have to do with the number of database queries? An object oriented design could easily caus
      • How does the code look like OO? Because of the hooks. It's what you do with object inheritance: you override default functions. What has that to do with the number of queries? Because of the hooks, functions which are not required to build a page, are called nevertheless. These useless function calls (which query the database) make Drupal slow. Of course you can attack me saying I'm a bad programmer or I don't understand Drupal. I took Drupal 5.3 and the FAQ module from the Drupal website. It took 418 data
        • I don't know your exact situation, so I can't comment on the 418 queries. But I am very intimate with Drupal's internals. All of the useless function calls keep module development simple. And it does cause excessive PHP code to run. Since most module functions are very short it's cheap. But unless your external modules are very poorly coded they should not cause any extra database calls. I've professionally built a number of very complex sites with Drupal and I've extensively debugged the hooks and da
    • by osu-neko ( 2604 )

      Uh huh...

      One way to spot a rookie is that they think whether something is OO or not is relevant to whether it's efficient or even well-designed or not.

      • One way to spot a person who wants to make a point but doesn't have one, is to look for a person who attacks the messenger, not the message.
  • I'm interested in blogs/CMS's/whatever that support moderation and decentralized editorial/administrative control. I've looked at Slash and Scoop, but they're a bit unwieldy for a mere mortal like myself, and (I think) are difficult/impossible to install on a shared hosting server.

    Which scripts are the best for this sort of thing? Is Drupal the way to go?
  • There are free Drupal themes available on the Net, but I haven't been able to find a nice one with light text on dark background. For some reason there seem to be many more free themes for e.g. Joomla.
  • I've not read the book, but it occurred to me that some of the errors complained of above might not be errors, or at worst just insufficiently explained Drupalisms.

    some URLs contain root directory slashes, while others do not

    You might be conflating relative URLs with "Drupal paths" here. Most Drupal sites these days use Apache mod_rewrite to convert a URL like:

    http://www.example.com/?q=admin/content/types

    to:

    http://www.example.com/admin/content/types

    The distinction between Drupal paths and URLs relativ

  • There are more mistakes regarding Drupal in the review than are pointed out in the book.
    Some menu breadcrumbs use ">" as a delimiter, while others use "|."
    Because some Drupal themes use > as the breadcrumb delimiter, and some use |. This is entirely up to the theme author. Very likely those entries were cut and pasted directly from the Drupal output being referred to.
    The author states that enabling a theme and setting it as the default, applies it to "both front end and back end of the site" (
  • Yet another book that sells information freely available. Not to mention one that is rather poorly written, to all appearances...

E = MC ** 2 +- 3db

Working...