You are here

function _hosting_package_types in Hosting 6.2

Same name and namespace in other branches
  1. 5 package/hosting_package.module \_hosting_package_types()
  2. 7.4 package/hosting_package.module \_hosting_package_types()
  3. 7.3 package/hosting_package.module \_hosting_package_types()
1 call to _hosting_package_types()
views_handler_filter_hosting_package_type::get_value_options in package/views/views_handler_filter_hosting_package_type.inc
1 string reference to '_hosting_package_types'
hosting_package_views_data in package/views/hosting_package.views.inc
Implementation of hook_views_data().

File

package/hosting_package.module, line 12

Code

function _hosting_package_types() {
  return array(
    'profile' => t('Installation Profiles'),
    'module' => t('Modules'),
    'theme' => t('Themes'),
  );
}