You are here

function _google_fonts_admin_array_values in Google Fonts 7

Same name and namespace in other branches
  1. 6.2 google_fonts.admin.inc \_google_fonts_admin_array_values()
  2. 7.2 google_fonts.admin.inc \_google_fonts_admin_array_values()

Return an array with the same keys as values

1 call to _google_fonts_admin_array_values()
google_fonts_admin_settings_form in ./google_fonts.admin.inc
Implements hook_admin_settings() for configuring the module

File

./google_fonts.admin.inc, line 275
Administrative page callbacks for the Google Fonts module.

Code

function _google_fonts_admin_array_values($array_in) {
  $array_out = array();
  foreach ($array_in as $value) {
    $array_out[$value] = $value;
  }
  return $array_out;
}