You are here

function _hosting_package_types in Hosting 7.3

Same name and namespace in other branches
  1. 5 package/hosting_package.module \_hosting_package_types()
  2. 6.2 package/hosting_package.module \_hosting_package_types()
  3. 7.4 package/hosting_package.module \_hosting_package_types()
1 call to _hosting_package_types()
hosting_package_handler_filter_type::get_value_options in package/includes/views/handlers/hosting_package_handler_filter_type.inc
Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.
1 string reference to '_hosting_package_types'
hosting_package_views_data in package/includes/views/hosting_package.views.inc
Implements hook_views_data().

File

package/hosting_package.module, line 14
Defines package node types

Code

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