continued :)
[phpgitweb.git] / htdocs / pages / summary.class.php
diff --git a/htdocs/pages/summary.class.php b/htdocs/pages/summary.class.php
new file mode 100644 (file)
index 0000000..30838e1
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+/* summary.class.php - phpgitweb
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)
+ * 
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License 
+ * along with this program. If not, see <http://www.gnu.org/licenses/>. 
+ */
+
+require_once('pages/shortlog.class.php');
+
+class page_summary {
+    private $page, $phpgitweb;
+       
+    public function main($phpgitweb, $project) {
+               $this->phpgitweb = $phpgitweb;
+               if(!$project)
+                       return;
+               $project['refs'] = $phpgitweb->get_project_loader()->getProjectRefs($project);
+               
+               $this->page = new ContentProvider('summary', 'main');
+               
+               $this->page->set('description', htmlentities($project['description']));
+               $this->page->set('owner', htmlentities($project['owner']));
+               
+               $shortlog = new shortlog();
+               $this->page->set('shortlog', $shortlog->generate_shortlog($project, null, 16, 0, null, false));
+               
+               return $this->page;
+       }
+       
+}
+
+?>
\ No newline at end of file