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