You are here

function kwresearch_get_priority_options in Keyword Research 7

Same name and namespace in other branches
  1. 6 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
Implements 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
@todo Please document this function.
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 864

Code

function kwresearch_get_priority_options() {
  $options = array(
    -1 => t('None'),
    0 => t('TBD'),
    10 => t('Very low'),
    30 => t('Low'),
    50 => t('Standard'),
    70 => t('High'),
    90 => t('Top'),
  );
  if (1) {
    $options[20] = t('Very low+');
    $options[40] = t('Low+');
    $options[60] = t('Standard+');
    $options[80] = t('High+');
    $options[100] = t('Top+');
    ksort($options);
  }
  return $options;
}