You are here

function cdn_load_include in CDN 6.2

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

Helper function to efficiently load include files for this module.

10 calls to cdn_load_include()
cdn_admin_general_settings_form in ./cdn.admin.inc
Form definition; general settings.
cdn_cacheaudit in ./cdn.module
Implements hook_cacheaudit().
cdn_file_url_alter in ./cdn.module
Implementation of 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_init in ./cdn.module
Implementation of hook_init().

... See full list

File

./cdn.module, line 775

Code

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