function skinr_init in Skinr 6
Same name and namespace in other branches
- 6.2 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 66
Code
function skinr_init() {
static $run = FALSE;
if (!$run) {
skinr_include('handlers');
skinr_module_include('skinr.inc');
$run = TRUE;
}
}