change to adminlte 2

This commit is contained in:
Ibnu Maksum
2022-10-15 23:18:24 +07:00
parent 98fe44d8aa
commit 9015d519c1
47 changed files with 1397 additions and 1103 deletions

View File

@ -106,6 +106,7 @@ switch ($action) {
case 'edit-profile-post':
$fullname = _post('fullname');
$address = _post('address');
$email = _post('email');
$phonenumber = _post('phonenumber');
run_hook('customer_edit_profile'); #HOOK
$msg = '';
@ -126,6 +127,7 @@ switch ($action) {
if($msg == ''){
$d->fullname = $fullname;
$d->address = $address;
$d->email = $email;
$d->phonenumber = $phonenumber;
$d->save();