function kwresearch_get_report_links_options in Keyword Research 7
Same name and namespace in other branches
- 6 includes/stats_report.inc \kwresearch_get_report_links_options()
returns data options for reports
3 calls to kwresearch_get_report_links_options()
- kwresearch_admin_settings in ./
kwresearch.admin.inc - Displays the form for the standard settings tab.
- kwresearch_format_report_links_value in includes/
stats_report.inc - @todo Please document this function.
- kwresearch_get_report_links_options_defaults in includes/
stats_report.inc - enables all values by default
File
- includes/
stats_report.inc, line 385 - Functions to generate the keyword stats report
Code
function kwresearch_get_report_links_options($th = FALSE) {
$options = array(
//'google_serp' => ($th)?t('Google SERP'):t('Google search engine results page'),
//'yahoo_serp' => ($th)?t('Yahoo! SERP'):t('Yahoo! search engine results page'),
//'bing_serp' => ($th)?t('Bing SERP'):t('Bing search engine results page'),
//'google_sb_kw_tool' => ($th) ? t('G kw tool') : t('Google Search-based keyword tool'),
'google_trends' => $th ? t('G trends') : t('Google trends'),
//'google_traffic_estimator' => ($th)?t('G t est'):t('Google traffic estimator'),
'google_insights' => $th ? t('G Ins') : t('Google Insights for Search'),
'gorank_related' => $th ? t('GR Rel') : t('goRank Related keywords lookup tool'),
'keyworddiscovery' => $th ? t('KWD') : t('KeywordDiscovery tool'),
);
return $options;
}