2009-08-25 12:16:42 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-09-28 05:23:50 +00:00
|
|
|
* ALL LINKS ARE DEFINED HERE
|
|
|
|
* YOU CAN CHANGE THEM IF REQUIRED
|
2009-12-21 21:11:54 +00:00
|
|
|
* ARRAY( [name]=> Array([Non SEO Link], [SEO Link])) - Without BASEURL
|
2009-09-28 05:23:50 +00:00
|
|
|
*/
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-09-28 05:23:50 +00:00
|
|
|
$Cbucket->links = array
|
|
|
|
(
|
2009-12-29 09:09:35 +00:00
|
|
|
'channels' =>array('channels.php','channels'),
|
|
|
|
'compose_new' =>array('private_message.php?mode=new_msg','private_message.php?mode=new_msg'),
|
2010-02-26 12:48:03 +00:00
|
|
|
'contact_us' =>array('contact.php','contact'),
|
2009-12-29 09:09:35 +00:00
|
|
|
'create_group' =>array('create_group.php','create_group'),
|
|
|
|
'groups' =>array('groups.php','groups'),
|
|
|
|
'inbox' =>array('private_message.php?mode=inbox','private_message.php?mode=inbox'),
|
2009-12-29 11:28:48 +00:00
|
|
|
'login' =>array('signup.php','signup.php'),
|
|
|
|
'login_success' =>array('login_success.php','login_success.php'),
|
|
|
|
'logout' =>array('logout.php','logout.php'),
|
2010-01-12 14:14:29 +00:00
|
|
|
'logout_success'=>array('logout_success.php','logout_success.php'),
|
2009-12-29 09:09:35 +00:00
|
|
|
'my_account' =>array('myaccount.php','my_account'),
|
|
|
|
'my_videos' =>array('manage_videos.php','manage_videos.php'),
|
2010-01-21 13:49:49 +00:00
|
|
|
'my_favorites' =>array('manage_favorites.php','manage_videos.php?mode=favorites'),
|
2010-01-16 14:09:38 +00:00
|
|
|
'my_playlists' =>array('manage_playlists.php','manage_playlists.php'),
|
|
|
|
'my_contacts' =>array('manage_contacts.php','manage_contacts.php'),
|
2009-12-29 09:09:35 +00:00
|
|
|
'notifications' =>array('private_message.php?mode=notification','private_message.php?mode=notification'),
|
2010-01-19 06:45:35 +00:00
|
|
|
'rss' =>array("rss.php?mode","rss/"),
|
2009-12-29 09:09:35 +00:00
|
|
|
'search_result' =>array('search_result.php','search_result.php'),
|
|
|
|
'signup' =>array('signup.php','signup'),
|
|
|
|
'upload' =>array('upload.php','upload'),
|
2009-12-29 11:28:48 +00:00
|
|
|
'user_contacts' =>array('user_contacts.php?user=','user_contacts.php?user='),
|
|
|
|
'user_favorites'=>array('user_videos.php?mode=favorites&user=','user_videos.php?mode=favorites&user='),
|
|
|
|
'user_videos' =>array('user_videos.php?user=','user_videos.php?user='),
|
2009-12-29 09:09:35 +00:00
|
|
|
'videos' =>array('videos.php','videos'),
|
2009-12-21 21:11:54 +00:00
|
|
|
|
2009-09-28 05:23:50 +00:00
|
|
|
);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-11-30 19:46:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sortings
|
|
|
|
*/
|
|
|
|
function sorting_links()
|
|
|
|
{
|
|
|
|
$array = array
|
|
|
|
('most_recent' => 'Recent',
|
|
|
|
'most_viewed' => 'Viewed',
|
|
|
|
'featured' => 'Featured',
|
|
|
|
'top_rated' => 'Top Rated',
|
|
|
|
'most_commented' => 'Commented',
|
|
|
|
);
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
|
|
|
function time_links()
|
|
|
|
{
|
|
|
|
$array = array
|
|
|
|
('all_time' => 'All Time',
|
2009-12-04 21:03:27 +00:00
|
|
|
'today' => 'Today',
|
|
|
|
'yesterday' => 'Yesterday',
|
2009-11-30 19:46:45 +00:00
|
|
|
'this_week' => 'This Week',
|
|
|
|
'last_week' => 'Last Week',
|
|
|
|
'this_month' => 'This Month',
|
|
|
|
'last_month' => 'Last Month',
|
|
|
|
'this_year' => 'This Year',
|
|
|
|
'last_year' => 'Last Year',
|
|
|
|
);
|
|
|
|
return $array;
|
|
|
|
}
|
2009-08-25 12:16:42 +00:00
|
|
|
?>
|