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 new ContentProvider('main', 'err400');
28                 $project['refs'] = $phpgitweb->get_project_loader()->getProjectRefs($project);
29                 $phpgitweb->append_header_nav("summary", null, true);
30                 $phpgitweb->append_title("summary");
31                 
32                 $this->page = new ContentProvider('summary', 'main');
33                 
34                 $this->page->set('description', htmlentities($project['description']));
35                 $this->page->set('owner', htmlentities($project['owner']));
36                 
37                 $giturls = GitConfig::$GIT_BASE_URL;
38                 $urlfield = "";
39                 foreach($giturls as $url) {
40                         if($urlfield != "")
41                                 $urlfield .= "<br \>";
42                         $urlfield .= $url.(substr($url, -1) == '/' ? '' : '/').$project['name'];
43                 }
44                 if($urlfield != "")
45                         $this->page->set('giturl', new ContentProvider('summary', 'giturl', array('git_link' => $urlfield)));
46                 else
47                         $this->page->set('giturl', '');
48                 
49                 $shortlog = new shortlog();
50                 $this->page->set('shortlog', $shortlog->generate_shortlog($project, null, 16, 0, null, false));
51                 $first_commit = $shortlog->get_first_commit();
52                 
53                 $this->page->set('last_change', gmdate('r', $first_commit['committer_time']));
54                 
55                 return $this->page;
56         }
57         
58 }
59
60 ?>