File indexing completed on 2025-05-25 05:31:00
0001 <?php 0002 0003 /** 0004 * 0005 * ocs-apiserver 0006 * 0007 * Copyright 2016 by pling GmbH. 0008 * 0009 * This file is part of ocs-apiserver. 0010 * 0011 * This program is free software: you can redistribute it and/or modify 0012 * it under the terms of the GNU Affero General Public License as 0013 * published by the Free Software Foundation, either version 3 of the 0014 * License, or (at your option) any later version. 0015 * 0016 * This program is distributed in the hope that it will be useful, 0017 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0019 * GNU Affero General Public License for more details. 0020 * 0021 * You should have received a copy of the GNU Affero General Public License 0022 * along with this program. If not, see <http://www.gnu.org/licenses/>. 0023 * 0024 */ 0025 class Portal_IndexController extends Local_Controller_Action_Portal 0026 { 0027 0028 public function indexAction() 0029 { 0030 $p_username = $this->getParam('username',null); 0031 $this->view->username=$p_username; 0032 } 0033 0034 }