PHP Classes

PHP End Game Engine Website: Build Web sites for promoting games

Recommend this page to a friend!
  Info   View files Example   Demos   View files View files (242)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 136 This week: 1All time: 9,258 This week: 560Up
Version License PHP version Categories
endgame 1.0GNU General Publi...7.0Games, Blogs, PHP 7
Description 

Author

This package can Build Web sites for promoting games.

It provides an MVC based application that implements several services to create a community with interests around games.

Currently it provides services like user registration, blog publication, newsletter delivery and contact management.

The user interface presentation can be customized and it is responsive to be ready to display in mobile devices.

Innovation Award
PHP Programming Innovation award winner
June 2019
Winner


Prize: SourceGuarding PHP encoder tool
Many games are very popular among people that appreciate spending good time play them.

Many of them present challenges that require knowing a lot of details of the game play, story plot, characters, etc..

This package allows build Web sites for promoting games easily with many resources that are useful for the game fans like blog posts, newsletters and contacts of the people that want to play those games.

Manuel Lemos
Picture of Taranpreet Singh
  Performance   Level  
Name: Taranpreet Singh <contact>
Classes: 2 packages by
Country: India India
Age: 30
All time rank: 3634246 in India India
Week rank: 416 Up25 in India India Up
Innovation award
Innovation award
Nominee: 2x

Winner: 1x

Example

<?php
session_start
();
header("Access-Control-Allow-Origin: *");
//Load Configs
require_once '../APP/config/Config.php';

//Load Functions
require_once '../APP/functions/functions.php';

//Autoload Everything
spl_autoload_register(function($className) {

   
$className = str_replace("\\", '/', $className);
    include_once
'../' . $className . '.php';

});

//Init Core
$app = new APP\Core\Core;


Details

EndGame Gaming Website

Endgame is a contemporary free games website that will help you quick-start your gaming project. It is an ideal for making gaming blogs and review websites due to the highly adaptive and fully customizable web design. Endgame is also based on Bootstrap Framework what ensures flexibility and mobile-readiness. Meaning, your final game-packed website will work seamlessly on all devices, from mobile phones and up to desktop computers. Indeed, Endgame is also compatible with retina screens and modern web browsers.

Live Preview

Check Live Working

Getting Started

It is easy to setup endgame website on live server or localhost. We have used M.V.C(Model View Controller) approach. Whole website is using one configuration file name as ` config.php ` located in ` APP/Config/Config.php ` directory. Configuration file have some defined constants which will be used by website.

//Database Parameters
define('DB_HOST','localhost');
define('DB_DB','DATABASE NAME');
define('DB_USER','DATABASE USERNAME');
define('DB_PASS','DATABASE PASSWORD');

//Application Config
define('APP_ROOT',dirname(dirname(__FILE__))); // Dynamic no need to change
define('ROOT',dirname(dirname(dirname(__FILE__)))); // Dynamic no need to change
define('PUBLIC_ROOT',dirname(dirname(dirname(__FILE__)))."/public"); //Dynamic no need to change
define('URL_ROOT',"YOUR DOMAIN NAME");
define('SITE_NAME','YOUR SITE NAME');
define('USE_SSL',true); // True = use HTTPS || False = use HTTP

define('DEFAULT_CONTROLLER','Home'); // Default Controller
define('DEFAULT_METHOD','index'); // Default Method

//Encryption Key
define('ENC_KEY','CKXH2U9RPY3EFD70TLS1ZG4N8WQBOVI6AMJ5'); //Random Encryption key

define('TIME_ZONE','Asia/Kolkata'); // Set timezone according to your needs

Prerequisites

Requirements to run website 1. PHP v7.0+ Server 2. MariaDB 3. Mod_rewrite extension enable. 4. .ht* files allowed.

Installing

Installation of the website is very easy. <br /> Step 1) Download files. <br /> Step 2) Unzip file in directory. <br /> Step 3) Move all the files to your live server or localhost (www/htdocs Directory) || WAMP & XAMPP Respectively. <br /> Step 4) Update Configuration file present at `APP/Config/Config.php` according to your needs. You can check above configuration file.<br /> Step 5) Open PHPMYADMIN or anyclient you using and upload sql file located at `APP/SQLDump/structure.sql`.<br /> Step 6) Visit your url and enjoy.<br />

Deployment

Video Coming Soon!

Built With

TweekersNut Network MVC 1.0 - Framework <br /> MySQL - Database <br /> Bootstrap - HTML & CSS framework <br />

