/var/www/vhosts/nabawater/backend/views/configuration
Edit: /var/www/vhosts/nabawater/backend/views/configuration/app-config.php (11415B)
['save', 'redirect' => 'app-config'], 'id' => 'app-config'])->setModel($model);
$this->title = yii::t('backend', 'Update Application Configuration');
?>
= $this->title; ?> Current
Time:
= $form->field($model, $model::APP_NAME)->textInput(); ?>
= $form->field($model, $model::APP_DESCRIPTION)->textarea(); ?>
= $form->field($model, $model::META_KEYWORD)->textInput(); ?>
= $form->field($model, $model::META_DESCRIPTION)->textarea(); ?>
= $form->field($model, $model::APP_EMAIL)->textInput(); ?>
= $form->field($model, $model::APP_CONTACT_NO)->textInput(); ?>
= $form->field($model, $model::ANDROID_LINK)->textInput(); ?>
= $form->field($model, $model::IOS_LINK)->textInput(); ?>
= $form->field($model, $model::IOS_VERSION)->textInput()->hint('Example: 1.9'); ?>
= $form->field($model, $model::IOS_VERSION_STATUS)->dropDownList(['true' => 'Active', 'false' => 'Inactive']); ?>
= $form->field($model, $model::APP_CONTACT_ADDRESS)->textarea(); ?>
= $form->field($model, $model::MAP_KEY)->textInput(); ?>
= $form->field($model, $model::SITE_COPYRIGHT)->textInput(); ?>
= $form->field($model, $model::SITE_COPYRIGHT_AR)->textInput(); ?>
'offer Image', 'style' => 'width:100px;height:100px', 'class' => 'img-responsive img-thumbnail']);
}
?>
= $form->field($modelUploadForm, 'offer_image')->fileInput(['class' => 'form-control'])->label(Yii::t('backend', 'Offer Image')); ?>
= $form->field($model, $model::CURRENCY_FORMAT)->dropDownList(
Configuration::getMoneyFormatList()
)->icon('money')
->label(Yii::t('backend', 'Currency Format')) ?>
**/ ?>
= $form->field($model, $model::HOUR_FORMAT_12_24)->dropDownList(['24hr' => '24 Hour Format (e.g. 21:30)', '12hr' => '12 Hour Format (e.g. 9:30 PM)'])->icon('clock-o') ?>
= $form->field($model, $model::CURRENCY_DECIMAL_PLACE)->textInput(['type' => 'number']); ?>
= $form->field($model, $model::CURRENCY_SYMBOL_LEFT)->switchInput(); ?>
'App Logo Image', 'style' => 'width:100px;height:100px', 'class' => 'img-responsive img-thumbnail']
);
}
?>
'Fav Logo Image', 'style' => 'width:100px;height:100px', 'class' => 'img-responsive img-thumbnail']
);
}
?>
= $form->field($modelUploadForm, 'app_logo')->fileInput(['class' => 'form-control'])->label(Yii::t('backend', 'Site Logo')); ?>
= $form->field($modelUploadForm, 'fav_logo')->fileInput(['class' => 'form-control'])->label(Yii::t('backend', 'Fav Logo')); ?>
'App Placeholder Image', 'style' => 'width:100px;height:100px', 'class' => 'img-responsive img-thumbnail']);
}
?>
= $form->field($modelUploadForm, 'placeholder_image')->fileInput(['class' => 'form-control']); ?>
/**/ ?>
= $form->field($model, $model::TIME_ZONE)->dropDownList(\backend\models\TimeZone::getTimeZone())->icon('clock-o') ?>
= $form->field($model, $model::PREORDER_DATE_COUNT)->textInput(['type' => 'number']); ?>
*/ ?>
= $form->field($model, $model::APP_VAT)->textInput(); ?>
= $form->field($model, $model::EMPTY_BOTTLE)->textInput(); ?>
PAYMENT_TYPE = explode(",", $model->PAYMENT_TYPE); ?>
= $form->field($model, $model::PAYMENT_TYPE, ['options' => ['class' => 'form-group']])->dropDownList(Order::getPaymentOptionList(true), ['prompt' => 'Please select a restaurant', 'multiple' => true, 'class' => 'select2 multiple form-control']); ?>
= Html::submitButton(yii::t('backend', 'Save'), ['class' => 'btn btn-success']) ?>