Module Development

Movie Project: Create a Node from a Custom Form for Drupal 7

This page is archived

We're keeping this page up as a courtesy to folks who may need to refer to old instructions. We don't plan to update this page.

Use a form submit hook to pass information down the form API and create a node programmatically.

Goal

Create a node programmatically.

Prerequisites

You will need the following knowledge and skills. If you need a review, check out the Additional resources section at the bottom of this page.

  1. Create a form submit hook, and act upon values passed to it.
  2. Create a node programmatically.

Tasks

Write a "submit hook" to accept the values of the form.

Use the validation hook to pass the details of the film to the submit hook.

Write a function to create a node programmatically if the movie does not already have a node on the site. Use the title, overview, and release date from the data object you retrieved from The Movie DB API in the previous lesson.

For bonus points, on an existing node, you can check if the data from the external API is the same as is in the Drupal database and update the node programmatically if there are differences.

Recap

-Parameters in the form API, e.g. hook_form_validate and hook_form_submit are passed by reference.

  • Nodes can be created programmatically and the representation of nodes when we view them is very similar in structure to when we save them.

Further your understanding

Additional resources

Creative Commons License

Drupal Training Resources by Damian Robinson are licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. Based on a work at http://www.damianrobinson.co.uk.

Hands-On Exercises: Movie Project