You are here

function kwresearch_get_priority_options in Keyword Research 6

Same name and namespace in other branches
  1. 7 kwresearch.module \kwresearch_get_priority_options()

returns array of priority options

14 calls to kwresearch_get_priority_options()
kwresearch_analyzer_form_elements in includes/contentanalysis.inc
Implementation of hook_analyzer_form_elements() via custom define callback
kwresearch_delete_site_keyword_js in ./kwresearch.module
AJAX handler to delete a site keyword from db
kwresearch_filters in includes/site_report.inc
Returns filters for site keywords report
kwresearch_format_report_data_value in ./kwresearch.module
kwresearch_google_keywords_import_form in modules/kwresearch_google/kwresearch_google.module
Returns Google keywords import form array

... See full list

File

./kwresearch.module, line 628

Code

function kwresearch_get_priority_options() {
  return array(
    -1 => t('None'),
    0 => t('TBD'),
    10 => t('Very low'),
    30 => t('Low'),
    50 => t('Standard'),
    70 => t('High'),
    90 => t('Top'),
  );
}