PHP 8.2.32
Preview: AdminModel.php Size: 527 B
/home/ecopackply/www/app/Models/AdminModel.php

<?php

namespace App\Models;

use CodeIgniter\Model;

class AdminModel extends Model
{
    protected $table = 'tbl_admin';
    protected $primaryKey = 'id';

    protected $allowedFields = [
        'username',
        'password'
    ];


    public function getAdmin()
    {
        return $this->where('username', 'admin')->first();
    }


    public function changePassword($data)
    {
        return $this->where('username', 'admin')
            ->set($data)
            ->update();
    }
}

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
0 B lrw-r--r-- 2026-01-27 08:07:40
Edit Download
527 B lrw-r--r-- 2026-01-27 08:07:40
Edit Download
496 B lrw-r--r-- 2026-01-27 08:07:40
Edit Download
994 B lrw-r--r-- 2026-01-27 08:07:40
Edit Download
669 B lrw-r--r-- 2026-01-27 08:07:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).