You are here

function quicktabs_array_fill_keys in Quick Tabs 6.3

Same name and namespace in other branches
  1. 6.2 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 884

Code

function quicktabs_array_fill_keys($keys, $value) {
  $return = array();
  foreach ($keys as $key) {
    $return[$key] = $value;
  }
  return $return;
}