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 65 - Examples demonstrating the backdrop File API (and Stream Wrappers).
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);
}