2017 © Pedro Peláez
 

project ci3-jumpstart

A very simple Cjdeigniter3-Jumpstart

image

pomerla/ci3-jumpstart

A very simple Cjdeigniter3-Jumpstart

  • Tuesday, April 24, 2018
  • by pomerla
  • Repository
  • 2 Watchers
  • 3 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 2 Open issues
  • 11 Versions
  • 0 % Grown

The README.md

Installation package Codeigniter, (*1)

, (*2)

Quick start

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

composer create-project pomerla/ci3-jumpstart

Or download and unzip the latest version of the archive to your hosting. Go to the directory with the unpacked engine. Installation will start automatically. Fill the connection settings to the database and set the administrator login and password. The install.txt file is required. This file will be automatically deleted after installation.
, (*5)

When you're done, you can delete this ( .gitignore, LICENSE , README.md, composer.json and dir vendor) with your repository.
, (*6)

Bootstrap and font-awesome are in the assets folders.
, (*7)

A simple CRUD library is included in the assembly.
Example of use, (*8)

function __construct()
    {
        parent::__construct();
        $this->load->library('common/crud_lib');
    }


public function index()
    {
        if (!$this->ion_auth->logged_in())
        {
            // redirect them to the login page
            redirect('auth/login', 'refresh');
        }
        else if (!$this->ion_auth->is_admin()) // remove this elseif if you want to enable this for non-admins
        {
            // redirect them to the home page because they must be an administrator to view this
            return show_error($this->lang->line('text_error_1'), '', $heading = $this->lang->line('text_error_h'));
        }
        else
        {
            $data['users'] = $this->crud_lib->select('users');
            //use select('users') where array('ip_address'=>'127.0.0.1') order_by 'id ASC' or 'DESC'
            //$data['users'] = $this->crud_lib->select('users',array('ip_address'=>'127.0.0.1'),'id DESC');

            //$dat = array(
            //  'first_name' => 'Admin',
            //    'last_name' => 'Members',
            //  'email' => 'admin@admin.com'
            //);

            //$this->crud_lib->insert('users',$dat);
            //$this->crud_lib->delete('users','6');
            //$this->crud_lib->update('users','2',$dat);

            $this->load->view('admin_message', $data);
        }

    }   

We recommend that you open this README in another tab as you perform the tasks below. You can (watch our video Soon) for a full demo of all the steps in this tutorial., (*9)


Codeigniter
Codeigniter-hmvc
CodeIgniter-develbar
CodeIgniter-Ion-Auth
, (*10)


The Versions

24/04 2018

dev-master

9999999-dev

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

24/04 2018

v1.1.4

1.1.4.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

24/04 2018

v1.1.3

1.1.3.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

23/04 2018

v1.1.2

1.1.2.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

22/04 2018

v1.1.1

1.1.1.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

18/04 2018

v1.1.0

1.1.0.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

16/02 2018

v1.0.4

1.0.4.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

16/02 2018

v1.0.3

1.0.3.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

16/02 2018

v1.0.2

1.0.2.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

16/02 2018

v1.0.1

1.0.1.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

The Requires

  • php >=5.0

 

16/02 2018

v1.0

1.0.0.0

A very simple Cjdeigniter3-Jumpstart

  Sources   Download

MIT

The Requires

  • php >=5.0