Giter VIP home page Giter VIP logo

adminlte's Introduction

Introduction

This source using CodeIgniter v.3.1.11 + Modular (HMVC)
Admin Template using AdminLTE v3.0.2

Screenshoot

Backend Dashboard View Frontend Home View

Feature

  • Auth
  • Frontend
  • Dashboard
  • HMVC (Hiraki Module Views Controller)
  • RBAC (Role Base Access Controller)
  • Dynamic Menu
  • Ajax Validation
  • CRUD

CodeIgniter v.3.1.11

User Guide https://codeigniter.com/docs
Language File Translations https://github.com/bcit-ci/codeigniter3-translations
Community Forums http://forum.codeigniter.com/
Community Wiki https://github.com/bcit-ci/CodeIgniter/wiki
Community Slack Channel https://codeigniterchat.slack.com
Please see the license agreement https://github.com/bcit-ci/CodeIgniter/blob/develop/user_guide_src/source/license.rst.

AdminLTE v.3.0.2

Author: Colorlib
Website: AdminLTE.io http://adminlte.io
License: Open source - MIT http://opensource.org/licenses/MIT

Add Custom Modules

Make New Folder

    .
    ├── application                 # Default Folder
    ├── modules                     # HMVC Folder
    │   └── own               
    │       │── controllers
    │           └── Own.php
    │       │── models 
    │           └── Own_model.php              
    │       │── views
    │           │── Core (opsional)
    │           └── index.php               

Own.php

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Own extends MX_Controller {

  public function index() {

    //Something Code
    $data = [
        'title' => 'BLANK PAGE'
    ]

    //Custom JS Uncomment If You Want
    // $this->load->view('core/js');

    // Views
    $this->load->view('index', $data);
  }

    // ETC

}

Own_models.php

<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Own_model extends CI_Model
{
    function __construct()
    {
       //somecode
    }

    public function somecode()
    {
        //somecode
    }

   
}

index.php

<div class="content-header">
    <div class="container-fluid">
        <div class="row mb-2">
            <div class="col-sm-6">
                <!-- SYMLINK WITH CONTROLLER -->
                <h1 class="m-0 text-dark"><?= $title ?></h1>
            </div>
        </div>
    </div>
</div>
<section class="content">
    <div class="container-fluid">
        <div class="row">

            <!-- CONTENT -->
    </div>
</section>

adminlte's People

Contributors

oxygenfox avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.