nsbucky/gridview 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

nsbucky/gridview

Composer 安装命令:

composer require nsbucky/gridview

包简介

A simple way to generate a table from an array

关键字:

README 文档

README

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

  • Configurable headers
  • Generates sort urls
  • Uses Bootstrap table css by default
  • Provided column types enable quicker development time
  • Table implements ArrayAccess for easier building of tables.

Column Types

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

  • Column: default column type, supports visiblity and custom headers and filters
  • CalcColumn: Pass in a closure to perform a calculation
  • CheckBoxColumn: Generate a checkbox in a table cell
  • DateTimeColumn: Use php's DateTime object to format date strings
  • LinkColumn: generate anchor tags
  • TotalColumn: sum columns and puts a total in the table footer
  • ButtonColumn: useful for actions like view/edit/delete or whatever you would like. Comes with sample buttons

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

统计信息

  • 总下载量: 511
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2013-07-29

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固