parent nodes: ShimmieExts | TableSys
TableSys
A system for creating tables similar to the blog editor, group editor, blotter editor, permission editor, etc.
Proposed Methods:
TableSys would be part of the core, and could replace any of the other editors I've worked on. It will have a style similar to the config class, in which there will be the Add---Options to a bigger module. Let's draft up an example:
function Return_Table_HTML() {$html = "";
$userTable = new Table();
$userTable->addColumn("Username", "users.username", "TEXT");
$userTable->addColumn("Verified", "users.verified", "CHECK_YN");
$html .= $userTable->getHTML();
return $html;
}
Functions:
addColumn({description of item}