· 5 years ago · Jun 05, 2020, 03:36 AM
1<?php
2/* ------ MAIN SETTINGS ------ */
3/* Website URL (Without www!)(Do Not End With '/') */
4$site_url = 'https://example.com';
5/* Website title */
6$site_title = 'Movies Store';
7/* iTunes Store 2-Letter Country Code (http://moviestore.armorthemes.com/countries) */
8$site_country = 'us';
9/* iTunes Affiliate Token (Optional) */
10$itunes_id = '1l3vpAp';
11/* Amazon Associates Tracking ID (Optional) */
12$amazon_id = 'you-20';
13/* Amazon Store Country (Optional) */
14$amazon_country = 'us';
15/* themoviedb.org API Key (Optional) For ratings and photo background */
16$apikey = 'febf895ddb31726dfbd3cdc7e0388d35';
17/* Youtube API Key (Optional) For trailers */
18$youtube_key = 'AIzaSyB7rM2gl9TM3fqEmAt1sHQ4MfxDiUaqsw8';
19/* AddThis ID for sharing analytics (Optional) */
20$addthis_id = '';
21/* Disqus shortname for comments (Optional) */
22$disqus_shortname = 'music-store-2';
23/* Contact form mail receiver (Optional) */
24$contact_email = '';
25/* ------ SEO SETTINGS ------ */
26/* Homepage title */
27$homepage_title = 'MovieStore - Movies and TV Shows Affiliate Script';
28/* Homepage meta description */
29$homepage_desc = 'Welcome to the best Movies and TV Shows Affiliate Script.';
30/* Website meta keywords */
31$site_keywords = 'MovieStore, movies, tv shows, itunes affiliate script, php movies script, php movies affiliate script, movie script';
32/* Movie single page title (Comes between movie title and site title) */
33$movie_page_title = 'Movie';
34/* TV Shows single page title (Comes between tv show title and site title) */
35$tv_page_title = 'TV Show';
36/* ------ HOMEPAGE CAROUSEL GENRE (Get id from the genre url) (Leave blank for all genres) ------ */
37$home_genre_id = '';
38/* ------ HOMEPAGE FEATURED MOVIES (Get id from the movie url) ------ */
39$feat_id1 = '1159762255';
40$feat_id2 = '1133650155';
41$feat_id3 = '1134823596';
42$feat_id4 = '1139413055';
43/* ------ TRANSLATION OPTIONS ------ */
44/* Homepage */
45$home_carousel_title = 'Popular Movies';
46$featapps_title = 'Featured Movies';
47$hometv_title = 'Popular TV Shows';
48$rmore_title = 'Read More';
49/* Single Movie, Season, Episode Page */
50$byartist_mpage = 'By';
51$cat_mpage = 'Genre';
52$release_mpage = 'Release Date';
53$adrat_mpage = 'Advisory Rating';
54$time_mpage = 'Runtime';
55$dir_mpage = 'Director';
56$act_mpage = 'Production Company';
57$awards_mpage = 'Production Country';
58$buytext_mpage = 'iTunes Price';
59$buyhdtext_mpage = 'iTunes HD Price';
60$renttext_mpage = 'iTunes Rent Price';
61$itunelink_mpage = 'Buy on iTunes';
62$amazonlink_mpage = 'Buy on Amazon';
63$from_mpage = 'From';
64$ratings_mpage = 'Ratings';
65$epis_mpage = 'Episodes';
66$eptit_mpage = 'Title';
67$eptim_mpage = 'Time';
68$eppri_mpage = 'Price';
69$seaso_mpage = 'Season Only';
70$descriphead_mpage = 'Description';
71$trail_mpage = 'Trailer';
72$photo_mpage = 'Photos';
73$reviewshead_mpage = 'Reviews';
74$reviewsby_mpage = 'By';
75$commentbox_mpage = 'Comments';
76$moremovies_mpage = 'Movies by';
77$moretvshow_mpage = 'Seasons';
78/* Header and Navigation Pages */
79$home_title = 'Home';
80$movies_navtitle = 'Movies';
81$topmovies_title = 'Top Movies';
82$toprental_title = 'Top Movie Rentals';
83$tvseries_navtitle = 'TV Shows';
84$toptvseasons_title = 'Top TV Seasons';
85$toptvepisodes_title = 'Top TV Episodes';
86$nr_episodes = 'Episodes';
87$filter_title = 'Filter by Genre';
88/* Search Form */
89$searchf_text = 'Search for...';
90$searchf_movies = 'Movies';
91$searchf_tv = 'TV Shows';
92/* Search Page */
93$searchresults_title = 'Search Results For';
94$search_noresults_title = 'Sorry, no results were found.';
95/* Movie Genres Titles */
96$gtitle_all = 'All Genres';
97$gtitle_1 = 'Action Adventure';
98$gtitle_2 = 'Anime';
99$gtitle_3 = 'Classics';
100$gtitle_4 = 'Comedy';
101$gtitle_5 = 'Documentary';
102$gtitle_6 = 'Drama';
103$gtitle_7 = 'Foreign';
104$gtitle_8 = 'Horror';
105$gtitle_9 = 'Independent';
106$gtitle_10 = 'Kids Family';
107$gtitle_11 = 'Musicals';
108$gtitle_12 = 'Romance';
109$gtitle_13 = 'Sci-Fi Fantasy';
110$gtitle_14 = 'Short Films';
111$gtitle_15 = 'Special Interest';
112$gtitle_16 = 'Thriller';
113$gtitle_17 = 'Sports';
114$gtitle_18 = 'Western';
115/* TV Shows Genres Titles */
116$tvgtitle_all = 'All Genres';
117$tvgtitle_1 = 'Action Adventure';
118$tvgtitle_2 = 'Animation';
119$tvgtitle_3 = 'Classic';
120$tvgtitle_4 = 'Comedy';
121$tvgtitle_5 = 'Drama';
122$tvgtitle_6 = 'Kids';
123$tvgtitle_7 = 'Nonfiction';
124$tvgtitle_8 = 'Reality TV';
125$tvgtitle_9 = 'Sci-Fi Fantasy';
126$tvgtitle_10 = 'Sports';
127$tvgtitle_11 = 'Teens';
128/* Footer Links */
129$footnav_home = 'Home';
130$footnav_privacy = 'Privacy Policy';
131$footnav_dmca = 'DMCA';
132$footnav_contact = 'Contact';
133?>