Bug Reporting

Endgame got dedicated special section inbuilt in administrator panel to quickly report for bug. All bug requests are directly sent to the developers. Every bug query will be first verified and then patch for the bug will be realesed ASAP.

<a href="https://ibb.co/mJPWf47"><img src="https://i.ibb.co/WnRJmf1/bug-report.png" alt="bug-report" border="0"></a>

Feature Request

Our developers are ready to build any custom feature you want for your website. `Example store,cart,review system` and etc. can be build for each specific customer according to there needs. All feature requests are paid request. You will be chanrged one time fee to develop the specific feature for your website. To post your custom requests Endgame website got built in request feature section in administration section.

<a href="https://ibb.co/RSfPdYT"><img src="https://i.ibb.co/KGd7Sbx/request-new-feature.png" alt="request-new-feature" border="0"></a>

Authors

Taranpreet Singh Rayat <br /> Facebook <br />

License

This project is licensed under the GNU Public V3 License - see the LICENSE.md file for details


  TweekersNut TutorialExternal page  

Open in a separate window

  Files folder image Files  
File Role Description
Files folder imageAPP (2 files, 10 directories)
Files folder imagepublic (2 files, 5 directories)
Accessible without login Plain text file .htaccess Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  APP  
File Role Description
Files folder imageconfig (1 file)
Files folder imageControllers (7 files)
Files folder imageCore (8 files, 1 directory)
Files folder imagefunctions (1 file)
Files folder imageHelpers (6 files)
Files folder imageLogs (8 files)
Files folder imageModels (6 files, 1 directory)
Files folder imageSQLDump (1 file)
Files folder imageTraits (1 file)
Files folder imageviews (7 directories)
  Accessible without login Plain text file .htaccess Data Auxiliary data
  Accessible without login Plain text file bootstrap.php Example Example script

  Files folder image Files  /  APP  /  config  
File Role Description
  Accessible without login Plain text file Config.php Aux. Auxiliary script

  Files folder image Files  /  APP  /  Controllers  
File Role Description
  Plain text file Admin.php Class Class source
  Plain text file Advert.php Class Class source
  Plain text file Blog.php Class Class source
  Plain text file Contact.php Class Class source
  Plain text file Home.php Class Class source
  Plain text file Newsletter.php Class Class source
  Plain text file Users.php Class Class source

  Files folder image Files  /  APP  /  Core  
File Role Description
Files folder imagemailer (5 files)
  Plain text file Controller.php Class Class source
  Plain text file Cookies.php Class Class source
  Plain text file Core.php Class Class source
  Plain text file Database.php Class Class source
  Plain text file Mailer.php Class Class source
  Plain text file Redirect.php Class Class source
  Plain text file Session.php Class Class source
  Plain text file Validator.php Class Class source

  Files folder image Files  /  APP  /  Core  /  mailer  
File Role Description
  Plain text file Exception.php Class Class source
  Plain text file OAuth.php Class Class source
  Plain text file PHPMailer.php Class Class source
  Plain text file POP3.php Class Class source
  Plain text file SMTP.php Class Class source

  Files folder image Files  /  APP  /  functions  
File Role Description
  Accessible without login Plain text file functions.php Example Example script

  Files folder image Files  /  APP  /  Helpers  
File Role Description
  Plain text file DIR.php Class Class source
  Plain text file IP.php Class Class source
  Plain text file Logger.php Class Class source
  Plain text file Pagination.php Class Class source
  Plain text file Upload.php Class Class source
  Plain text file URL_Helper.php Class Class source

  Files folder image Files  /  APP  /  Logs  
File Role Description
  Accessible without login Plain text file 2019-05-30_Users_Controller.log Data Auxiliary data
  Accessible without login Plain text file 2019-06-02_Users_Controller.log Data Auxiliary data
  Accessible without login Plain text file 2019-06-03_Users_Controller.log Data Auxiliary data
  Accessible without login Plain text file 2019-06-04_Users_Controller.log Data Auxiliary data
  Accessible without login Plain text file 2019-06-07_APP_Controllers_Admin.log Data Auxiliary data
  Accessible without login Plain text file 2019-06-08_APP_Controllers_Admin.log Data Auxiliary data
  Accessible without login Plain text file 2019-06-09_APP_Controllers_Admin.log Data Auxiliary data
  Accessible without login Plain text file 2019-06-10_APP_Controllers_Admin.log Data Auxiliary data

  Files folder image Files  /  APP  /  Models  
