4e5cf9a10f3ca874e5f9adae1796cd6fce438cf4
[atutor.git] / mods / photos / create_album.php
1 <?php
2 /***********************************************************************/
3 /* ATutor                                                                                                                          */
4 /***********************************************************************/
5 /* Copyright (c) 2002-2009                                                                                         */
6 /* Adaptive Technology Resource Centre / Inclusive Design Institution  */
7 /* http://atutor.ca                                                                                                        */
8 /*                                                                                                                                         */
9 /* This program is free software. You can redistribute it and/or           */
10 /* modify it under the terms of the GNU General Public License             */
11 /* as published by the Free Software Foundation.                                           */
12 /***********************************************************************/
13 // $Id$
14 $_user_location = 'public';
15 define('AT_INCLUDE_PATH', '../../include/');
16 require (AT_INCLUDE_PATH.'vitals.inc.php');
17 include (AT_PA_INCLUDE.'classes/PhotoAlbum.class.php');
18 $_custom_css = $_base_path . AT_PA_BASENAME . 'module.css'; // use a custom stylesheet
19
20 //instantiate obj
21 $pa = new PhotoAlbum();
22
23 //handles submit
24 if(isset($_POST['submit'])){
25         //TODO: Check if the user have permission to add a course album
26         //              TA and Instructors can
27         if (isset($_POST['album_type'])){
28                 $album_type     = (intval($_POST['album_type'])==AT_PA_TYPE_MY_ALBUM)?AT_PA_TYPE_MY_ALBUM:AT_PA_TYPE_COURSE_ALBUM;
29         } else {
30                 //default is "my album" 'cause normally user can't create course album.
31                 $album_type     = AT_PA_TYPE_MY_ALBUM;
32         }
33
34         //private or shared album?
35         if (isset($_POST['album_permission'])){
36                 $album_permission = ($_POST['album_permission']==AT_PA_SHARED_ALBUM)?AT_PA_SHARED_ALBUM:AT_PA_PRIVATE_ALBUM;
37         } else {
38                 $album_permission = AT_PA_PRIVATE_ALBUM;
39         }
40
41         if (isset($_POST['album_name']) && $_POST['album_name']!=''){
42                 //TODO: photo_id = 0, should default to use the first one after multi-file uploader works
43                 $result = $pa->createAlbum($_POST['album_name'], $_POST['album_location'], $_POST['album_description'], $album_type, $album_permission, $_SESSION['member_id'], 0);
44
45                 if (!$result){
46                         //TODO: sql failure.
47                         $msg->addError('PA_CREATE_ALBUM_FAILED');
48                 }
49         } else {
50                 //album name can't be empty
51                 //TODO: user input failure
52                 $msg->addError('PA_EMTPY_ALBUM_NAME');
53         }
54         $msg->addFeedback('ACTION_COMPLETED_SUCCESSFULLY');
55
56         if($_POST['album_type'] == AT_PA_TYPE_COURSE_ALBUM){
57                 header('Location: course_albums.php');
58                 exit;
59         }else{
60                 header('Location: index.php');
61                 exit;
62         
63         }
64
65 } elseif (isset($_POST['cancel'])){
66         $msg->addFeedback('CANCELLED');
67         header('Location: '.AT_PA_BASE);
68         exit;
69 }
70
71 include (AT_INCLUDE_PATH.'header.inc.php'); 
72 $savant->display('pa_create_album.tmpl.php');
73 include (AT_INCLUDE_PATH.'footer.inc.php'); 
74 ?>