function skinr_init in Skinr 6.2
Same name and namespace in other branches
- 6 skinr.module \skinr_init()
Implementation of hook_init().
1 call to skinr_init()
- skinr_preprocess in ./
skinr.module - Implementation of hook_preprocess().
File
- ./
skinr.module, line 22
Code
function skinr_init() {
static $run = FALSE;
if (!$run) {
module_load_include('inc', 'skinr', 'skinr.handlers');
skinr_module_include('skinr.inc');
$run = TRUE;
}
}