removed mods directory from the ATutor codebase
[atutor.git] / mods / social / sprofile.php
diff --git a/mods/social/sprofile.php b/mods/social/sprofile.php
deleted file mode 100644 (file)
index c9d1330..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-<?php
-/****************************************************************/
-/* ATutor                                                                                                              */
-/****************************************************************/
-/* Copyright (c) 2002-2009                                                                             */
-/* Adaptive Technology Resource Centre / University of Toronto  */
-/* http://atutor.ca                                                                                            */
-/*                                                              */
-/* This program is free software. You can redistribute it and/or*/
-/* modify it under the terms of the GNU General Public License  */
-/* as published by the Free Software Foundation.                               */
-/****************************************************************/
-// $Id$
-$_user_location        = 'public';
-
-define('AT_INCLUDE_PATH', '../../include/');
-require(AT_INCLUDE_PATH.'vitals.inc.php');
-require(AT_SOCIAL_INCLUDE.'constants.inc.php');
-require(AT_SOCIAL_INCLUDE.'friends.inc.php');
-require(AT_SOCIAL_INCLUDE.'classes/PrivacyControl/PrivacyController.class.php');
-require(AT_SOCIAL_INCLUDE.'classes/PrivacyControl/PrivacyObject.class.php');
-$_custom_css = $_base_path . AT_SOCIAL_BASENAME . 'module.css'; // use a custom stylesheet
-
-/*
-if (!$_SESSION['valid_user']) {
-       require(AT_INCLUDE_PATH.'header.inc.php');
-       $info = array('INVALID_USER', $_SESSION['course_id']);
-       $msg->printInfos($info);
-       require(AT_INCLUDE_PATH.'footer.inc.php');
-       exit;
-}
-*/
-
-// Get profile object
-$id = intval($_GET['id']);
-if ($id=='' || $id==0){
-       $id = $_SESSION['member_id'];
-}
-$_SESSION['last_visited_page'] = $_base_href.AT_SOCIAL_BASENAME.'sprofile.php?id='.$id;
-
-// Get member friends
-$friends = getFriends($id);
-
-// Get mutual friends
-if ($id!=$_SESSION['member_id']){
-       $my_friends = getFriends($_SESSION['member_id']);
-       $mutual_friends = array_intersect($friends, $my_friends);
-} else {
-       $mutual_friends = array();
-}
-
-// Get activities      
-$act_obj = new Activity();
-$activities = $act_obj->getActivities($id);
-
-// Member object
-$profile = new Member($id);
-
-// Tracks
-if ($profile->getID() != $_SESSION['member_id']){
-       $profile->addVisitor($_SESSION['member_id']);
-}
-
-// Privacy Controller
-$pc = new PrivacyController();
-$privacy_obj = $pc->getPrivacyObject($id);
-if ($privacy_obj==null){
-       //no such person
-       //add error and redirect back to is own page?
-//     header('Location: sprofile.php');
-//     exit;   
-} else {
-       $relationship = $pc->getRelationship($id);
-       $profile_prefs = $privacy_obj->getProfile();
-}
-
-// Delete activities
-if (isset($_GET['delete'])){
-       $id = intval($_GET['delete']);
-       if ($id > 0){
-               if ($act_obj->deleteActivity($id)){
-                       $msg->addFeedBack('ACTIVITY_DELETED');
-               } else {
-                       $msg->addError('ACTIVITY_DELETE_FAILED');
-               }
-               header('Location: '.url_rewrite(AT_SOCIAL_BASENAME.'sprofile.php', AT_PRETTY_URL_HEADER));
-               exit;
-       }
-}
-
-// Display
-include(AT_INCLUDE_PATH.'header.inc.php');
-$savant->display('pubmenu.tmpl.php');
-if (!empty($mutual_friends)){
-       $savant->assign('mutual_friends', $mutual_friends);
-}
-$savant->assign('scope', ($id!=$_SESSION['member_id']) ? 'viewer' : 'owner');
-$savant->assign('profile', $profile->getDetails());
-$savant->assign('education', $profile->getEducation());
-$savant->assign('position', $profile->getPosition());
-$savant->assign('websites', $profile->getWebsites());
-$savant->assign('friends', $friends);
-$savant->assign('activities', $activities);
-$savant->assign('prefs', $profile_prefs);
-$savant->assign('relationship', $relationship);
-$savant->display('sprofile.tmpl.php');
-include(AT_INCLUDE_PATH.'footer.inc.php');
-?>
\ No newline at end of file