Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khaliqgant/tablestrap
PHP classes to easily create tables for twitter bootstrap
https://github.com/khaliqgant/tablestrap
Last synced: 4 days ago
JSON representation
PHP classes to easily create tables for twitter bootstrap
- Host: GitHub
- URL: https://github.com/khaliqgant/tablestrap
- Owner: khaliqgant
- Created: 2012-06-11T17:42:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-27T23:34:46.000Z (over 12 years ago)
- Last Synced: 2024-11-10T03:42:29.245Z (2 months ago)
- Language: PHP
- Size: 133 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tablestrap
==========PHP classes to easily create tables for twitter bootstrap
An example table:
$table = new \tablestrap\table(array(
(array('id' => '1', 'domain' => 'www.google.com', 'name' => 'site')),
(array('id' => '2', 'domain' => 'www.googles.com', 'name' => 'site2')),
(array('id'=>'3', 'domain'=>'www.googless.com', 'name'=>'site3'))
)
);
An example panel:
$panel = new\tablestrap\panel(array('ID'=>'1', 'name'=>'word', 'status'=>'live')
);