File Role Description
Files folder imageBlog (4 files)
  Plain text file Adverts.php Class Class source
  Plain text file Contacts.php Class Class source
  Plain text file Newsletters.php Class Class source
  Plain text file Settings.php Class Class source
  Plain text file Sliders.php Class Class source
  Plain text file Users.php Class Class source

  Files folder image Files  /  APP  /  Models  /  Blog  
File Role Description
  Plain text file Category.php Class Class source
  Plain text file Genre.php Class Class source
  Plain text file Platform.php Class Class source
  Plain text file Posts.php Class Class source

  Files folder image Files  /  APP  /  SQLDump  
File Role Description
  Accessible without login Plain text file structure.sql Data Auxiliary data

  Files folder image Files  /  APP  /  Traits  
File Role Description
  Plain text file CRUD.php Class Class source

  Files folder image Files  /  APP  /  views  
File Role Description
Files folder imageadmin (12 directories)
Files folder imageblog (6 files, 1 directory)
Files folder imagecontact (1 file)
Files folder imageerror (1 file)
Files folder imagehome (1 file)
Files folder imageinc (2 files)
Files folder imageusers (4 files)

  Files folder image Files  /  APP  /  views  /  admin  
File Role Description
Files folder imageadvert (4 files)
Files folder imageblog (8 files)
Files folder imagebugreport (1 file)
Files folder imagecontact (2 files)
Files folder imagedashboard (1 file)
Files folder imageinc (3 files)
Files folder imagelogin (1 file)
Files folder imagenewsletter (2 files)
Files folder imagerequest_feature (1 file)
Files folder imagesettings (1 file)
Files folder imageslider (4 files)
Files folder imageusers (5 files)

  Files folder image Files  /  APP  /  views  /  admin  /  advert  
File Role Description
  Accessible without login Plain text file add.php Aux. Auxiliary script
  Accessible without login Plain text file filter.php Example Example script
  Accessible without login Plain text file index.php Example Example script
  Accessible without login Plain text file search.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  blog  
File Role Description
  Accessible without login Plain text file add.php Example Example script
  Accessible without login Plain text file category.php Example Example script
  Accessible without login Plain text file edit.php Example Example script
  Accessible without login Plain text file filter.php Example Example script
  Accessible without login Plain text file genre.php Example Example script
  Accessible without login Plain text file index.php Example Example script
  Accessible without login Plain text file platform.php Example Example script
  Accessible without login Plain text file search.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  bugreport  
File Role Description
  Accessible without login Plain text file index.php Aux. Auxiliary script

  Files folder image Files  /  APP  /  views  /  admin  /  contact  
File Role Description
  Accessible without login Plain text file index.php Example Example script
  Accessible without login Plain text file search.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  dashboard  
File Role Description
  Accessible without login Plain text file index.php Aux. Auxiliary script

  Files folder image Files  /  APP  /  views  /  admin  /  inc  
File Role Description
  Accessible without login Plain text file footer.php Example Example script
  Accessible without login Plain text file header.php Example Example script
  Accessible without login Plain text file sidebar.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  login  
File Role Description
  Accessible without login Plain text file index.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  newsletter  
File Role Description
  Accessible without login Plain text file send_news.php Example Example script
  Accessible without login Plain text file subscribers.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  request_feature  
File Role Description
  Accessible without login Plain text file index.php Aux. Auxiliary script

  Files folder image Files  /  APP  /  views  /  admin  /  settings  
File Role Description
  Accessible without login Plain text file index.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  slider  
File Role Description
  Accessible without login Plain text file add.php Aux. Auxiliary script
  Accessible without login Plain text file filter.php Example Example script
  Accessible without login Plain text file index.php Example Example script
  Accessible without login Plain text file search.php Example Example script

  Files folder image Files  /  APP  /  views  /  admin  /  users  
File Role Description
  Accessible without login Plain text file add.php Aux. Auxiliary script
  Accessible without login Plain text file edit_profile.php Example Example script
  Accessible without login Plain text file filter.php Example Example script
  Accessible without login Plain text file index.php Example Example script
  Accessible without login Plain text file search.php Example Example script

  Files folder image Files  /  APP  /  views  /  blog  
