Files
scattport-web/application/controllers/dashboard.php
2011-09-11 22:25:45 +02:00

83 lines
2.5 KiB
PHP

<?php
/*
* Copyright (c) 2011 Karsten Heiken <karsten@disposed.de>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
/**
* @author Karsten Heiken <karsten@disposed.de>
*/
class Dashboard extends CI_Controller {
/**
* Constructor.
*/
public function __construct() {
parent::__construct();
$this->load->model('job');
}
public function index() {
$tpl['action_buttons'] = array(
array(
'icon' => 'icons-big/blue-folder-new.png',
'text' => _('New project'),
'target' => site_url('projects/create'),
),
array(
'icon' => 'icons-big/blue-folder-open-document.png',
'text' => _('Recent results'),
'target' => site_url('jobs/results'),
),
);
$tpl['recent_buttons'] = array(
array(
'count' => 4,
'text' => _('Jobs finished'),
'title' => sprintf(_('%d jobs finished recently'), 3),
'target' => '#',
),
array(
'count' => 2,
'text' => _('Newly shared projects'),
'title' => sprintf(_('You were invited to join %d projects'), 2),
'target' => '#',
),
array(
'count' => 1,
'text' => _('Job running'),
'title' => sprintf(_('There is %d job currently running'), 1),
'target' => '#',
),
array(
'count' => 2,
'text' => _('Jobs pending'),
'title' => sprintf(_('There are %2 job currently pending'), 1),
'target' => '#',
),
);
$this->load->view('dashboard', $tpl);
}
}
/* End of file dashboard.php */
/* Location: ./application/controllers/dashboard.php */