I'm trying to write out a list of key Drupal competencies, mainly so I can confirm what I know, don't know and don't know I don't know. (Thanks D. Rumsfeld for that quote!)
I think some of these are really broad, for instance there's quite a difference between making a functional theme and creating a theme with good SEO, load times and so on, but I'm hoping you could assume that a half decent web developer would look after that anyway.
Just interested to see what people here feel is also important. I've edited the suggestions so far into this list.
Languages
- PHP
- MYSQL
- Query
Drupal Skills
- Research and install modules to meet project requirements
- Configure the basic modules and core settings to get a site running
- Drush command line tool
- Create a custom Theme from scratch which validates with good HTML/CSS.
- Able to customise forms, core, themes without altering core files but by using template.php or custom modules.
- Can make forms from scratch using the API - with validation and posting back to the DB/email
- Can create custom modules from scratch utilising core hooks and module hooks.
- Be involved with the community, understand the naming conventions, CVS system and ideally have submitted some code or revisions.
Modules It's not easy to make a must know module list, as not only is the modules you use very dependent on the site, but also how you use them. However the following are widely used:
Views
- Know how to make basic views and blocks.
- Know how to make more complex views with relationships and terms.
- Know how to use hook_views_query_alter, to make complex queries.
- Know how to use hook_views_default_views, to create specific views.
CCK
- Know how to setup content - what field types to use.
- Know how to create your own field_formatters - the foundation for theming CCK fields.
Hooks The most important hooks to learn, to create a basic module are probably:
- hook_form_alter() - change forms without changing code.
- hook_menu()
- hook_theme()
- hook_nodeapi() - almost anything regarding nodes
- hook_schema() - create tables
- hook_install() / hook_uninstall() - create tables and clean up.
- hook_perm() - when you need special access control.
- hook_init() - things to want always to happen.
- hook_user() - if you need to tap into user actions or modify the user object.