├── source
├── images
│ ├── logo.png
│ ├── android.png
│ ├── favicon.ico
│ ├── loupe_big.png
│ ├── notfound.png
│ └── gallery_hover_left-right_sprite_l.png
├── libs
│ ├── createMenu.php
│ ├── createSidebar.php
│ ├── item_info.php
│ ├── index_items.php
│ ├── filter_items.php
│ ├── manageSearch.php
│ └── category_items.php
├── js
│ └── custom.js
├── app_filter.php
├── header.php
├── search.php
├── category_items.php
├── sidebar.php
├── item.php
├── index.php
├── css
│ └── style.css
├── readme.html
└── core
│ └── playStoreApi.php
└── README.md
/source/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thetutlage/Google-Play-Store-API/HEAD/source/images/logo.png
--------------------------------------------------------------------------------
/source/images/android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thetutlage/Google-Play-Store-API/HEAD/source/images/android.png
--------------------------------------------------------------------------------
/source/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thetutlage/Google-Play-Store-API/HEAD/source/images/favicon.ico
--------------------------------------------------------------------------------
/source/images/loupe_big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thetutlage/Google-Play-Store-API/HEAD/source/images/loupe_big.png
--------------------------------------------------------------------------------
/source/images/notfound.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thetutlage/Google-Play-Store-API/HEAD/source/images/notfound.png
--------------------------------------------------------------------------------
/source/libs/createMenu.php:
--------------------------------------------------------------------------------
1 | listCategories();
?>
--------------------------------------------------------------------------------
/source/images/gallery_hover_left-right_sprite_l.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thetutlage/Google-Play-Store-API/HEAD/source/images/gallery_hover_left-right_sprite_l.png
--------------------------------------------------------------------------------
/source/libs/createSidebar.php:
--------------------------------------------------------------------------------
1 | topTrendingApps(1);
3 | $top_new_free_apps = $play_store_api->topNewFreeApps(1);
4 | $top_new_paid_apps = $play_store_api->topNewPaidApps(1);
5 | ?>
--------------------------------------------------------------------------------
/source/libs/item_info.php:
--------------------------------------------------------------------------------
1 | itemInfo($item_id);
6 | $relatedViewed = $play_store_api->relatedViewed($item_id);
7 | $relatedInstalled = $play_store_api->relatedInstalled($item_id);
8 | }
9 | ?>
--------------------------------------------------------------------------------
/source/libs/index_items.php:
--------------------------------------------------------------------------------
1 | topGrossingApps(1);
3 | $topFreeGames = $play_store_api->topFreeGames(1);
4 | $topPaidGames = $play_store_api->topPaidGames(1);
5 | $staffPicks = $play_store_api->staffPicks(1);
6 | $staffPicksForTablet = $play_store_api->staffPicksForTablet(1);
7 | ?>
--------------------------------------------------------------------------------
/source/libs/filter_items.php:
--------------------------------------------------------------------------------
1 | $cat_type($current_page);
13 | }
14 | ?>
--------------------------------------------------------------------------------
/source/libs/manageSearch.php:
--------------------------------------------------------------------------------
1 | searchStore($search_query,$sort='Popularity',$price='All',$safe_search = 'Off',$start=$current_page);
15 | }
16 | ?>
--------------------------------------------------------------------------------
/source/libs/category_items.php:
--------------------------------------------------------------------------------
1 | $function_name($cat_id,$start = $current_page);
26 | }
27 | ?>
--------------------------------------------------------------------------------
/source/js/custom.js:
--------------------------------------------------------------------------------
1 | $(function(){
2 | $('#menu_bar ul li').hover(function(){
3 | $(this).find('.drop_down').show();
4 | },function(){
5 | $(this).find('.drop_down').hide();
6 | });
7 |
8 | $('#app_meta li a').click(function(){
9 | var item_id = $(this).parent('li').attr('id');
10 | $(this).closest('.single_right').find('.appWrapper').addClass('hidden');
11 | $('#app_' + item_id).removeClass('hidden');
12 | return false;
13 | })
14 |
15 | $('#webnovae_slider li:first-child').addClass('current');
16 | $('#webnovae_slider .prev').click(function(){
17 | if($(this).closest('#webnovae_slider').find('li.current').prev().is('li'))
18 | {
19 | $(this).closest('#webnovae_slider').find('li.current').removeClass('current').prev('li').addClass('current', 1000);
20 | }
21 | });
22 |
23 | $('#webnovae_slider .next').click(function(){
24 | if($(this).closest('#webnovae_slider').find('li.current').next().is('li')){
25 | $(this).closest('#webnovae_slider').find('li.current').removeClass('current').next().addClass('current', 1000);
26 | }
27 | });
28 |
29 |
30 | })
--------------------------------------------------------------------------------
/source/app_filter.php:
--------------------------------------------------------------------------------
1 |
2 |
58 |
59 |