datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
529 B
19 lines
529 B
<?php
|
|
|
|
/**
|
|
* Interface RowData
|
|
*
|
|
* @property int $_id
|
|
*/
|
|
interface RowData {}
|
|
|
|
/**
|
|
* Interface DecoratedRow
|
|
*
|
|
* @property bool $_new - row is new in the changeset
|
|
* @property bool $_remove - marked to be removed
|
|
* @property mixed[] $_orig - original values before transformation, key by CID
|
|
* @property mixed[] $_loadvals - values after transformation, key by CID / for use by JS to detect changes since page load
|
|
* @property string[] $_changed - values that were changed
|
|
*/
|
|
interface DecoratedRow extends RowData {}
|
|
|