You are here

function example_file_download in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/tests/old/samples/example.module \example_file_download()

File

coder_upgrade/tests/old/samples/example.module, line 230

Code

function example_file_download() {
  if (_mymodule_access($filepath)) {
    return array(
      'Content-Type: text/plain',
    );
  }
}