rhosocial/yii2-organization

View on GitHub
web/organization/views/my/set-up-organization.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 *  _   __ __ _____ _____ ___  ____  _____
 * | | / // // ___//_  _//   ||  __||_   _|
 * | |/ // /(__  )  / / / /| || |     | |
 * |___//_//____/  /_/ /_/ |_||_|     |_|
 * @link https://vistart.me/
 * @copyright Copyright (c) 2016 - 2017 vistart
 * @license https://vistart.me/license/
 */

use rhosocial\organization\forms\SetUpForm;
use rhosocial\organization\widgets\SetUpFormWidget;
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model SetUpForm */
$parent = $model->getParent();
$this->title = Yii::t('organization', ($parent) ? 'Set Up New Department' : 'Set Up New Organization');
$this->params['breadcrumbs'][] = $this->title;
if ($parent) {
    echo "<p>" . Yii::t('organization', 'To set up a new department under "{name}":', ['name' => $parent->profile->name . " ({$parent->getID()})"]) . "</p>";
    echo "<p>(" . Yii::t('organization', 'There {remaining,plural,=0{is no places} =1{is only one place} other{are # places}} left.', ['remaining' => $parent->getRemainingSubordinatePlaces()]) . ")</p>";
} else {
    echo "<p>" . Yii::t('organization', 'Set up a new organization:') . "</p>";
}
echo SetUpFormWidget::widget(['model' => $model]);
?>
<h3><?= Yii::t('user', 'Other operations') ?></h3>
<hr>
<div class="row">
    <div class="col-md-12">
        <?= Html::a(Yii::t('organization', 'Back to Organization List'), [
            'index',
        ], ['class' => 'btn btn-primary']) ?>
    </div>
</div>