File Role Description
Files folder imagefilter (5 files)
  Accessible without login Plain text file blog.php Example Example script
  Accessible without login Plain text file games.php Example Example script
  Accessible without login Plain text file read.php Example Example script
  Accessible without login Plain text file reviews.php Example Example script
  Accessible without login Plain text file sidebar.php Example Example script
  Accessible without login Plain text file sidebar_blog.php Example Example script

  Files folder image Files  /  APP  /  views  /  blog  /  filter  
File Role Description
  Accessible without login Plain text file category.php Example Example script
  Accessible without login Plain text file genre.php Example Example script
  Accessible without login Plain text file letter.php Example Example script
  Accessible without login Plain text file platform.php Example Example script
  Accessible without login Plain text file search.php Example Example script

  Files folder image Files  /  APP  /  views  /  contact  
File Role Description
  Accessible without login Plain text file index.php Aux. Auxiliary script

  Files folder image Files  /  APP  /  views  /  error  
File Role Description
  Accessible without login Plain text file 403.php Aux. Auxiliary script

  Files folder image Files  /  APP  /  views  /  home  
File Role Description
  Accessible without login Plain text file index.php Example Example script

  Files folder image Files  /  APP  /  views  /  inc  
File Role Description
  Accessible without login Plain text file footer.php Example Example script
  Accessible without login Plain text file header.php Example Example script

  Files folder image Files  /  APP  /  views  /  users  
File Role Description
  Accessible without login Plain text file index.php Aux. Auxiliary script
  Accessible without login Plain text file invalid_request.php Example Example script
  Accessible without login Plain text file login.php Aux. Auxiliary script
  Accessible without login Plain text file new_password.php Example Example script

  Files folder image Files  /  public  
File Role Description
Files folder imageadmin (4 directories)
Files folder imagecss (7 files)
Files folder imageicon-fonts (1 file)
Files folder imageimg (11 files, 12 directories)
Files folder imagejs (7 files)
  Accessible without login Plain text file .htaccess Data Auxiliary data
  Accessible without login Plain text file index.php Aux. Auxiliary script

  Files folder image Files  /  public  /  admin  
File Role Description
Files folder imagecss (8 files)
Files folder imageimages (21 files)
Files folder imagejs (21 files)
Files folder imagewebfonts (3 files)

  Files folder image Files  /  public  /  admin  /  css  
File Role Description
  Accessible without login Plain text file bar.css Data Auxiliary data
  Accessible without login Plain text file bootstrap.css Data Auxiliary data
  Accessible without login Plain text file fontawesome-all.css Data Auxiliary data
  Accessible without login Plain text file pignose.calender.css Data Auxiliary data
  Accessible without login Plain text file simplyCountdown.css Data Auxiliary data
  Accessible without login Plain text file style.css Data Auxiliary data
  Accessible without login Plain text file style4.css Data Auxiliary data
  Accessible without login Plain text file widgets.css Data Auxiliary data

  Files folder image Files  /  public  /  admin  /  images  
File Role Description
  Accessible without login Image file 1.jpg Icon Icon image
  Accessible without login Image file 2.jpg Icon Icon image
  Accessible without login Image file 3.jpg Icon Icon image
  Accessible without login Image file 4.jpg Icon Icon image
  Accessible without login Image file 5.jpg Icon Icon image
  Accessible without login Image file b1.jpg Icon Icon image
  Accessible without login Image file ban1.jpg Data Auxiliary data
  Accessible without login Image file ban2.jpg Data Auxiliary data
  Accessible without login Image file ban3.jpg Data Auxiliary data
  Accessible without login Image file ban4.jpg Data Auxiliary data
  Accessible without login Image file ban5.jpg Data Auxiliary data
  Accessible without login Image file ban6.jpg Data Auxiliary data
  Accessible without login Image file c1.jpg Icon Icon image
  Accessible without login Image file c2.jpg Icon Icon image
  Accessible without login Image file c3.jpg Icon Icon image
  Accessible without login Image file c4.jpg Icon Icon image
  Accessible without login Image file clone.jpg Icon Icon image
  Accessible without login Image file menu1.jpg Icon Icon image
  Accessible without login Image file Preloader_2.gif Icon Icon image
  Accessible without login Image file profile.jpg Icon Icon image
  Accessible without login Image file timer.jpg Data Auxiliary data

  Files folder image Files  /  public  /  admin  /  js  
