You are here

function cdn_load_include in CDN 7.2

Same name and namespace in other branches
  1. 6.2 cdn.module \cdn_load_include()

Helper function to efficiently load include files for this module.

7 calls to cdn_load_include()
cdn_cacheaudit in ./cdn.module
Implements hook_cacheaudit().
cdn_element_info_alter in ./cdn.module
Implements hook_element_info_alter().
cdn_file_url_alter in ./cdn.module
Implements hook_file_url_alter().
cdn_get_domains in ./cdn.module
Get all domains from which files might be served. This information is necessary for some modules, e.g. Boost.
cdn_post_render_html_alter in ./cdn.module
Alter file URLs in the given HTML (currently only image file URLs).

... See full list

File

./cdn.module, line 946

Code

function cdn_load_include($basename) {
  module_load_include('inc', 'cdn', "cdn.{$basename}");
}