remove old readme
[atutor.git] / mods / _standard / photos / shared_albums.php
1 <?php
2 /***********************************************************************/
3 /* ATutor                                                                                                                          */
4 /***********************************************************************/
5 /* Copyright (c) 2002-2010                                             */
6 /* Inclusive Design Institute                                          */
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 define('AT_INCLUDE_PATH', '../../../include/');
15 require (AT_INCLUDE_PATH.'vitals.inc.php');
16 include (AT_PA_INCLUDE.'lib.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 $album_count = sizeof($pa->getSharedAlbums(true));
23
24 //paginator settings
25 $page = intval($_GET['p']);
26 $last_page = ceil($album_count/AT_PA_ALBUMS_PER_PAGE);
27
28 if (!$page || $page < 0) {
29         $page = 1;
30 } elseif ($page > $last_page){
31         $page = $last_page;
32 }
33
34 $count  = (($page-1) * AT_PA_ALBUMS_PER_PAGE) + 1;
35 $offset = ($page-1) * AT_PA_ALBUMS_PER_PAGE;
36
37 $albums = $pa->getSharedAlbums(true, $offset);
38
39 include (AT_INCLUDE_PATH.'header.inc.php'); 
40 $savant->assign('albums', $albums);
41 $savant->assign('isSharedAlbum', true);
42 $savant->assign('page', $page);
43 $savant->assign('num_rows', $album_count);
44 $savant->display('photos/pa_index.tmpl.php');
45 include (AT_INCLUDE_PATH.'footer.inc.php'); 
46 ?>