function quicktabs_array_fill_keys in Quick Tabs 6.2
Same name and namespace in other branches
- 6.3 quicktabs.module \quicktabs_array_fill_keys()
PHP4 version of array_fill_keys().
1 call to quicktabs_array_fill_keys()
- quicktabs_render in ./
quicktabs.module - Render quicktabs.
File
- ./
quicktabs.module, line 802
Code
function quicktabs_array_fill_keys($keys, $value) {
$return = array();
foreach ($keys as $key) {
$return[$key] = $value;
}
return $return;
}