コード例 #1
0
ファイル: view.php プロジェクト: iwansusanto/jurnalrumah
use backend\assets\UserAsset;
use backend\models\User;
/* @var $this yii\web\View */
/* @var $model backend\models\User */
UserAsset::register($this);
$this->title = ucwords($model->nama_depan);
$this->params['breadcrumbs'][] = ['label' => 'Users', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="user-view">

    <h1><?php 
echo Html::encode($this->title);
?>
</h1>

    <p>
        <?php 
echo Html::a('Update', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']);
?>
        <?php 
echo Html::a('Delete', ['delete', 'id' => $model->id], ['class' => 'btn btn-danger', 'data' => ['confirm' => 'Are you sure you want to delete this item?', 'method' => 'post']]);
?>
    </p>
    
    <?php 
echo DetailView::widget(['model' => $model, 'attributes' => ['id', ['label' => 'Profile', 'type' => 'row', 'format' => ['image', ['width' => '150', 'height' => '100', 'alt' => $model->nama_depan]], 'value' => !empty($model->pict) ? \Yii::$app->jurnalrumah->lihatImageDetail($model->pict, "", $kategori = "user") : NULL], 'nama_depan', 'nama_belakang', 'email:email', 'alamat', 'telp', ['label' => 'Jenis Kel', 'value' => User::getJenisKel($model->jenis_kelamin)], 'deskripsi:ntext', ['label' => 'Type', 'value' => User::getType($model->type_user)], ['label' => 'Newsletter', 'value' => $model->newsletter == 0 ? 'Ya' : 'Tidak'], ['label' => 'Status', 'value' => User::getStatus($model->status)], 'last_login', 'role', 'date_create', 'date_update']]);
?>

</div>
コード例 #2
0
ファイル: _form.php プロジェクト: iwansusanto/jurnalrumah
?>

    <?php 
echo $form->field($model, 'email')->textInput(['maxlength' => true, 'readonly' => !$model->isNewRecord ? true : false]);
?>

    <?php 
echo $form->field($model, 'alamat')->textInput(['maxlength' => true]);
?>

    <?php 
echo $form->field($model, 'telp')->textInput();
?>
    
    <?php 
echo $form->field($model, 'jenis_kelamin', ['template' => "{label}{input}\n{hint}\n{error}"])->dropDownList(User::getJenisKel(), ['prompt' => '-- Pilih --']);
?>

    <?php 
if ($model->isNewRecord) {
    ?>
        <?php 
    echo $form->field($model, 'password')->textInput();
    ?>
    <?php 
} else {
    ?>
        <?php 
    echo $form->field($model, 'oldpass')->textInput();
    ?>
        <?php