2013-10-07 12:17:06 +00:00
|
|
|
<?php
|
2016-02-26 07:09:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* File: Index
|
|
|
|
* Description: FIle used for dispaying home page
|
|
|
|
* @author: Arslan Hassan
|
|
|
|
* @since: 2007
|
|
|
|
* @website: clip-bucket.com
|
|
|
|
* Copyright (c) 2007-2016 Clip-Bucket.com. All rights reserved
|
2013-10-07 12:17:06 +00:00
|
|
|
*/
|
2014-01-17 10:27:54 +00:00
|
|
|
|
2016-02-26 07:09:29 +00:00
|
|
|
define('THIS_PAGE','index');
|
2013-10-07 12:17:06 +00:00
|
|
|
require 'includes/config.inc.php';
|
|
|
|
$pages->page_redir();
|
|
|
|
|
|
|
|
if(is_installed('editorspick'))
|
|
|
|
{
|
|
|
|
assign('editor_picks',get_ep_videos());
|
|
|
|
}
|
|
|
|
//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
|
|
|
?>
|