Download the PHP package ngekoding/codeigniter-datatables without Composer

On this page you can find all versions of the php package ngekoding/codeigniter-datatables. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package codeigniter-datatables

CodeIgniter DataTables

DataTables server-side for CodeIgniter, supported for both CodeIgniter 3 and CodeIgniter 4.

Note: This library only handle the server-side part, you will still need to set up the client-side components, such as jQuery, the DataTables library, and the necessary styles. Don't worry, we've included examples below to help you get started.

Requirements

No additional requirements are needed if you are already using CodeIgniter. Simply integrate this library into your existing project.

Installation

To install the library, use Composer. This command will handle the installation process for you:

Usage

Below is a basic example of how to use this library. Feel free to customize the client-side configuration, such as defining searchable columns, orderable columns, and other DataTables options.

The usage of this library is similar for both CodeIgniter 3 and CodeIgniter 4. The primary difference is in how you create the query builder. Below are examples for both versions.

CodeIgniter 3 Example

CodeIgniter 4 Example

The above examples will give you for ajax data source (arrays), so you need to make sure the table header you makes for the client side is match with the ajax response. We will talk about the objects data source below.

Client Side Examples

You must include the jQuery and DataTables library.

Objects Data Source

As was mentioned above, the default data source we get is an arrays. It is easy also to get the objects data source.

To get objects response, you just need to call asObject() method.

And then you can configure the client side with columns option to fit your data.

Some Others Settings

Some basic functionalities already available, here is the full settings you can doing to this library.

Use class for spesify the CodeIgniter version

Available Options

Complete Example

I already use this library to the existing project with completed CRUD operations, you can found it here.

Please look at these files: - application/composer.json - application/controllers/Post.php - application/models/M_post.php - application/views/template.php - application/views/posts/index-datatables.php - application/views/posts/index-datatables-array.php - application/helpers/api_helper.php - assets/js/custom.js

All versions of codeigniter-datatables with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6
symfony/http-foundation Version *
greenlion/php-sql-parser Version ^4.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ngekoding/codeigniter-datatables contains the following files

Loading the files please wait ....