Untitled
unknown
php
3 years ago
1.3 kB
3
Indexable
<?php /* * The contents of this file are subject to the Initial * Developer's Public License (the "License"); * you may not use this file except in compliance with the * License. You may obtain a copy of the License at * http://www.techraft.in/license.html * * Software distributed under the License is distributed on * an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either * express or implied. See the License for the specific * language governing rights and limitations under the License. * * The Original Code was created by TechRaft Solutions (contact@techraft.in) * * Copyright (c) 2018 - 2019 TechRaft Solutions * All Rights Reserved. * * This translation and editing was done by TechRaft Solutions (contact@techraft.in) * */ ?> <?php namespace multebox\modules\multeobjects\controllers; use Yii; use yii\helpers\Url; use yii\web\Controller; // Important - don't replace it with multebox/Controller use multebox\models\Registration; use multebox\models\search\MulteModel; class DefaultController extends Controller { public function actionIndex() { return $this->render('index'); } public function actionRegister() { return true; } }
Editor is loading...