added: to stats plugin: microsoft bing searcher

git-svn-id: svn://ttmath.org/publicrep/winix/trunk@648 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2010-08-28 21:19:30 +00:00
parent d6e80f5a23
commit c92081d6e1
7 changed files with 37 additions and 3 deletions

View File

@@ -49,6 +49,13 @@ void stats_yahoo(Ezc::Info & i)
}
void stats_bing(Ezc::Info & i)
{
i.out << stats.global_bing;
}
void stats_item_all(Ezc::Info & i)
{
i.out << stats.stats_tab[current_item_id].all;
@@ -65,6 +72,11 @@ void stats_item_yahoo(Ezc::Info & i)
i.out << stats.stats_tab[current_item_id].yahoo;
}
void stats_item_bing(Ezc::Info & i)
{
i.out << stats.stats_tab[current_item_id].bing;
}
@@ -78,10 +90,12 @@ void CreateFunctions(PluginInfo & info)
fun->Insert("stats_unique", stats_unique);
fun->Insert("stats_google", stats_google);
fun->Insert("stats_yahoo", stats_yahoo);
fun->Insert("stats_bing", stats_bing);
fun->Insert("stats_item_all", stats_item_all);
fun->Insert("stats_item_google", stats_item_google);
fun->Insert("stats_item_yahoo", stats_item_yahoo);
fun->Insert("stats_item_bing", stats_item_bing);
}