/var/www/vhosts/nabawater/backend/views/admin-user
NameSizeModeActions
change-password.php15990644editdlrm
create.php4080644editdlrm
index.php41820644editdlrm
password-reset.php15540644editdlrm
profile-view.php48090644editdlrm
update-profile-form.php60640644editdlrm
update.php4060644editdlrm
_change-password.php15310644editdlrm
_forgot-password-mail.php107230644editdlrm
_form.php23510644editdlrm
_password-reset.php15800644editdlrm
_profile-view.php6780644editdlrm
_update-profile-form.php17070644editdlrm
Edit: /var/www/vhosts/nabawater/backend/views/admin-user/profile-view.php (4809B)
title = yii::t('backend','Profile Info'); ?>

title; ?>

'vendor_name', 'label' => Yii::t('backend', 'Vendor Name'), 'value' => function($model){ $venLang = VendorLang::find() ->where(['vendor_id' => $model->vendor_id,'language_code' => 'en' ]) ->one(); return $venLang->vendor_name ? $venLang->vendor_name : '-'; }, ], [ 'attribute' => 'vendor_email', 'label' => Yii::t('backend', 'Email Address') ], [ 'attribute' => 'vendor_contact_number', 'label' => Yii::t('backend', 'Registered Mobile Number') ], [ 'attribute' => 'vendor_address', 'label' => Yii::t('backend', 'Address') ] ]; break; case ACCESS_RULE_OUTLET: $attributes = [ [ 'attribute' => 'user_name', 'label' => Yii::t('backend', 'User Name') ], [ 'attribute' => 'first_name', 'label' => Yii::t('backend', 'First Name') ], [ 'attribute' => 'last_name', 'label' => Yii::t('backend', 'Last Name'), 'value' => function($model){ return $model->last_name ? $model->last_name : '-'; }, ], [ 'attribute' => 'contact_email', 'label' => Yii::t('backend', 'Branch Email') ] ]; break; default: $attributes = [ [ 'attribute' => 'user_name', 'label' => Yii::t('backend', 'User Name') ], [ 'attribute' => 'first_name', 'label' => Yii::t('backend', 'First Name') ], [ 'attribute' => 'last_name', 'label' => Yii::t('backend', 'Last Name'), 'value' => function($model){ return $model->last_name ? $model->last_name : '-'; }, ], [ 'attribute' => 'email_address', 'label' => Yii::t('backend', 'Email Address') ] ]; break; } ?> $model, 'attributes' => $attributes ]); ?>