Example #1
0
<?php

\humhub\modules\admin\widgets\AdminMenu::markAsActive(['/admin/setting']);
?>

<?php 
$this->beginContent('@admin/views/layouts/main.php');
?>
<div class="panel panel-default">
    <div class="panel-heading">
        <?php 
echo Yii::t('AdminModule.user', '<strong>Settings</strong> and Configuration');
?>
    </div>
    <?php 
echo \humhub\modules\admin\widgets\SettingsMenu::widget();
?>

    <?php 
echo $content;
?>
</div>
<?php 
$this->endContent();
Example #2
0
<?php

use yii\helpers\Url;
use yii\bootstrap\ActiveForm;
?>
<div class="container">
    <div class="row">
        <div class="col-md-3">
            <?php 
echo \humhub\modules\admin\widgets\AdminMenu::widget();
?>
        </div>
        <div class="col-md-9">
        	<div class="panel panel-default">
			    <div class="panel-heading"><strong>Strip</strong> Settings</div>
			    <div class="panel-body">
			    	 <div class="col-md-6">
			    	 	<?php 
$form = ActiveForm::begin(['action' => Url::to(['/stripe/default/addcredentials']), 'method' => 'post']);
?>
			           
			            	<div class="form-group">
			            		<label for="private_key" >Private Key</label>
								<input class="form-control" type="text" value="<?php 
echo $setting->private_key;
?>
" name="private_key" required />            		
			            	</div>
			            	<div class="form-group">
			            		<label for="public_key" >Public Key</label>
								<input  class="form-control" type="text" value="<?php 
<?php

use humhub\modules\user\widgets\AccountMenu;
use humhub\modules\admin\widgets\AdminMenu;
use humhub\widgets\TopMenu;
return ['id' => 'custom_pages', 'class' => 'humhub\\modules\\custom_pages\\Module', 'namespace' => 'humhub\\modules\\custom_pages', 'events' => [['class' => AdminMenu::className(), 'event' => AdminMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\custom_pages\\Events', 'onAdminMenuInit']], ['class' => TopMenu::className(), 'event' => TopMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\custom_pages\\Events', 'onTopMenuInit']], ['class' => AccountMenu::className(), 'event' => AccountMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\custom_pages\\Events', 'onAccountMenuInit']]]];
<?php

use humhub\modules\admin\widgets\AdminMenu;
return ['id' => 'updater', 'class' => 'humhub\\modules\\updater\\Module', 'namespace' => 'humhub\\modules\\updater', 'events' => [['class' => AdminMenu::className(), 'event' => AdminMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\updater\\Events', 'onAdminMenuInit']]]];
<?php

/**
 * Connected Communities Initiative
 * Copyright (C) 2016 Queensland University of Technology
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program 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 program.  If not, see <http://www.gnu.org/licenses/>.
 */
use humhub\modules\admin\widgets\AdminMenu;
use humhub\modules\user\widgets\ProfileMenu;
return ['id' => 'karma', 'class' => 'humhub\\modules\\karma\\Module', 'namespace' => 'humhub\\modules\\karma', 'events' => [['class' => AdminMenu::className(), 'event' => AdminMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\karma\\Events', 'onAdminMenuInit']], ['class' => ProfileMenu::className(), 'event' => ProfileMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\karma\\Events', 'onProfileMenuWidgetInit']]]];
<?php

namespace humhub\modules\humhubchat;

return ['id' => 'humhub-chat', 'class' => 'humhub\\modules\\humhubchat\\Module', 'namespace' => 'humhub\\modules\\humhubchat', 'events' => [['class' => \humhub\commands\CronController::className(), 'event' => \humhub\commands\CronController::EVENT_ON_DAILY_RUN, 'callback' => ['humhub\\modules\\humhubchat\\Events', 'onDailyCron']], ['class' => \humhub\modules\dashboard\widgets\Sidebar::className(), 'event' => \humhub\modules\dashboard\widgets\Sidebar::EVENT_INIT, 'callback' => array('humhub\\modules\\humhubchat\\Events', 'addChatFrame')], ['class' => \humhub\modules\space\widgets\Sidebar::className(), 'event' => \humhub\modules\space\widgets\Sidebar::EVENT_INIT, 'callback' => array('humhub\\modules\\humhubchat\\Events', 'addChatFrame')], ['class' => \humhub\modules\user\widgets\ProfileSidebar::className(), 'event' => \humhub\modules\user\widgets\ProfileSidebar::EVENT_INIT, 'callback' => array('humhub\\modules\\humhubchat\\Events', 'addChatFrame')], ['class' => \humhub\modules\admin\widgets\AdminMenu::className(), 'event' => \humhub\modules\admin\widgets\AdminMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\humhubchat\\Events', 'onAdminMenuInit']]]];
<?php

/**
 * Connected Communities Initiative
 * Copyright (C) 2016 Queensland University of Technology
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program 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 program.  If not, see <http://www.gnu.org/licenses/>.
 */
use humhub\modules\admin\widgets\AdminMenu;
use humhub\modules\user\models\forms\AccountRegister;
//use humhub\modules\user\models\forms\Registration;
return ['id' => 'email_whitelist', 'class' => 'humhub\\modules\\email_whitelist\\Module', 'namespace' => 'humhub\\modules\\email_whitelist', 'events' => [['class' => AdminMenu::className(), 'event' => AdminMenu::EVENT_INIT, 'callback' => ['humhub\\modules\\email_whitelist\\Events', 'onAdminMenuInit']], ['class' => AccountRegister::className(), 'event' => AccountRegister::EVENT_BEFORE_VALIDATE, 'callback' => ['humhub\\modules\\email_whitelist\\Events', 'onUniqueEMailValidator']]]];