File Role Description
  Accessible without login Plain text file amcharts.js Data Auxiliary data
  Accessible without login Plain text file bootstrap.min.js Data Auxiliary data
  Accessible without login Plain text file chart1.js Data Auxiliary data
  Accessible without login Plain text file circle_bar.js Data Auxiliary data
  Accessible without login Plain text file core.js Data Auxiliary data
  Accessible without login Plain text file example.js Data Auxiliary data
  Accessible without login Plain text file index.js Data Auxiliary data
  Accessible without login Plain text file jquery-2.2.3.min.js Data Auxiliary data
  Accessible without login Plain text file jquery.charts.js Data Auxiliary data
  Accessible without login Plain text file kuma-gauge.jquery.js Data Auxiliary data
  Accessible without login Plain text file modernizr.js Data Auxiliary data
  Accessible without login Plain text file moment.min.js Data Auxiliary data
  Accessible without login Plain text file percentage-circles.js Data Auxiliary data
  Accessible without login Plain text file pignose.calender.js Data Auxiliary data
  Accessible without login Plain text file prettymaps.js Data Auxiliary data
  Accessible without login Plain text file raphael-min.js Data Auxiliary data
  Accessible without login Plain text file rumcaJS.js Data Auxiliary data
  Accessible without login Plain text file script.js Data Auxiliary data
  Accessible without login Plain text file SimpleChart.js Data Auxiliary data
  Accessible without login Plain text file simplyCountdown.js Data Auxiliary data
  Accessible without login Plain text file skycons.js Data Auxiliary data

  Files folder image Files  /  public  /  admin  /  webfonts  
File Role Description
  Accessible without login Plain text file fa-brands-400.svg Data Auxiliary data
  Accessible without login Plain text file fa-regular-400.svg Data Auxiliary data
  Accessible without login Plain text file fa-solid-900.svg Data Auxiliary data

  Files folder image Files  /  public  /  css  
File Role Description
  Accessible without login Plain text file animate.css Data Auxiliary data
  Accessible without login Plain text file bootstrap.min.css Data Auxiliary data
  Accessible without login Plain text file font-awesome.min.css Data Auxiliary data
  Accessible without login Plain text file magnific-popup.css Data Auxiliary data
  Accessible without login Plain text file owl.carousel.min.css Data Auxiliary data
  Accessible without login Plain text file slicknav.min.css Data Auxiliary data
  Accessible without login Plain text file style.css Data Auxiliary data

  Files folder image Files  /  public  /  icon-fonts  
File Role Description
  Accessible without login Plain text file fontawesome-webfont.svg Data Auxiliary data

  Files folder image Files  /  public  /  img  
File Role Description
Files folder imageavatar (7 files)
Files folder imagebanners (1 file)
Files folder imageblog-big (6 files)
Files folder imageblog-widget (4 files)
Files folder imageblog (3 files)
Files folder imagebugreports (1 file)
Files folder imagecomment-widget (4 files)
Files folder imagegames (10 files)
Files folder imageicons (7 files)
Files folder imagepage-top-bg (4 files)
Files folder imagereview (5 files)
Files folder imageslider (3 files)
  Accessible without login Image file add.jpg Data Auxiliary data
  Accessible without login Image file author.jpg Icon Icon image
  Accessible without login Image file blank_avatar.png Data Auxiliary data
  Accessible without login Image file favicon.ico Data Auxiliary data
  Accessible without login Image file featured-bg.jpg Data Auxiliary data
  Accessible without login Image file footer-left-pic.png Icon Icon image
  Accessible without login Image file footer-right-pic.png Icon Icon image
  Accessible without login Image file logo.png Icon Icon image
  Accessible without login Image file promo-bg.jpg Data Auxiliary data
  Accessible without login Image file slider-bg-1.jpg Data Auxiliary data
  Accessible without login Image file slider-bg-2.jpg Data Auxiliary data

  Files folder image Files  /  public  /  img  /  avatar  
File Role Description
  Accessible without login Image file about_img_2.png Icon Icon image
  Accessible without login Image file author.png Icon Icon image
  Accessible without login Image file get_my_pc_logo.png Icon Icon image
  Accessible without login Image file get_my_pc_logo_img.png Icon Icon image
  Accessible without login Image file team_1.png Icon Icon image
  Accessible without login Image file team_2.png Icon Icon image
  Accessible without login Image file team_3.png Icon Icon image

  Files folder image Files  /  public  /  img  /  banners  
File Role Description
  Accessible without login Image file get_my_pc_logo.png Icon Icon image

  Files folder image Files  /  public  /  img  /  blog-big  
