nufatID / nuPHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nuphp Framework MVC and NoMVC

Bootstrap 5 dan PHP untuk membuat website dengan cepat dan mudah

Designed with for developers

CARA INSTALL NUPHP

Install dengan COMPOSER Mulailah membangun website dengan mudah dan cepat!

Gunkan COMMPOSER to install NuPHP Framework.

composer create-project nufat/nuphp

Install dengan GIT Mulailah membangun website dengan mudah dan cepat!

Gunkan Git Clone git to install NuPHP Framework.

git clone https://github.com/nufatID/nuPHP.git

USING MVC

Usage Model -> model.php

<?php
class UserModel extends Database
{
    protected $table = 'pegawai';
}

Usage View -> view.php

<?php $this->extend("layout/layout.php") ?>


<div class="container-fluid mt-2">

    <a href="<?= getBaseUrl(); ?>/absensi/insert" class="btn btn-primary">tambah</a>
    <div class="row m-2">
        <div class="col-sm-4 mx-auto text-center">
            <?= $data->pagelist(); ?></div>

    </div>
    <div class="container-fluid">
        <?= $data->getTablePage(); ?>
    </div>

    <div class="row m-2">
        <div class="col-sm-4 mx-auto text-center">
            <?= $data->pagelist(); ?></div>

    </div>
</div>

Usage Controller -> Controler.php

<?php

class Absensi extends Controller
{

    public function index()
    {
        $model = $this->model('UserModel');
        $model->set_pagination(5);
        $model->jarak = 1;
        $adrow = [
            "Detail" => "<a href='" . getBaseUrl() . "/absensi/detail/{{id}}' class='btn btn-primary' id='{{id}}'>Detail</a>",
            "Edit" => "<a href='" . getBaseUrl() . "/absensi/edit/{{id}}' type='button' class='btn btn-warning'>Edit</a>",
            "Delete" => "<a href='" . getBaseUrl() . "/absensi/hapus/{{id}}' onclick='return confirm('Anda Yakin??');' type='button' class='btn btn-danger'>Delete</a>"
        ];
        $model->Add_row($adrow);
        $data['data'] = $model;
        View('absensi/index', $data);
    }
}

USING NON MVC

Usage Model -> model.php

<?php $this->extend('layout/layout.php'); ?>


<div class="page-wrapper">

    <!-- ******Header****** -->
    <header class="header text-center">
        <div class="container">
            <div class="branding">
                <h1 class="logo">
                    <span aria-hidden="true" class="fas fa-exclamation-circle" style="font-size: xxx-large;"></span>
                    <p>
                        <span class="text-highlight">Error </span>
                    </p>
                    <p><span class="text-bold">404</span>
                    </p>
                </h1>
            </div>
            <!--//branding-->
            <div class="tagline">
                <h1 class="logo text-warning">MAAF ...!! <br>HALAMAN TIDAK DITEMUKAN</h1>

            </div>



        </div>
        <!--//container-->
    </header>
    <!--//header-->

</div>

USING Auto Routes or Setting Kostum

Usage Routes.php

<?php

use Steampixel\Route;

define('BASEPATH', BASE_URL);

Route::add('/', function () {
    View('index');
});
//kostumisasi router silahkan tambahkan disini.
//mulai kostumisasi router
Route::add('/halaman', function () {
    View('home');
});


//end kostumisasi router
//Auto Router
Route::add('/(.*)/(.*)/(.*)/(.*)/(.*)', function ($folder, $file, $p1, $p2, $p3) {
    InitFolder($file, $folder, $p1, $p2, $p3);
}, ['get', 'post']);
Route::add('/(.*)/(.*)/(.*)/(.*)', function ($folder, $file, $p1, $p2) {
    InitFolder($file, $folder, $p1, $p2);
}, ['get', 'post']);
Route::add('/(.*)/(.*)/(.*)', function ($folder, $file, $param) {
    InitFolder($file, $folder, $param);
}, ['get', 'post']);
Route::add('/(.*)/(.*)', function ($folder, $file) {
    InitFolder($file, $folder);
}, ['get', 'post']);
Route::add('/(.*)', function ($file) {
    Init($file);
}, ['get', 'post']);

//404 Router
Route::pathNotFound(function ($path) {
    header('HTTP/1.0 404 Not Found');
    View('404');
});
Route::run(BASEPATH);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Kunjungi

https://webdev.nufat.id/

License

MIT

About


Languages

Language:PHP 86.3%Language:SCSS 10.6%Language:Blade 2.4%Language:JavaScript 0.6%