示例#1
0
 * For the full copyright and license information, please view the LICENSE.md
 * file that was distributed with this source code.
 */
use yii\helpers\Html;
use yii\grid\GridView;
use yii\widgets\Pjax;
use chd7well\configmanager\models\Parameter;
/**
 * @var yii\web\View $this
 * @var yii\data\ActiveDataProvider $dataProvider
 * @var chd7well\user\models\UserSearch $searchModel
 */
$this->title = Yii::t('configmanager', 'Manage Parameters');
$this->params['breadcrumbs'][] = $this->title;
//echo \Yii::$app->params['chd'] . '<br>';
echo Parameter::getParameterValue('chd');
?>
<h1><?php 
echo Html::encode($this->title);
?>
 <?php 
echo Html::a(Yii::t('configmanager', 'Create a parameter'), ['create'], ['class' => 'btn btn-success']);
?>
</h1>


<?php 
Pjax::begin();
?>

<?php