Download the PHP package nsbucky/gridview without Composer

On this page you can find all versions of the php package nsbucky/gridview. 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 gridview

GridView

Inspired by Yii's CGridView, this class strives to be a simple way to generate a table from an array, ie; a database result set. It works off of an array of arrays, or an array of objects. You decide which array columns or object properties to display. It does not rewrite queries or handle paging, that is up to you.

Features

Column Types

GridView offers a few different column types for calculations or displaying certain data types.

Required setup

In the require key of composer.json file add the following

"nsbucky/gridview": "dev-master"

Quick Example

$dataSource = array();
for($i=0; $i<10; $i++) {
    $dataSource[] = array(
                    'uniqid'=>uniqid(), 
                    'loop_iterator'=>$i.' times',
                    'date'=>date('Y-m-d'),
                    'total'=>rand(1,25)
                );              
}

$table = new GridView\Table($dataSource);
echo $table; // renders table based on results

$table = new GridView\Table($dataSource);
$table->addViewButton('view/{uniqid}')
    ->addEditButton('edit/me')
    ->addDeleteButton('delete/it');
echo $table; // will render table based on results with some buttons in last column

// in a list view
$table = new GridView\TableList($dataSource[0]);
echo $table; // will render a 2 column table with the column headers on left

Longer Example

$dataSource = array();
for($i=0; $i<10; $i++) {
    $dataSource[] = array(
                    'uniqid'=>uniqid(), 
                    'loop_iterator'=>$i.' times',
                    'date'=>date('Y-m-d'),
                    'total'=>rand(1,25)
                );              
}

$table = new GridView\Table($dataSource);
$table->addColumn(
    array('name'=>'uniqid') // defaults to GridView\Columns\Column
)
->addColumn(
    new GridView\Columns\LinkColumn(array(
        'url'=>'/link/to/date/{date}',
        'label'=>'Date Link'
    ))
)
->addColumn(
    new GridView\Columns\Column(array(
        'name'=>'total',
        'value'=>function($data, $index) {
            return $data['total']. ' dinosaurs were eaten today'
        }
    ))
)
->addColumn(
    new GridView\Columns\DateTimeColumn(array(
        'name'=>'date',
        'visible'=> (date('j') % 2)
    )) 
);

// or via array access
$table[] = array('name'=>'loop_iterator');

$table[] = new GridView\Columns\ButtonColumn(array(
        'buttons'=>array(
            new GridView\Buttons\ViewButton('/view'),
            new GridView\Buttons\EditButton('/edit'),
            new GridView\Buttons\DeleteButton('/delete'),
        )
    ));

echo (string) $table; // renders table

All versions of gridview with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
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 nsbucky/gridview contains the following files

Loading the files please wait ....