1 file_example.module file_example_intro()

A simple introduction to the workings of this module.

Related topics

File

modules/examples/file_example/file_example.module, line 64
Hook implementations for the File Example module.

Code

function file_example_intro() {
  $markup = t('The file example module provides a form and code to demonstrate the Backdrop file api. Experiment with the form, and then look at the submit handlers in the code to understand the file api.');
  return array('#markup' => $markup);
}