File Role Description
  Accessible without login Image file 1.jpg Data Auxiliary data
  Accessible without login Image file 2.jpg Data Auxiliary data
  Accessible without login Image file 2019-01-18.png Data Auxiliary data
  Accessible without login Image file 2019-02-02.jpg Data Auxiliary data
  Accessible without login Image file 3.jpg Data Auxiliary data
  Accessible without login Image file mta_sa_server.jpeg Icon Icon image

  Files folder image Files  /  public  /  img  /  blog-widget  
File Role Description
  Accessible without login Image file 1.jpg Icon Icon image
  Accessible without login Image file 2.jpg Icon Icon image
  Accessible without login Image file 3.jpg Icon Icon image
  Accessible without login Image file 4.jpg Icon Icon image

  Files folder image Files  /  public  /  img  /  blog  
File Role Description
  Accessible without login Image file 1.jpg Data Auxiliary data
  Accessible without login Image file 2.jpg Data Auxiliary data
  Accessible without login Image file 3.jpg Data Auxiliary data

  Files folder image Files  /  public  /  img  /  bugreports  
File Role Description
  Accessible without login Image file get_my_pc_logo_img.png Icon Icon image

  Files folder image Files  /  public  /  img  /  comment-widget  
File Role Description
  Accessible without login Image file 1.jpg Icon Icon image
  Accessible without login Image file 2.jpg Icon Icon image
  Accessible without login Image file 3.jpg Icon Icon image
  Accessible without login Image file 4.jpg Icon Icon image

  Files folder image Files  /  public  /  img  /  games  
File Role Description
  Accessible without login Image file 1.jpg Icon Icon image
  Accessible without login Image file 2.jpg Icon Icon image
  Accessible without login Image file 3.jpg Icon Icon image
  Accessible without login Image file 4.jpg Icon Icon image
  Accessible without login Image file 5.jpg Icon Icon image
  Accessible without login Image file 6.jpg Icon Icon image
  Accessible without login Image file 7.jpg Icon Icon image
  Accessible without login Image file 8.jpg Icon Icon image
  Accessible without login Image file 9.jpg Icon Icon image
  Accessible without login Image file big.jpg Data Auxiliary data

  Files folder image Files  /  public  /  img  /  icons  
File Role Description
  Accessible without login Image file arrow-down-color.png Icon Icon image
  Accessible without login Image file arrow-down.png Icon Icon image
  Accessible without login Image file double-arrow.png Icon Icon image
  Accessible without login Image file location.png Icon Icon image
  Accessible without login Image file mail.png Icon Icon image
  Accessible without login Image file phone.png Icon Icon image
  Accessible without login Image file solid-right-arrow.png Icon Icon image

  Files folder image Files  /  public  /  img  /  page-top-bg  
File Role Description
  Accessible without login Image file 1.jpg Data Auxiliary data
  Accessible without login Image file 2.jpg Data Auxiliary data
  Accessible without login Image file 3.jpg Data Auxiliary data
  Accessible without login Image file 4.jpg Data Auxiliary data

  Files folder image Files  /  public  /  img  /  review  
File Role Description
  Accessible without login Image file 1.jpg Data Auxiliary data
  Accessible without login Image file 2.jpg Data Auxiliary data
  Accessible without login Image file 3.jpg Data Auxiliary data
  Accessible without login Image file 4.jpg Data Auxiliary data
  Accessible without login Image file 5.jpg Data Auxiliary data

  Files folder image Files  /  public  /  img  /  slider  
File Role Description
  Accessible without login Image file 2019-01-18.png Data Auxiliary data
  Accessible without login Image file mta_sa_server.jpeg Icon Icon image
  Accessible without login Image file single_blog_5.png Data Auxiliary data

  Files folder image Files  /  public  /  js  
File Role Description
  Accessible without login Plain text file bootstrap.min.js Data Auxiliary data
  Accessible without login Plain text file jquery-3.2.1.min.js Data Auxiliary data
  Accessible without login Plain text file jquery.magnific-popup.min.js Data Auxiliary data
  Accessible without login Plain text file jquery.slicknav.min.js Data Auxiliary data
  Accessible without login Plain text file jquery.sticky-sidebar.min.js Data Auxiliary data
  Accessible without login Plain text file main.js Data Auxiliary data
  Accessible without login Plain text file owl.carousel.min.js Data Auxiliary data

 Version Control Unique User Downloads Download Rankings  
 100%
Total:136
This week:1
All time:9,258
This week:560Up