clipbucket/upload/index.php

26 lines
670 B
PHP
Raw Permalink Normal View History

2013-10-07 12:17:06 +00:00
<?php
2016-02-26 07:09:29 +00:00
2016-03-21 11:25:28 +05:00
/**
* File: Index
* Description: This is home page of your wesbite. Anyone who lands on your website
* using home page URL will see this page first
* @author: Arslan Hassan
* @since: 2007, ClipBucket v2.0
* @website: clip-bucket.com
2017-01-10 12:49:44 +05:00
* Copyright (c) 2007-2017 Clip-Bucket.com. All rights reserved
* @modified : { January 10th, 2017 } { Saqib Razzaq } { Updated copyright date }
2016-03-21 11:25:28 +05:00
*/
2014-01-17 10:27:54 +00:00
2016-03-21 11:25:28 +05:00
define('THIS_PAGE','index');
require 'includes/config.inc.php';
$pages->page_redir();
if(is_installed('editorspick')) {
assign('editor_picks',get_ep_videos());
}
2013-10-07 12:17:06 +00:00
2016-03-21 11:25:28 +05:00
//Displaying The Template
template_files('index.html');
display_it();
2014-09-22 14:34:28 +00:00
2015-12-28 10:38:41 +00:00
?>