Contributions API

i18nprofile_locale

Definition

i18nprofile_locale($op = 'groups', $group = NULL)
contributions/i18n/i18nprofile/i18nprofile.module, line 25

Description

Implementation of hook_locale().

Code

<?php
function i18nprofile_locale($op = 'groups', $group = NULL) {
  switch ($op) {
    case 'groups':
      return array('profile' => t('Profile'));
    case 'refresh':
      if ($group == 'profile') {
        return i18nprofile_locale_refresh();
      }
  }
}
?>