tasks/controller/pagecontroller.php

73 lines
2.7 KiB
PHP
Raw Normal View History

2014-04-05 23:09:35 +00:00
<?php
/**
2015-07-19 12:05:29 +00:00
* ownCloud - Tasks
*
* @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
2014-04-05 23:09:35 +00:00
*
*/
2014-07-30 19:03:54 +00:00
namespace OCA\Tasks\Controller;
2014-04-05 23:09:35 +00:00
2014-08-17 20:35:34 +00:00
use \OCP\AppFramework\Controller;
use \OCP\AppFramework\Http\TemplateResponse;
2014-04-05 23:09:35 +00:00
/**
* Controller class for main page.
*/
class PageController extends Controller {
/**
* @NoAdminRequired
* @NoCSRFRequired
*/
public function index() {
if (defined('DEBUG') && DEBUG) {
2014-07-30 19:03:54 +00:00
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular');
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular-route');
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular-animate');
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular-sanitize');
2015-07-19 12:05:29 +00:00
\OCP\Util::addScript('tasks', 'vendor/angular-draganddrop/angular-drag-and-drop-lists');
\OCP\Util::addScript('tasks', 'vendor/angularui/ui-select/select');
2014-07-30 19:03:54 +00:00
\OCP\Util::addScript('tasks', 'vendor/bootstrap/ui-bootstrap-custom-tpls-0.10.0');
2014-04-05 23:09:35 +00:00
} else {
2014-07-30 19:03:54 +00:00
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular.min');
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular-route.min');
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular-animate.min');
\OCP\Util::addScript('tasks', 'vendor/angularjs/angular-sanitize.min');
2015-07-19 12:05:29 +00:00
\OCP\Util::addScript('tasks', 'vendor/angular-draganddrop/angular-drag-and-drop-lists.min');
\OCP\Util::addScript('tasks', 'vendor/angularui/ui-select/select.min');
2014-07-30 19:03:54 +00:00
\OCP\Util::addScript('tasks', 'vendor/bootstrap/ui-bootstrap-custom-tpls-0.10.0.min');
2014-04-05 23:09:35 +00:00
}
2014-07-30 19:03:54 +00:00
\OCP\Util::addScript('tasks', 'public/app');
\OCP\Util::addScript('tasks', 'vendor/timepicker/jquery.ui.timepicker');
\OCP\Util::addStyle('tasks', 'style');
\OCP\Util::addStyle('tasks', 'vendor/angularui/ui-select/select2');
2014-04-05 23:09:35 +00:00
$date = new \DateTimeZone(\OC_Calendar_App::getTimezone());
$day = new \DateTime('today', $date);
$day = $day->format('d');
2014-04-05 23:09:35 +00:00
// TODO: Make a HTMLTemplateResponse class
2014-07-30 19:03:54 +00:00
$response = new TemplateResponse('tasks', 'main');
$response->setParams(array(
'DOM' => $day
));
2014-04-05 23:09:35 +00:00
return $response;
}
2015-07-13 11:55:35 +00:00
}