aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Controllers/LastController.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-06-08 18:21:25 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-06-08 18:21:25 +0000
commit3e63edf93ce77bae2891d1d0e5552768453e8404 (patch)
treeeeb6b129bffc84c645d1919e686d3674cc223467 /h-source/Application/Controllers/LastController.php
parent2f4d2fa530e8b42ffe01a4b58fd02c10a8f6174d (diff)
changed last controller to special controller
Diffstat (limited to 'h-source/Application/Controllers/LastController.php')
-rw-r--r--h-source/Application/Controllers/LastController.php122
1 files changed, 0 insertions, 122 deletions
diff --git a/h-source/Application/Controllers/LastController.php b/h-source/Application/Controllers/LastController.php
deleted file mode 100644
index 2050ea7..0000000
--- a/h-source/Application/Controllers/LastController.php
+++ /dev/null
@@ -1,122 +0,0 @@
-<?php
-
-// h-source, a web software to build a community of people that want to share their hardware information.
-// Copyright (C) 2010 Antonio Gallo (h-source-copyright.txt)
-//
-// This file is part of h-source
-//
-// h-source 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.
-//
-// h-source 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 h-source. If not, see <http://www.gnu.org/licenses/>.
-
-if (!defined('EG')) die('Direct access not allowed!');
-
-class LastController extends BaseController
-{
-
- public function __construct($model, $controller, $queryString)
- {
- parent::__construct($model, $controller, $queryString);
-
- $this->model('HistoryModel');
-
- $data['title'] = gtext('last modifications').' - '.Website::$generalName;
- $this->append($data);
-
- $this->setArgKeys(array('page:forceNat'=>1));
- }
-
- protected function last($lang = 'en',$action = 'modifications')
- {
- switch ($action)
- {
- case 'modifications':
- $data['title'] = 'last modifications - '.Website::$generalName;
-
- $whereClauseArray = array(
- 'gr' => 'registered',
- 'type' => 'hardware',
- );
-
- $viewFile = 'modifications';
-
- break;
- case 'modactions':
- $data['title'] = 'last moderations - '.Website::$generalName;
- $data['viewTitle'] = 'List of actions carried out by moderators';
- $data['user_status'] = 'MODERATOR';
-
- $whereClauseArray = array(
- 'gr' => 'moderator',
- );
-
- $viewFile = 'modactions';
-
- break;
- case 'adminactions':
- $data['title'] = 'last admin actions - '.Website::$generalName;
- $data['viewTitle'] = 'List of actions carried out by administrators';
- $data['user_status'] = 'ADMINISTRATOR';
-
- $whereClauseArray = array(
- 'gr' => 'admin',
- );
-
- $viewFile = 'modactions';
-
- break;
- }
-
- $this->helper('Pages','last/'.$this->action.'/'.$this->lang,'page');
-
- $this->m['HistoryModel']->clear()->select()->where($whereClauseArray)->orderBy('id_history desc');
-
- $recordNumber = $this->m['HistoryModel']->rowNumber();
- $page = $this->viewArgs['page'];
-
- $this->m['HistoryModel']->limit = $this->h['Pages']->getLimit($page,$recordNumber,30);
-
- $data['table'] = $this->m['HistoryModel']->send();
-
- $data['pageList'] = $this->h['Pages']->render($page-5,11);
-
- $this->append($data);
- $this->load($viewFile);
- $this->right();
- }
-
- public function modifications($lang = 'en')
- {
- $this->shift(1);
-
- $this->last($lang = 'en','modifications');
- }
-
- public function modactions($lang = 'en')
- {
- $this->shift(1);
-
- $this->s['registered']->check('moderator');
-
- $this->last($lang = 'en','modactions');
- }
-
- public function adminactions($lang = 'en')
- {
- $this->shift(1);
-
- $this->s['registered']->check('admin');
-
- $this->last($lang = 'en','adminactions');
- }
-
-} \ No newline at end of file