continued :)
[phpgitweb.git] / htdocs / pages / summary.class.php
1 <?php
2 /* summary.class.php - phpgitweb
3  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
4  * 
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License 
16  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
17  */
18
19 require_once('pages/shortlog.class.php');
20
21 class page_summary {
22     private $page, $phpgitweb;
23         
24     public function main($phpgitweb, $project) {
25                 $this->phpgitweb = $phpgitweb;
26                 if(!$project)
27                         return;
28                 $project['refs'] = $phpgitweb->get_project_loader()->getProjectRefs($project);
29                 
30                 $this->page = new ContentProvider('summary', 'main');
31                 
32                 $this->page->set('description', htmlentities($project['description']));
33                 $this->page->set('owner', htmlentities($project['owner']));
34                 
35                 $shortlog = new shortlog();
36                 $this->page->set('shortlog', $shortlog->generate_shortlog($project, null, 16, 0, null, false));
37                 
38                 return $this->page;
39         }
40         
41 }
42
43 ?>